@artel/artc 0.9.26035-pre-release → 0.9.26036-pre-release
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 +1 -1
- package/build/{chunk-YJXY57IJ.js → chunk-AUCAONLF.js} +1 -1
- package/build/{chunk-OYME3VHI.js → chunk-D247ZQ57.js} +2 -2
- package/build/{chunk-J5DRCNWW.js → chunk-JTOL3VLA.js} +1416 -636
- package/build/types/analysis/WellKnownDeclarations.d.ts +11 -1
- package/build/types/analysis/a/Analyzer.d.ts +1 -0
- package/build/types/analysis/m/Analyzer.d.ts +1 -0
- package/build/types/diagnostic/DiagnosticCode.d.ts +24 -23
- package/build/types/emitter/Entities.d.ts +6 -2
- package/build/types/emitter/EntityMap.d.ts +1 -0
- package/build/types/entities/IEntity.d.ts +1 -0
- package/build/types/entities/Tag.d.ts +9 -2
- package/build/types/entities/interfaces/FunctionEntity.d.ts +1 -0
- package/build/types/entities/source/a/SourceAliasTypeEntity.d.ts +2 -0
- package/build/types/entities/source/a/SourceFunctionEntity.d.ts +4 -0
- package/build/types/entities/source/a/SourceFunctionTypeEntity.d.ts +2 -0
- package/build/types/entities/source/a/SourceGetterEntity.d.ts +8 -0
- package/build/types/entities/source/a/SourceSetterEntity.d.ts +8 -0
- package/build/types/entities/source/a/SourceStructuredTypeEntity.d.ts +6 -0
- package/build/types/entities/source/a/SourceVariableEntity.d.ts +4 -0
- package/build/types/entities/source/a/SourceVariantTypeEntity.d.ts +2 -0
- package/build/types/entities/source/m/SourceFunctionEntity.d.ts +2 -0
- package/build/types/entities/source/m/SourceFunctionTypeEntity.d.ts +2 -0
- package/build/types/entities/source/m/SourceGetterEntity.d.ts +8 -0
- package/build/types/entities/source/m/SourceSetterEntity.d.ts +8 -0
- package/build/types/entities/source/m/SourceStructuredTypeEntity.d.ts +5 -0
- package/build/types/entities/source/m/SourceVariableEntity.d.ts +2 -0
- package/build/types/entities/source/m/SourceVariantTypeEntity.d.ts +2 -0
- package/build/types/ts-interop/Entities.d.ts +6 -3
- package/build/types/ts-interop/TsInteropContext.d.ts +3 -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-D247ZQ57.js";
|
|
5
|
+
import "./chunk-AUCAONLF.js";
|
|
6
6
|
import {
|
|
7
7
|
__async
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-JTOL3VLA.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-AUCAONLF.js";
|
|
4
4
|
import {
|
|
5
5
|
AccessKind,
|
|
6
6
|
AccessedFunction_entity,
|
|
@@ -198,6 +198,7 @@ import {
|
|
|
198
198
|
TagArgument_invalid,
|
|
199
199
|
TagArgument_numeric,
|
|
200
200
|
TagArgument_string,
|
|
201
|
+
TagArgument_variableExpression,
|
|
201
202
|
TagFunction,
|
|
202
203
|
TagType,
|
|
203
204
|
TargetPlatformConfig,
|
|
@@ -310,7 +311,7 @@ import {
|
|
|
310
311
|
withoutQuotes,
|
|
311
312
|
withoutTemplateQuotes,
|
|
312
313
|
yieldTask
|
|
313
|
-
} from "../chunk-
|
|
314
|
+
} from "../chunk-JTOL3VLA.js";
|
|
314
315
|
export {
|
|
315
316
|
AccessKind,
|
|
316
317
|
AccessedFunction_entity,
|
|
@@ -506,6 +507,7 @@ export {
|
|
|
506
507
|
TagArgument_invalid,
|
|
507
508
|
TagArgument_numeric,
|
|
508
509
|
TagArgument_string,
|
|
510
|
+
TagArgument_variableExpression,
|
|
509
511
|
TagFunction,
|
|
510
512
|
TagType,
|
|
511
513
|
TargetPlatformConfig,
|
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-D247ZQ57.js";
|
|
10
|
+
import "../chunk-AUCAONLF.js";
|
|
11
|
+
import "../chunk-JTOL3VLA.js";
|
|
12
12
|
export {
|
|
13
13
|
CommandLineCompiler,
|
|
14
14
|
FileSystemUri,
|
package/build/api/ApiServices.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
Compiler
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-AUCAONLF.js";
|
|
4
4
|
import {
|
|
5
5
|
ArtelVersion,
|
|
6
6
|
Cached,
|
|
@@ -16,7 +16,7 @@ import {
|
|
|
16
16
|
__async,
|
|
17
17
|
performanceMeasurementStageNames,
|
|
18
18
|
performanceMeasurementStages
|
|
19
|
-
} from "./chunk-
|
|
19
|
+
} from "./chunk-JTOL3VLA.js";
|
|
20
20
|
|
|
21
21
|
// source/executor/FileSystemUri.ts
|
|
22
22
|
import { platform } from "os";
|