@artel/artc 0.6.25218 → 0.6.25219
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 +8 -6
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +157 -158
- package/build/{chunk-FI6LW2RD.js → chunk-AIY75NR5.js} +1 -1
- package/build/{chunk-SK7ZBC3X.js → chunk-IYSH7MAQ.js} +878 -1003
- package/build/{chunk-TQDMVKTN.js → chunk-QLTGS2V2.js} +2 -2
- package/build/types/analysis/Analyzer.d.ts +1 -1
- package/build/types/analysis/ArgumentToParameterMatchResult.d.ts +3 -3
- package/build/types/analysis/SemanticContext.d.ts +7 -7
- package/build/types/analysis/Tags.d.ts +18 -6
- package/build/types/analysis/Utils.d.ts +4 -3
- package/build/types/diagnostic/DiagnosticCode.d.ts +2 -2
- package/build/types/emitter/IrToJs.d.ts +1 -1
- package/build/types/emitter/Transformer.d.ts +2 -2
- package/build/types/emitter/ir/Nodes.d.ts +66 -69
- package/build/types/emitter/ir/types.d.ts +2 -2
- package/build/types/tree/NodeKind.d.ts +57 -58
- package/build/types/tree/green/Nodes.d.ts +7 -20
- package/build/types/tree/red/Nodes.d.ts +8 -24
- 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-QLTGS2V2.js";
|
5
|
+
import "./chunk-AIY75NR5.js";
|
6
6
|
import {
|
7
7
|
__async
|
8
|
-
} from "./chunk-
|
8
|
+
} from "./chunk-IYSH7MAQ.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-AIY75NR5.js";
|
4
4
|
import {
|
5
5
|
AccessKind,
|
6
6
|
AccessedMethodValueParameter,
|
@@ -178,7 +178,6 @@ import {
|
|
178
178
|
ReservedIdentifierKind,
|
179
179
|
Result,
|
180
180
|
ResultSpecialVariableEntityInfo,
|
181
|
-
RunStatementClausesInfo,
|
182
181
|
Scanner,
|
183
182
|
ScopeChain,
|
184
183
|
SearchName,
|
@@ -198,11 +197,12 @@ import {
|
|
198
197
|
SubstitutedMethod_typeMember,
|
199
198
|
SubstitutionApplicationMode,
|
200
199
|
SyntacticAccessKind,
|
201
|
-
Tag2 as Tag,
|
202
200
|
TagArgument_boolean,
|
203
201
|
TagArgument_invalid,
|
204
202
|
TagArgument_numeric,
|
205
203
|
TagArgument_string,
|
204
|
+
TagMethod,
|
205
|
+
TagType,
|
206
206
|
TargetPlatformConfig,
|
207
207
|
TargetTypeHint,
|
208
208
|
TextFile,
|
@@ -220,6 +220,7 @@ import {
|
|
220
220
|
TranslationPackageConfiguration,
|
221
221
|
TraversalController,
|
222
222
|
TreeQuery,
|
223
|
+
TryStatementClausesInfo,
|
223
224
|
TsInteropInputs,
|
224
225
|
TypeBodySemanticContext,
|
225
226
|
TypeConstructorDeclarationEntity,
|
@@ -327,7 +328,7 @@ import {
|
|
327
328
|
withoutQuotes,
|
328
329
|
withoutTemplateQuotes,
|
329
330
|
yieldExecution
|
330
|
-
} from "../chunk-
|
331
|
+
} from "../chunk-IYSH7MAQ.js";
|
331
332
|
export {
|
332
333
|
AccessKind,
|
333
334
|
AccessedMethodValueParameter,
|
@@ -502,7 +503,6 @@ export {
|
|
502
503
|
ReservedIdentifierKind,
|
503
504
|
Result,
|
504
505
|
ResultSpecialVariableEntityInfo,
|
505
|
-
RunStatementClausesInfo,
|
506
506
|
Scanner,
|
507
507
|
TokenKind as ScannerTokenKind,
|
508
508
|
ScopeChain,
|
@@ -523,11 +523,12 @@ export {
|
|
523
523
|
SubstitutedMethod_typeMember,
|
524
524
|
SubstitutionApplicationMode,
|
525
525
|
SyntacticAccessKind,
|
526
|
-
Tag,
|
527
526
|
TagArgument_boolean,
|
528
527
|
TagArgument_invalid,
|
529
528
|
TagArgument_numeric,
|
530
529
|
TagArgument_string,
|
530
|
+
TagMethod,
|
531
|
+
TagType,
|
531
532
|
TargetPlatformConfig,
|
532
533
|
TargetTypeHint,
|
533
534
|
TextFile,
|
@@ -544,6 +545,7 @@ export {
|
|
544
545
|
TranslationPackageConfiguration,
|
545
546
|
TraversalController,
|
546
547
|
TreeQuery,
|
548
|
+
TryStatementClausesInfo,
|
547
549
|
TsInteropInputs,
|
548
550
|
TypeBodySemanticContext,
|
549
551
|
TypeConstructorDeclarationEntity,
|
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-QLTGS2V2.js";
|
10
|
+
import "../chunk-AIY75NR5.js";
|
11
|
+
import "../chunk-IYSH7MAQ.js";
|
12
12
|
export {
|
13
13
|
CommandLineCompiler,
|
14
14
|
FileSystemUri,
|