@artel/artc 0.6.25213 → 0.6.25215
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 -4
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +242 -268
- package/build/{chunk-X4XDV2CH.js → chunk-DZ66PBHU.js} +7145 -7390
- package/build/{chunk-6UMHRF7Y.js → chunk-GEFYL4SZ.js} +3 -3
- package/build/{chunk-YFV3TSQP.js → chunk-TT3Q66WU.js} +3 -3
- package/build/types/analysis/Analyzer.d.ts +8 -12
- package/build/types/analysis/IdentifierExpressionMeaning.d.ts +1 -1
- package/build/types/analysis/PropertyAccessExpressionMeaning.d.ts +1 -2
- package/build/types/analysis/TypeMemberLookup.d.ts +14 -0
- package/build/types/analysis/{PrefixUnaryOperatorResolver.d.ts → UserDefinableUnaryOperatorResolver.d.ts} +3 -5
- package/build/types/analysis/Utils.d.ts +2 -2
- package/build/types/analysis/WellKnownDeclarations.d.ts +3 -2
- package/build/types/diagnostic/DiagnosticCode.d.ts +112 -152
- package/build/types/emitter/EmitterContext.d.ts +2 -0
- package/build/types/emitter/Entities.d.ts +1 -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/entities/MethodEntity.d.ts +6 -1
- package/build/types/entities/OperatorEntity.d.ts +3 -0
- package/build/types/entities/OperatorKind.d.ts +19 -20
- package/build/types/entities/VariableEntity.d.ts +8 -1
- package/build/types/parser/UnescapeText.d.ts +1 -0
- package/build/types/services/NodeSemanticInfo.d.ts +0 -1
- package/build/types/tree/NodeKind.d.ts +82 -83
- package/build/types/tree/OperatorKind.d.ts +16 -17
- package/build/types/tree/TokenKind.d.ts +2 -2
- package/build/types/tree/green/Nodes.d.ts +4 -20
- package/build/types/tree/red/Nodes.d.ts +5 -19
- package/build/types/ts-interop/Entities.d.ts +8 -0
- package/build/types/types/StandardTypes.d.ts +2 -2
- 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-TT3Q66WU.js";
|
5
|
+
import "./chunk-GEFYL4SZ.js";
|
6
6
|
import {
|
7
7
|
__async
|
8
|
-
} from "./chunk-
|
8
|
+
} from "./chunk-DZ66PBHU.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-GEFYL4SZ.js";
|
4
4
|
import {
|
5
5
|
AccessKind,
|
6
6
|
AccessedMethodValueParameter,
|
@@ -24,6 +24,7 @@ import {
|
|
24
24
|
BackingSpecialVariableEntityInfo,
|
25
25
|
BaseAspectTypes,
|
26
26
|
BaseObjectType,
|
27
|
+
BoundTypeMemberLookup,
|
27
28
|
Cached,
|
28
29
|
CancelledError,
|
29
30
|
CharacterCodes,
|
@@ -290,7 +291,7 @@ import {
|
|
290
291
|
getPackageContainingEntity,
|
291
292
|
getParentSkippingParenthesizedExpressions,
|
292
293
|
getRequiredTypeParameterCount,
|
293
|
-
|
294
|
+
getUnescapedTextFromTextToken,
|
294
295
|
getUserLocale,
|
295
296
|
green_exports,
|
296
297
|
invalidJavaScriptIdentifierCharsRegExp,
|
@@ -343,8 +344,9 @@ import {
|
|
343
344
|
visitChildren,
|
344
345
|
visitChildrenRecursively,
|
345
346
|
withoutQuotes,
|
347
|
+
withoutTextTemplateQuotes,
|
346
348
|
yieldExecution
|
347
|
-
} from "../chunk-
|
349
|
+
} from "../chunk-DZ66PBHU.js";
|
348
350
|
export {
|
349
351
|
AccessKind,
|
350
352
|
AccessedMethodValueParameter,
|
@@ -368,6 +370,7 @@ export {
|
|
368
370
|
BackingSpecialVariableEntityInfo,
|
369
371
|
BaseAspectTypes,
|
370
372
|
BaseObjectType,
|
373
|
+
BoundTypeMemberLookup,
|
371
374
|
Cached,
|
372
375
|
CancelledError,
|
373
376
|
CharacterCodes,
|
@@ -632,7 +635,7 @@ export {
|
|
632
635
|
getPackageContainingEntity,
|
633
636
|
getParentSkippingParenthesizedExpressions,
|
634
637
|
getRequiredTypeParameterCount,
|
635
|
-
|
638
|
+
getUnescapedTextFromTextToken,
|
636
639
|
getUserLocale,
|
637
640
|
green_exports as green,
|
638
641
|
IndexedAccess_exports as indexedAccess,
|
@@ -688,5 +691,6 @@ export {
|
|
688
691
|
visitChildren,
|
689
692
|
visitChildrenRecursively,
|
690
693
|
withoutQuotes,
|
694
|
+
withoutTextTemplateQuotes,
|
691
695
|
yieldExecution
|
692
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-TT3Q66WU.js";
|
10
|
+
import "../chunk-GEFYL4SZ.js";
|
11
|
+
import "../chunk-DZ66PBHU.js";
|
12
12
|
export {
|
13
13
|
CommandLineCompiler,
|
14
14
|
FileSystemUri,
|