@artel/artc 0.6.25209 → 0.6.25211
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 +14 -4
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +318 -333
- package/build/{chunk-GKEW2LBL.js → chunk-5BGDYCRQ.js} +2 -2
- package/build/{chunk-4EDLYSNW.js → chunk-EYLAO2SF.js} +1 -1
- package/build/{chunk-5SWGY25I.js → chunk-Y3KGPV3L.js} +1498 -1616
- package/build/types/analysis/Analyzer.d.ts +1 -2
- package/build/types/common/Debug.d.ts +3 -0
- package/build/types/common/Logger.d.ts +1 -1
- package/build/types/emitter/Transformer.d.ts +1 -1
- package/build/types/emitter/ir/Nodes.d.ts +13 -11
- package/build/types/entities/BinaryOperatorEntity.d.ts +4 -1
- package/build/types/entities/EntityHiding.d.ts +2 -2
- package/build/types/entities/OperatorEntity.d.ts +45 -0
- package/build/types/entities/OperatorKind.d.ts +63 -0
- package/build/types/entities/UnaryOperatorEntity.d.ts +2 -1
- package/build/types/entities/VariableEntity.d.ts +1 -11
- package/build/types/entities/index.d.ts +7 -4
- package/build/types/parser/OperatorDictionary.d.ts +11 -0
- package/build/types/services/DisplayService.d.ts +5 -5
- package/build/types/tree/KeywordKind.d.ts +25 -29
- package/build/types/tree/NodeKind.d.ts +83 -87
- package/build/types/tree/OperatorKind.d.ts +23 -0
- package/build/types/tree/green/Nodes.d.ts +27 -83
- package/build/types/tree/green/Token.d.ts +4 -3
- package/build/types/tree/green/index.d.ts +1 -0
- package/build/types/tree/index.d.ts +0 -3
- package/build/types/tree/red/Nodes.d.ts +22 -74
- package/build/types/tree/red/index.d.ts +4 -0
- package/build/types/ts-interop/Entities.d.ts +0 -4
- package/package.json +4 -4
- package/build/types/emitter/IntrinsicEntities.d.ts +0 -118
- /package/build/types/emitter/{error-boundary.d.ts → ErrorBoundary.d.ts} +0 -0
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-5BGDYCRQ.js";
|
5
|
+
import "./chunk-EYLAO2SF.js";
|
6
6
|
import {
|
7
7
|
__async
|
8
|
-
} from "./chunk-
|
8
|
+
} from "./chunk-Y3KGPV3L.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-EYLAO2SF.js";
|
4
4
|
import {
|
5
5
|
AccessKind,
|
6
6
|
AccessedMethodValueParameter,
|
@@ -66,7 +66,7 @@ import {
|
|
66
66
|
EntityHidingLevel_file,
|
67
67
|
EntityHidingLevel_package,
|
68
68
|
EntityHidingLevel_type,
|
69
|
-
|
69
|
+
EntityHidingLevel_typeHierarchy,
|
70
70
|
EntityKind,
|
71
71
|
EntityLocalizationHelper,
|
72
72
|
EntityNaming_anonymous,
|
@@ -145,6 +145,8 @@ import {
|
|
145
145
|
NonHiddenEntityHidingMatcher,
|
146
146
|
Notation,
|
147
147
|
OnErrorClauseSemanticContext,
|
148
|
+
OperatorDeclarationEntity,
|
149
|
+
OperatorKind,
|
148
150
|
Option,
|
149
151
|
PackageAliasTypeDeclarationEntity,
|
150
152
|
PackageConfigurationEn_exports,
|
@@ -273,6 +275,7 @@ import {
|
|
273
275
|
WellKnownDeclarationsLoadError,
|
274
276
|
WithDiagnostics_error,
|
275
277
|
WithDiagnostics_ok,
|
278
|
+
binaryOperatorKindByTokenText,
|
276
279
|
camelCaseToKebabCasePreservingKeyEquality,
|
277
280
|
collectRequiredJsLibraryConfigs,
|
278
281
|
createDefaultPackageConfiguration,
|
@@ -314,6 +317,7 @@ import {
|
|
314
317
|
kebabCaseToCamelCase,
|
315
318
|
localeToString,
|
316
319
|
locales,
|
320
|
+
operatorKindByKeywordTextByPackageLocale,
|
317
321
|
parseBinaryInteger,
|
318
322
|
parseCyrillicHexInteger,
|
319
323
|
parseDecimalInteger,
|
@@ -331,6 +335,7 @@ import {
|
|
331
335
|
tryParseLocale,
|
332
336
|
types_exports,
|
333
337
|
unaliasType,
|
338
|
+
unaryOperatorKindByTokenText,
|
334
339
|
unescapeText,
|
335
340
|
unwrapParenthesizedExpressions,
|
336
341
|
validJavaScriptIdentifierStartRegExp,
|
@@ -338,7 +343,7 @@ import {
|
|
338
343
|
visitChildrenRecursively,
|
339
344
|
withoutQuotes,
|
340
345
|
yieldExecution
|
341
|
-
} from "../chunk-
|
346
|
+
} from "../chunk-Y3KGPV3L.js";
|
342
347
|
export {
|
343
348
|
AccessKind,
|
344
349
|
AccessedMethodValueParameter,
|
@@ -404,7 +409,7 @@ export {
|
|
404
409
|
EntityHidingLevel_file,
|
405
410
|
EntityHidingLevel_package,
|
406
411
|
EntityHidingLevel_type,
|
407
|
-
|
412
|
+
EntityHidingLevel_typeHierarchy,
|
408
413
|
EntityKind,
|
409
414
|
EntityLocalizationHelper,
|
410
415
|
EntityNaming_anonymous,
|
@@ -481,6 +486,8 @@ export {
|
|
481
486
|
NonHiddenEntityHidingMatcher,
|
482
487
|
Notation,
|
483
488
|
OnErrorClauseSemanticContext,
|
489
|
+
OperatorDeclarationEntity,
|
490
|
+
OperatorKind,
|
484
491
|
Option,
|
485
492
|
PackageAliasTypeDeclarationEntity,
|
486
493
|
PackageConstructorSemanticContext,
|
@@ -605,6 +612,7 @@ export {
|
|
605
612
|
WellKnownDeclarationsLoadError,
|
606
613
|
WithDiagnostics_error,
|
607
614
|
WithDiagnostics_ok,
|
615
|
+
binaryOperatorKindByTokenText,
|
608
616
|
camelCaseToKebabCasePreservingKeyEquality,
|
609
617
|
collectRequiredJsLibraryConfigs,
|
610
618
|
PackageConfigurationEn_exports as config,
|
@@ -651,6 +659,7 @@ export {
|
|
651
659
|
kebabCaseToCamelCase,
|
652
660
|
localeToString,
|
653
661
|
locales,
|
662
|
+
operatorKindByKeywordTextByPackageLocale,
|
654
663
|
PackageContent_exports as packageContent,
|
655
664
|
parseBinaryInteger,
|
656
665
|
parseCyrillicHexInteger,
|
@@ -669,6 +678,7 @@ export {
|
|
669
678
|
tryParseLocale,
|
670
679
|
types_exports as type,
|
671
680
|
unaliasType,
|
681
|
+
unaryOperatorKindByTokenText,
|
672
682
|
unescapeText,
|
673
683
|
unwrapParenthesizedExpressions,
|
674
684
|
validJavaScriptIdentifierStartRegExp,
|
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-5BGDYCRQ.js";
|
10
|
+
import "../chunk-EYLAO2SF.js";
|
11
|
+
import "../chunk-Y3KGPV3L.js";
|
12
12
|
export {
|
13
13
|
CommandLineCompiler,
|
14
14
|
FileSystemUri,
|