@artel/artc 0.6.25221 → 0.6.25223
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 +10 -2
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +281 -261
- package/build/{chunk-XMV7LOUY.js → chunk-AX3LQ2CF.js} +2 -2
- package/build/{chunk-X7TMUZ4C.js → chunk-DZNNWICP.js} +2738 -1794
- package/build/{chunk-5F65ZJE3.js → chunk-LG4Z4SWO.js} +1 -1
- package/build/types/analysis/Analyzer.d.ts +13 -10
- package/build/types/analysis/ControlFlowGraphBuilder.d.ts +12 -4
- package/build/types/analysis/LocalizationContext.d.ts +2 -2
- package/build/types/analysis/Lookup.d.ts +4 -4
- package/build/types/analysis/NodeTypeUtils.d.ts +1 -6
- package/build/types/analysis/PropertyAccessExpressionMeaning.d.ts +1 -1
- package/build/types/analysis/Scope.d.ts +21 -44
- package/build/types/analysis/SemanticContext.d.ts +21 -1
- package/build/types/analysis/SemanticContextBuilder.d.ts +3 -0
- package/build/types/analysis/StatementBlockScopeBuilder.d.ts +20 -17
- package/build/types/analysis/TypeMemberLookup.d.ts +39 -11
- package/build/types/analysis/TypeNarrower.d.ts +48 -8
- package/build/types/emitter/IrBuilder.d.ts +3 -1
- package/build/types/emitter/IrToJs.d.ts +1 -0
- package/build/types/emitter/Transformer.d.ts +2 -0
- package/build/types/emitter/ir/Nodes.d.ts +86 -78
- package/build/types/emitter/ir/types.d.ts +2 -2
- package/build/types/entities/index.d.ts +3 -0
- package/build/types/parser/Scanner.d.ts +1 -2
- package/build/types/tree/KeywordKind.d.ts +41 -40
- package/build/types/tree/NodeKind.d.ts +63 -61
- package/build/types/tree/green/Nodes.d.ts +83 -56
- package/build/types/tree/green/SyntaxFactory.d.ts +12 -10
- package/build/types/tree/green/SyntaxToCode.d.ts +1 -0
- package/build/types/tree/red/Nodes.d.ts +69 -41
- package/build/types/types/TypeMembers.d.ts +5 -0
- 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-AX3LQ2CF.js";
|
5
|
+
import "./chunk-LG4Z4SWO.js";
|
6
6
|
import {
|
7
7
|
__async
|
8
|
-
} from "./chunk-
|
8
|
+
} from "./chunk-DZNNWICP.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-LG4Z4SWO.js";
|
4
4
|
import {
|
5
5
|
AccessKind,
|
6
6
|
AccessedMethodValueParameter,
|
@@ -79,6 +79,7 @@ import {
|
|
79
79
|
ForStatementSemanticContext,
|
80
80
|
FoundAnonymousDeclaration,
|
81
81
|
FoundNamedDeclaration,
|
82
|
+
FunctionBlockSemanticContext,
|
82
83
|
GeneratedSourceFileScheme,
|
83
84
|
GenericCancellationToken,
|
84
85
|
GetMultipleTranslationTargetsResult,
|
@@ -237,6 +238,7 @@ import {
|
|
237
238
|
TypeIndexerParameterDeclarationEntity,
|
238
239
|
TypeMemberEntityContainer,
|
239
240
|
TypeMemberLookup,
|
241
|
+
TypeMemberLookupOptions,
|
240
242
|
TypeMethodDeclarationEntity,
|
241
243
|
TypeOrTypeExtension,
|
242
244
|
TypeParameterConstraint,
|
@@ -244,6 +246,7 @@ import {
|
|
244
246
|
TypeVariableDeclarationEntity,
|
245
247
|
TypeVariableGetterDeclarationEntity,
|
246
248
|
TypeVariableSetterDeclarationEntity,
|
249
|
+
TypeVariableWithInitializerSemanticContext,
|
247
250
|
UnfinishedIntrinsicAnonymousMethodTypeEntity,
|
248
251
|
UnfinishedIntrinsicAnonymousStructuredTypeEntity,
|
249
252
|
UnfinishedIntrinsicPackageMethodTypeEntity,
|
@@ -295,6 +298,7 @@ import {
|
|
295
298
|
isTypeEntity,
|
296
299
|
isTypeEntityWithMembers,
|
297
300
|
isTypeMemberEntity,
|
301
|
+
isTypeWithMembersOrExtensionEntity,
|
298
302
|
isUnaryOperator,
|
299
303
|
javaScriptIdentifierRegExp,
|
300
304
|
kebabCaseToCamelCase,
|
@@ -328,7 +332,7 @@ import {
|
|
328
332
|
withoutQuotes,
|
329
333
|
withoutTemplateQuotes,
|
330
334
|
yieldExecution
|
331
|
-
} from "../chunk-
|
335
|
+
} from "../chunk-DZNNWICP.js";
|
332
336
|
export {
|
333
337
|
AccessKind,
|
334
338
|
AccessedMethodValueParameter,
|
@@ -407,6 +411,7 @@ export {
|
|
407
411
|
ForStatementSemanticContext,
|
408
412
|
FoundAnonymousDeclaration,
|
409
413
|
FoundNamedDeclaration,
|
414
|
+
FunctionBlockSemanticContext,
|
410
415
|
GeneratedSourceFileScheme,
|
411
416
|
GenericCancellationToken,
|
412
417
|
GetMultipleTranslationTargetsResult,
|
@@ -562,6 +567,7 @@ export {
|
|
562
567
|
TypeIndexerParameterDeclarationEntity,
|
563
568
|
TypeMemberEntityContainer,
|
564
569
|
TypeMemberLookup,
|
570
|
+
TypeMemberLookupOptions,
|
565
571
|
TypeMethodDeclarationEntity,
|
566
572
|
TypeOrTypeExtension,
|
567
573
|
TypeParameterConstraint,
|
@@ -569,6 +575,7 @@ export {
|
|
569
575
|
TypeVariableDeclarationEntity,
|
570
576
|
TypeVariableGetterDeclarationEntity,
|
571
577
|
TypeVariableSetterDeclarationEntity,
|
578
|
+
TypeVariableWithInitializerSemanticContext,
|
572
579
|
UnfinishedIntrinsicAnonymousMethodTypeEntity,
|
573
580
|
UnfinishedIntrinsicAnonymousStructuredTypeEntity,
|
574
581
|
UnfinishedIntrinsicPackageMethodTypeEntity,
|
@@ -623,6 +630,7 @@ export {
|
|
623
630
|
isTypeEntity,
|
624
631
|
isTypeEntityWithMembers,
|
625
632
|
isTypeMemberEntity,
|
633
|
+
isTypeWithMembersOrExtensionEntity,
|
626
634
|
isUnaryOperator,
|
627
635
|
javaScriptIdentifierRegExp,
|
628
636
|
kebabCaseToCamelCase,
|
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-AX3LQ2CF.js";
|
10
|
+
import "../chunk-LG4Z4SWO.js";
|
11
|
+
import "../chunk-DZNNWICP.js";
|
12
12
|
export {
|
13
13
|
CommandLineCompiler,
|
14
14
|
FileSystemUri,
|