@artel/artc 0.6.25214 → 0.6.25216
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 +318 -269
- package/build/{chunk-SKJMYOQR.js → chunk-6RYP5SET.js} +1 -1
- package/build/{chunk-YCHDDDYS.js → chunk-O7AXOZXA.js} +2 -2
- package/build/{chunk-ZFBZFTRR.js → chunk-TJG64G2K.js} +6079 -6321
- package/build/types/analysis/Analyzer.d.ts +1 -4
- package/build/types/analysis/{PrefixUnaryOperatorResolver.d.ts → UserDefinableUnaryOperatorResolver.d.ts} +3 -5
- package/build/types/analysis/Utils.d.ts +2 -2
- package/build/types/emitter/EmitterContext.d.ts +2 -0
- package/build/types/emitter/IrBuilder.d.ts +0 -1
- package/build/types/emitter/IrToJs.d.ts +0 -1
- package/build/types/emitter/Transformer.d.ts +158 -97
- package/build/types/emitter/ir/Nodes.d.ts +4 -11
- package/build/types/emitter/ir/types.d.ts +2 -2
- package/build/types/parser/UnescapeText.d.ts +1 -0
- package/build/types/services/NodeSemanticInfo.d.ts +0 -1
- package/build/types/services/workspace/CompilationController.d.ts +23 -1
- package/build/types/services/workspace/Workspace.d.ts +1 -0
- package/build/types/tree/NodeKind.d.ts +82 -83
- package/build/types/tree/TokenKind.d.ts +2 -2
- package/build/types/tree/green/Nodes.d.ts +3 -19
- package/build/types/tree/red/Nodes.d.ts +4 -18
- package/package.json +1 -1
- package/build/types/emitter/BlockStatementTransformationResult.d.ts +0 -10
- package/build/types/emitter/ExpressionTransformationResult.d.ts +0 -17
- package/build/types/emitter/Internal.d.ts +0 -9
- package/build/types/emitter/PackageMemberDeclarationTransformationResult.d.ts +0 -17
- package/build/types/emitter/SimpleTransformationResult.d.ts +0 -14
- package/build/types/emitter/StatementTransformationResult.d.ts +0 -21
- package/build/types/emitter/StructuredTypeMemberDeclarationTransformationResult.d.ts +0 -13
- package/build/types/emitter/TransformationContinuationAction.d.ts +0 -4
- package/build/types/emitter/TypeAccessExpressionTransformationResult.d.ts +0 -12
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-O7AXOZXA.js";
|
5
|
+
import "./chunk-6RYP5SET.js";
|
6
6
|
import {
|
7
7
|
__async
|
8
|
-
} from "./chunk-
|
8
|
+
} from "./chunk-TJG64G2K.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-6RYP5SET.js";
|
4
4
|
import {
|
5
5
|
AccessKind,
|
6
6
|
AccessedMethodValueParameter,
|
@@ -291,7 +291,7 @@ import {
|
|
291
291
|
getPackageContainingEntity,
|
292
292
|
getParentSkippingParenthesizedExpressions,
|
293
293
|
getRequiredTypeParameterCount,
|
294
|
-
|
294
|
+
getUnescapedTextFromTextToken,
|
295
295
|
getUserLocale,
|
296
296
|
green_exports,
|
297
297
|
invalidJavaScriptIdentifierCharsRegExp,
|
@@ -344,8 +344,9 @@ import {
|
|
344
344
|
visitChildren,
|
345
345
|
visitChildrenRecursively,
|
346
346
|
withoutQuotes,
|
347
|
+
withoutTextTemplateQuotes,
|
347
348
|
yieldExecution
|
348
|
-
} from "../chunk-
|
349
|
+
} from "../chunk-TJG64G2K.js";
|
349
350
|
export {
|
350
351
|
AccessKind,
|
351
352
|
AccessedMethodValueParameter,
|
@@ -634,7 +635,7 @@ export {
|
|
634
635
|
getPackageContainingEntity,
|
635
636
|
getParentSkippingParenthesizedExpressions,
|
636
637
|
getRequiredTypeParameterCount,
|
637
|
-
|
638
|
+
getUnescapedTextFromTextToken,
|
638
639
|
getUserLocale,
|
639
640
|
green_exports as green,
|
640
641
|
IndexedAccess_exports as indexedAccess,
|
@@ -690,5 +691,6 @@ export {
|
|
690
691
|
visitChildren,
|
691
692
|
visitChildrenRecursively,
|
692
693
|
withoutQuotes,
|
694
|
+
withoutTextTemplateQuotes,
|
693
695
|
yieldExecution
|
694
696
|
};
|
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-O7AXOZXA.js";
|
10
|
+
import "../chunk-6RYP5SET.js";
|
11
|
+
import "../chunk-TJG64G2K.js";
|
12
12
|
export {
|
13
13
|
CommandLineCompiler,
|
14
14
|
FileSystemUri,
|