@artel/artc 0.6.25222 → 0.6.25224
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 +12 -2
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +635 -532
- package/build/{chunk-ODWG5ZXF.js → chunk-24QZJOMF.js} +4477 -3240
- package/build/{chunk-MBMOAUK7.js → chunk-62KHK23H.js} +2 -2
- package/build/{chunk-UZK7JCND.js → chunk-Y6DODJCG.js} +1 -1
- package/build/types/analysis/AnalyzedTranslationPackage.d.ts +1 -0
- package/build/types/analysis/Analyzer.d.ts +17 -11
- package/build/types/analysis/DiagnosticCollector.d.ts +1 -1
- package/build/types/analysis/ImportedPackageNameTree.d.ts +1 -0
- package/build/types/analysis/LocalizationContext.d.ts +2 -2
- package/build/types/analysis/Lookup.d.ts +4 -4
- package/build/types/analysis/NamedTypeResolver.d.ts +5 -1
- package/build/types/analysis/NamedTypeSpecifierResolver.d.ts +4 -1
- package/build/types/analysis/PropertyAccessExpressionMeaning.d.ts +9 -3
- package/build/types/analysis/Scope.d.ts +21 -44
- package/build/types/analysis/SemanticContext.d.ts +14 -1
- package/build/types/analysis/SemanticContextBuilder.d.ts +1 -0
- package/build/types/analysis/StatementBlockScopeBuilder.d.ts +1 -0
- package/build/types/analysis/TagMeaning.d.ts +4 -1
- package/build/types/analysis/TypeMemberLookup.d.ts +39 -11
- package/build/types/analysis/TypeNarrower.d.ts +49 -14
- package/build/types/analysis/Utils.d.ts +12 -0
- package/build/types/analysis/control-flow/GraphBuilder.d.ts +43 -0
- package/build/types/analysis/{ControlFlowGraphVisualizer.d.ts → control-flow/GraphVisualizer.d.ts} +3 -3
- package/build/types/analysis/control-flow/NarrowableExpression.d.ts +5 -0
- package/build/types/analysis/control-flow/Nodes.d.ts +91 -0
- package/build/types/analysis/control-flow/index.d.ts +4 -0
- package/build/types/common/HelperPhrases.d.ts +3 -2
- package/build/types/diagnostic/DiagnosticCode.d.ts +5 -5
- package/build/types/emitter/Entities.d.ts +5 -4
- package/build/types/emitter/ir/Nodes.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/services/CompletionService.d.ts +0 -1
- package/build/types/services/DisplayService.d.ts +11 -8
- package/build/types/services/NodeSemanticInfo.d.ts +11 -6
- package/build/types/services/source-generation/EntityToSyntax.d.ts +1 -0
- package/build/types/tree/NodeKind.d.ts +146 -144
- package/build/types/tree/green/Nodes.d.ts +28 -10
- package/build/types/tree/green/SyntaxFactory.d.ts +1 -0
- package/build/types/tree/green/SyntaxToCode.d.ts +5 -1
- package/build/types/tree/red/Nodes.d.ts +33 -8
- package/build/types/ts-interop/TsInteropContext.d.ts +1 -0
- package/build/types/types/IntersectionType.d.ts +20 -0
- package/build/types/types/ParameterType.d.ts +6 -3
- package/build/types/types/Type.d.ts +2 -1
- package/build/types/types/TypeFactory.d.ts +4 -1
- package/build/types/types/TypeMembers.d.ts +5 -0
- package/build/types/types/index.d.ts +1 -0
- package/package.json +1 -1
- package/build/types/analysis/ControlFlowGraphBuilder.d.ts +0 -121
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-62KHK23H.js";
|
5
|
+
import "./chunk-Y6DODJCG.js";
|
6
6
|
import {
|
7
7
|
__async
|
8
|
-
} from "./chunk-
|
8
|
+
} from "./chunk-24QZJOMF.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-Y6DODJCG.js";
|
4
4
|
import {
|
5
5
|
AccessKind,
|
6
6
|
AccessedMethodValueParameter,
|
@@ -71,6 +71,8 @@ import {
|
|
71
71
|
EntityLocalizationHelper,
|
72
72
|
EntityNaming_anonymous,
|
73
73
|
EntityNaming_named,
|
74
|
+
EntityOrPackageNameTreeNode_entity,
|
75
|
+
EntityOrPackageNameTreeNode_node,
|
74
76
|
EnumerationVariableDeclarationEntity,
|
75
77
|
ErrorVariableDeclarationEntity,
|
76
78
|
ExpressionDenotesMethodCheckResult,
|
@@ -238,6 +240,7 @@ import {
|
|
238
240
|
TypeIndexerParameterDeclarationEntity,
|
239
241
|
TypeMemberEntityContainer,
|
240
242
|
TypeMemberLookup,
|
243
|
+
TypeMemberLookupOptions,
|
241
244
|
TypeMethodDeclarationEntity,
|
242
245
|
TypeOrTypeExtension,
|
243
246
|
TypeParameterConstraint,
|
@@ -245,6 +248,7 @@ import {
|
|
245
248
|
TypeVariableDeclarationEntity,
|
246
249
|
TypeVariableGetterDeclarationEntity,
|
247
250
|
TypeVariableSetterDeclarationEntity,
|
251
|
+
TypeVariableWithInitializerSemanticContext,
|
248
252
|
UnfinishedIntrinsicAnonymousMethodTypeEntity,
|
249
253
|
UnfinishedIntrinsicAnonymousStructuredTypeEntity,
|
250
254
|
UnfinishedIntrinsicPackageMethodTypeEntity,
|
@@ -296,6 +300,7 @@ import {
|
|
296
300
|
isTypeEntity,
|
297
301
|
isTypeEntityWithMembers,
|
298
302
|
isTypeMemberEntity,
|
303
|
+
isTypeWithMembersOrExtensionEntity,
|
299
304
|
isUnaryOperator,
|
300
305
|
javaScriptIdentifierRegExp,
|
301
306
|
kebabCaseToCamelCase,
|
@@ -329,7 +334,7 @@ import {
|
|
329
334
|
withoutQuotes,
|
330
335
|
withoutTemplateQuotes,
|
331
336
|
yieldExecution
|
332
|
-
} from "../chunk-
|
337
|
+
} from "../chunk-24QZJOMF.js";
|
333
338
|
export {
|
334
339
|
AccessKind,
|
335
340
|
AccessedMethodValueParameter,
|
@@ -401,6 +406,8 @@ export {
|
|
401
406
|
EntityLocalizationHelper,
|
402
407
|
EntityNaming_anonymous,
|
403
408
|
EntityNaming_named,
|
409
|
+
EntityOrPackageNameTreeNode_entity,
|
410
|
+
EntityOrPackageNameTreeNode_node,
|
404
411
|
EnumerationVariableDeclarationEntity,
|
405
412
|
ErrorVariableDeclarationEntity,
|
406
413
|
ExpressionDenotesMethodCheckResult,
|
@@ -564,6 +571,7 @@ export {
|
|
564
571
|
TypeIndexerParameterDeclarationEntity,
|
565
572
|
TypeMemberEntityContainer,
|
566
573
|
TypeMemberLookup,
|
574
|
+
TypeMemberLookupOptions,
|
567
575
|
TypeMethodDeclarationEntity,
|
568
576
|
TypeOrTypeExtension,
|
569
577
|
TypeParameterConstraint,
|
@@ -571,6 +579,7 @@ export {
|
|
571
579
|
TypeVariableDeclarationEntity,
|
572
580
|
TypeVariableGetterDeclarationEntity,
|
573
581
|
TypeVariableSetterDeclarationEntity,
|
582
|
+
TypeVariableWithInitializerSemanticContext,
|
574
583
|
UnfinishedIntrinsicAnonymousMethodTypeEntity,
|
575
584
|
UnfinishedIntrinsicAnonymousStructuredTypeEntity,
|
576
585
|
UnfinishedIntrinsicPackageMethodTypeEntity,
|
@@ -625,6 +634,7 @@ export {
|
|
625
634
|
isTypeEntity,
|
626
635
|
isTypeEntityWithMembers,
|
627
636
|
isTypeMemberEntity,
|
637
|
+
isTypeWithMembersOrExtensionEntity,
|
628
638
|
isUnaryOperator,
|
629
639
|
javaScriptIdentifierRegExp,
|
630
640
|
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-62KHK23H.js";
|
10
|
+
import "../chunk-Y6DODJCG.js";
|
11
|
+
import "../chunk-24QZJOMF.js";
|
12
12
|
export {
|
13
13
|
CommandLineCompiler,
|
14
14
|
FileSystemUri,
|