@artel/artc 0.6.25220 → 0.6.25222
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 +6 -4
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +394 -284
- package/build/{chunk-ASXPPFGP.js → chunk-MBMOAUK7.js} +3 -3
- package/build/{chunk-RHY36EE7.js → chunk-ODWG5ZXF.js} +4060 -2261
- package/build/{chunk-AUDD2JDS.js → chunk-UZK7JCND.js} +3 -3
- package/build/types/analysis/Analyzer.d.ts +53 -6
- package/build/types/analysis/ControlFlowGraphBuilder.d.ts +121 -0
- package/build/types/analysis/ControlFlowGraphVisualizer.d.ts +12 -0
- package/build/types/analysis/DiagnosticCollector.d.ts +3 -0
- package/build/types/analysis/NodeTypeUtils.d.ts +4 -1
- package/build/types/analysis/SemanticContext.d.ts +7 -0
- package/build/types/analysis/SemanticContextBuilder.d.ts +2 -0
- package/build/types/analysis/StatementBlockScopeBuilder.d.ts +19 -17
- package/build/types/analysis/TypeNarrower.d.ts +62 -0
- package/build/types/common/Range.d.ts +1 -0
- package/build/types/diagnostic/DiagnosticCode.d.ts +131 -123
- package/build/types/diagnostic/DiagnosticData.d.ts +2 -1
- 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/parser/Scanner.d.ts +1 -0
- package/build/types/services/CompletionService.d.ts +2 -1
- package/build/types/services/DisplayService.d.ts +4 -2
- package/build/types/services/NodeSemanticInfo.d.ts +4 -2
- package/build/types/tree/KeywordKind.d.ts +41 -40
- package/build/types/tree/NodeKind.d.ts +63 -60
- package/build/types/tree/green/Nodes.d.ts +124 -86
- package/build/types/tree/green/SyntaxFactory.d.ts +12 -10
- package/build/types/tree/green/SyntaxToCode.d.ts +1 -0
- package/build/types/tree/green/Token.d.ts +1 -1
- package/build/types/tree/green/Utils.d.ts +1 -1
- package/build/types/tree/red/Nodes.d.ts +103 -63
- package/build/types/tree/red/Utils.d.ts +1 -1
- package/build/types/types/TypeFactory.d.ts +2 -1
- 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-MBMOAUK7.js";
|
5
|
+
import "./chunk-UZK7JCND.js";
|
6
6
|
import {
|
7
7
|
__async
|
8
|
-
} from "./chunk-
|
8
|
+
} from "./chunk-ODWG5ZXF.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-UZK7JCND.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,
|
@@ -222,6 +223,7 @@ import {
|
|
222
223
|
TreeQuery,
|
223
224
|
TryStatementClausesInfo,
|
224
225
|
TsInteropInputs,
|
226
|
+
TypeAssignabilityFlags,
|
225
227
|
TypeBodySemanticContext,
|
226
228
|
TypeConstructorDeclarationEntity,
|
227
229
|
TypeDereferenceOperatorDeclarationEntity,
|
@@ -295,7 +297,6 @@ import {
|
|
295
297
|
isTypeEntityWithMembers,
|
296
298
|
isTypeMemberEntity,
|
297
299
|
isUnaryOperator,
|
298
|
-
isVariantTypeDeclaration,
|
299
300
|
javaScriptIdentifierRegExp,
|
300
301
|
kebabCaseToCamelCase,
|
301
302
|
keywordKindByOperatorKind,
|
@@ -328,7 +329,7 @@ import {
|
|
328
329
|
withoutQuotes,
|
329
330
|
withoutTemplateQuotes,
|
330
331
|
yieldExecution
|
331
|
-
} from "../chunk-
|
332
|
+
} from "../chunk-ODWG5ZXF.js";
|
332
333
|
export {
|
333
334
|
AccessKind,
|
334
335
|
AccessedMethodValueParameter,
|
@@ -407,6 +408,7 @@ export {
|
|
407
408
|
ForStatementSemanticContext,
|
408
409
|
FoundAnonymousDeclaration,
|
409
410
|
FoundNamedDeclaration,
|
411
|
+
FunctionBlockSemanticContext,
|
410
412
|
GeneratedSourceFileScheme,
|
411
413
|
GenericCancellationToken,
|
412
414
|
GetMultipleTranslationTargetsResult,
|
@@ -547,6 +549,7 @@ export {
|
|
547
549
|
TreeQuery,
|
548
550
|
TryStatementClausesInfo,
|
549
551
|
TsInteropInputs,
|
552
|
+
TypeAssignabilityFlags,
|
550
553
|
TypeBodySemanticContext,
|
551
554
|
TypeConstructorDeclarationEntity,
|
552
555
|
TypeDereferenceOperatorDeclarationEntity,
|
@@ -623,7 +626,6 @@ export {
|
|
623
626
|
isTypeEntityWithMembers,
|
624
627
|
isTypeMemberEntity,
|
625
628
|
isUnaryOperator,
|
626
|
-
isVariantTypeDeclaration,
|
627
629
|
javaScriptIdentifierRegExp,
|
628
630
|
kebabCaseToCamelCase,
|
629
631
|
keywordKindByOperatorKind,
|
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-MBMOAUK7.js";
|
10
|
+
import "../chunk-UZK7JCND.js";
|
11
|
+
import "../chunk-ODWG5ZXF.js";
|
12
12
|
export {
|
13
13
|
CommandLineCompiler,
|
14
14
|
FileSystemUri,
|