@artel/artc 0.6.25221 → 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 +4 -2
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +284 -238
- package/build/{chunk-XMV7LOUY.js → chunk-MBMOAUK7.js} +2 -2
- package/build/{chunk-X7TMUZ4C.js → chunk-ODWG5ZXF.js} +1606 -1261
- package/build/{chunk-5F65ZJE3.js → chunk-UZK7JCND.js} +1 -1
- package/build/types/analysis/Analyzer.d.ts +7 -4
- package/build/types/analysis/NodeTypeUtils.d.ts +1 -6
- 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 +11 -6
- 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/tree/KeywordKind.d.ts +41 -40
- package/build/types/tree/NodeKind.d.ts +63 -61
- package/build/types/tree/green/Nodes.d.ts +84 -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/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,
|
@@ -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,
|
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,
|