@artel/artc 0.6.25227 → 0.6.25228
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/Cli.js +3 -3
- package/build/api/Api.js +4 -2
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +246 -232
- package/build/{chunk-NOECPQMV.js → chunk-5GSDYTF6.js} +2178 -1668
- package/build/{chunk-74TFH7TE.js → chunk-F5OW64UA.js} +3 -3
- package/build/{chunk-VD6OPILI.js → chunk-FHJJX7JY.js} +3 -3
- package/build/types/analysis/Analyzer.d.ts +9 -2
- package/build/types/analysis/DeclarationsUsageCounter.d.ts +8 -3
- package/build/types/analysis/DiagnosticCollector.d.ts +9 -2
- package/build/types/analysis/NodeTypeUtils.d.ts +2 -2
- package/build/types/analysis/PackageMemberNameConflictsValidator.d.ts +24 -0
- package/build/types/analysis/SourceFileMembers.d.ts +6 -1
- package/build/types/analysis/SourcePackageMembersCreator.d.ts +2 -1
- package/build/types/analysis/TypeInferrer.d.ts +2 -0
- package/build/types/analysis/control-flow/GraphBuilder.d.ts +5 -2
- package/build/types/analysis/semantic-context/SemanticContext.d.ts +1 -1
- package/build/types/analysis/semantic-context/SemanticContextValidatingNameConflicts.d.ts +1 -80
- package/build/types/analysis/semantic-context/SourceFileSemanticContext.d.ts +1 -1
- package/build/types/analysis/semantic-context/SubprogramBodyAndParametersSemanticContext.d.ts +89 -0
- package/build/types/analysis/semantic-context/SubprogramSemanticContext.d.ts +0 -8
- package/build/types/analysis/semantic-context/TypeSemanticContext.d.ts +9 -24
- package/build/types/analysis/semantic-context/index.d.ts +1 -0
- package/build/types/common/Cached.d.ts +1 -0
- package/build/types/diagnostic/DiagnosticCode.d.ts +87 -72
- package/build/types/emitter/IrBuilder.d.ts +0 -1
- package/build/types/entities/VariableEntity.d.ts +13 -0
- package/build/types/entities/index.d.ts +4 -0
- package/build/types/tree/NodeKind.d.ts +81 -82
- package/build/types/tree/green/Nodes.d.ts +2 -20
- package/build/types/tree/red/Nodes.d.ts +3 -18
- package/package.json +1 -1
package/build/Cli.js
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
#!/usr/bin/env node
|
2
2
|
import {
|
3
3
|
CommandLineCompiler
|
4
|
-
} from "./chunk-
|
5
|
-
import "./chunk-
|
4
|
+
} from "./chunk-FHJJX7JY.js";
|
5
|
+
import "./chunk-F5OW64UA.js";
|
6
6
|
import {
|
7
7
|
__async
|
8
|
-
} from "./chunk-
|
8
|
+
} from "./chunk-5GSDYTF6.js";
|
9
9
|
|
10
10
|
// source/Cli.ts
|
11
11
|
function main() {
|
package/build/api/Api.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import {
|
2
2
|
Compiler
|
3
|
-
} from "../chunk-
|
3
|
+
} from "../chunk-F5OW64UA.js";
|
4
4
|
import {
|
5
5
|
AccessKind,
|
6
6
|
AccessedFunctionValueParameter,
|
@@ -221,6 +221,7 @@ import {
|
|
221
221
|
TsInteropInputs,
|
222
222
|
TypeAssignabilityFlags,
|
223
223
|
TypeEntityKind,
|
224
|
+
TypeMemberEntity,
|
224
225
|
TypeMemberEntityContainer,
|
225
226
|
TypeMemberLookup,
|
226
227
|
TypeMemberLookupOptions,
|
@@ -312,7 +313,7 @@ import {
|
|
312
313
|
withoutQuotes,
|
313
314
|
withoutTemplateQuotes,
|
314
315
|
yieldExecution
|
315
|
-
} from "../chunk-
|
316
|
+
} from "../chunk-5GSDYTF6.js";
|
316
317
|
export {
|
317
318
|
AccessKind,
|
318
319
|
AccessedFunctionValueParameter,
|
@@ -530,6 +531,7 @@ export {
|
|
530
531
|
TsInteropInputs,
|
531
532
|
TypeAssignabilityFlags,
|
532
533
|
TypeEntityKind,
|
534
|
+
TypeMemberEntity,
|
533
535
|
TypeMemberEntityContainer,
|
534
536
|
TypeMemberLookup,
|
535
537
|
TypeMemberLookupOptions,
|
package/build/api/ApiNodeJS.js
CHANGED
@@ -6,9 +6,9 @@ import {
|
|
6
6
|
PhysicalFileSystem,
|
7
7
|
PhysicalTypeScriptLibrariesProvider,
|
8
8
|
PrintingDiagnosticAcceptor
|
9
|
-
} from "../chunk-
|
10
|
-
import "../chunk-
|
11
|
-
import "../chunk-
|
9
|
+
} from "../chunk-FHJJX7JY.js";
|
10
|
+
import "../chunk-F5OW64UA.js";
|
11
|
+
import "../chunk-5GSDYTF6.js";
|
12
12
|
export {
|
13
13
|
CommandLineCompiler,
|
14
14
|
FileSystemUri,
|