@artel/artc 0.9.26022-pre-release → 0.9.26023-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 +2 -2
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +695 -234
- package/build/{chunk-KMBHT4AI.js → chunk-2BLIDCVA.js} +1 -1
- package/build/{chunk-PF7WW2S7.js → chunk-4YCJNPUR.js} +3804 -2544
- package/build/{chunk-3IVBZLMM.js → chunk-GLYRYS42.js} +2 -2
- package/build/types/analysis/a/Analyzer.d.ts +1 -0
- package/build/types/analysis/m/Analyzer.d.ts +4 -2
- package/build/types/analysis/m/ResolvedTranslationPackage.d.ts +10 -2
- package/build/types/analysis/m/TranslatedEntityNameConflictsValidator.d.ts +1 -0
- package/build/types/diagnostic/DiagnosticCode.d.ts +16 -10
- package/build/types/entities/TypeEntityMembers.d.ts +6 -0
- package/build/types/entities/interfaces/VariableEntity.d.ts +2 -2
- package/build/types/entities/intrinsic/IntrinsicVariableEntity.d.ts +1 -1
- package/build/types/entities/source/a/SourceFunctionEntity.d.ts +0 -1
- package/build/types/entities/source/a/SourceVariableEntity.d.ts +3 -3
- package/build/types/entities/source/m/SourceFunctionEntity.d.ts +0 -1
- package/build/types/entities/source/m/SourceVariableEntity.d.ts +5 -5
- package/build/types/entities/translated/TranslatedTypeMemberAccessorEntity.d.ts +3 -3
- package/build/types/entities/translated/TranslatedVariableEntity.d.ts +1 -1
- package/build/types/entities/translated/source/m/SourceTranslatedIndexedElementAccessorEntity.d.ts +13 -0
- package/build/types/entities/translated/source/m/SourceTranslatedIndexerEntity.d.ts +7 -5
- package/build/types/entities/translated/source/m/index.d.ts +1 -0
- package/build/types/parser/a/TokenKind.d.ts +26 -28
- package/build/types/parser/m/TokenKind.d.ts +27 -29
- package/build/types/services/common/Types.d.ts +2 -1
- package/build/types/services/m/NodeSemanticInfo.d.ts +7 -3
- package/build/types/tree/a/Nodes.d.ts +30 -30
- package/build/types/tree/a/SyntaxFactory.d.ts +1 -1
- package/build/types/tree/a/TokenKind.d.ts +10 -10
- package/build/types/tree/m/NodeKind.d.ts +9 -8
- package/build/types/tree/m/Nodes.d.ts +618 -572
- package/build/types/tree/m/SyntaxFactory.d.ts +51 -0
- package/build/types/tree/m/SyntaxToCode.d.ts +25 -24
- package/build/types/tree/m/TokenKind.d.ts +16 -16
- package/build/types/tree/m/index.d.ts +1 -0
- package/build/types/ts-interop/Entities.d.ts +3 -3
- 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-GLYRYS42.js";
|
|
5
|
+
import "./chunk-2BLIDCVA.js";
|
|
6
6
|
import {
|
|
7
7
|
__async
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-4YCJNPUR.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-2BLIDCVA.js";
|
|
4
4
|
import {
|
|
5
5
|
AccessKind,
|
|
6
6
|
AccessedFunction_entity,
|
|
@@ -312,7 +312,7 @@ import {
|
|
|
312
312
|
withoutQuotes,
|
|
313
313
|
withoutTemplateQuotes,
|
|
314
314
|
yieldTask
|
|
315
|
-
} from "../chunk-
|
|
315
|
+
} from "../chunk-4YCJNPUR.js";
|
|
316
316
|
export {
|
|
317
317
|
AccessKind,
|
|
318
318
|
AccessedFunction_entity,
|
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-GLYRYS42.js";
|
|
10
|
+
import "../chunk-2BLIDCVA.js";
|
|
11
|
+
import "../chunk-4YCJNPUR.js";
|
|
12
12
|
export {
|
|
13
13
|
CommandLineCompiler,
|
|
14
14
|
FileSystemUri,
|