@artel/artc 0.6.26004 → 0.6.26006
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 +12 -16
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +1031 -1003
- package/build/{chunk-CY2OJOIG.js → chunk-5JJEX6X4.js} +2 -2
- package/build/{chunk-VRGYQLZL.js → chunk-FIIGCVSM.js} +3402 -4065
- package/build/{chunk-MSYKVMRZ.js → chunk-VXYD4HK3.js} +1 -1
- package/build/types/analysis/AnalyzedTranslationPackage.d.ts +1 -0
- package/build/types/analysis/Analyzer.d.ts +8 -10
- package/build/types/analysis/ModifierValidator.d.ts +8 -8
- package/build/types/analysis/NodeTypeUtils.d.ts +10 -6
- package/build/types/analysis/SourceFileAnalyzer.d.ts +6 -4
- package/build/types/analysis/Utils.d.ts +2 -1
- package/build/types/analysis/WellKnownDeclarations.d.ts +6 -6
- package/build/types/analysis/semantic-context/SemanticContext.d.ts +1 -1
- package/build/types/analysis/semantic-context/SemanticContextBuilder.d.ts +7 -6
- package/build/types/analysis/semantic-context/TypeSemanticContext.d.ts +6 -6
- package/build/types/diagnostic/DiagnosticCode.d.ts +6 -5
- package/build/types/emitter/EmitPhaseName.d.ts +4 -4
- package/build/types/emitter/EmitterContext.d.ts +5 -5
- package/build/types/emitter/Entities.d.ts +2 -2
- package/build/types/emitter/IrBuilder.d.ts +1 -2
- package/build/types/emitter/ir/EmitOptions.d.ts +5 -5
- package/build/types/entities/BaseAspectTypes.d.ts +2 -2
- package/build/types/entities/BaseObjectType.d.ts +2 -2
- package/build/types/entities/Entity.d.ts +8 -8
- package/build/types/entities/EntityLocalizationContext.d.ts +2 -4
- package/build/types/entities/interfaces/FunctionTypeEntity.d.ts +2 -8
- package/build/types/entities/interfaces/ReducedTypeEntity.d.ts +2 -2
- package/build/types/entities/interfaces/StructuredTypeEntity.d.ts +4 -4
- package/build/types/entities/interfaces/TypeParameterEntity.d.ts +1 -1
- package/build/types/entities/interfaces/VariantTypeEntity.d.ts +2 -6
- package/build/types/entities/intrinsic/IntrinsicFunctionTypeEntity.d.ts +2 -9
- package/build/types/entities/source/SourceFunctionTypeEntity.d.ts +3 -38
- package/build/types/entities/source/SourceStructuredTypeEntity.d.ts +17 -11
- package/build/types/entities/source/SourceVariantTypeEntity.d.ts +3 -29
- package/build/types/entities/translated/TranslatedAliasTypeEntity.d.ts +1 -1
- package/build/types/entities/translated/TranslatedFunctionTypeEntity.d.ts +4 -37
- package/build/types/entities/translated/TranslatedVariantTypeEntity.d.ts +1 -28
- package/build/types/services/CompletionService.d.ts +14 -13
- package/build/types/services/DisplayService.d.ts +1 -10
- package/build/types/services/SourceFileItemsService.d.ts +14 -12
- package/build/types/services/TypeDefinitionService.d.ts +0 -2
- package/build/types/services/source-generation/EntityToSyntax.d.ts +1 -7
- package/build/types/tree/KeywordKind.d.ts +63 -60
- package/build/types/tree/NodeKind.d.ts +144 -147
- package/build/types/tree/Nodes.d.ts +154 -184
- package/build/types/tree/SyntaxFactory.d.ts +9 -13
- package/build/types/tree/SyntaxToCode.d.ts +8 -9
- package/build/types/ts-interop/Entities.d.ts +13 -17
- package/build/types/ts-interop/TsInteropContext.d.ts +1 -1
- package/build/types/ts-interop/TsPackageMembersCreator.d.ts +1 -1
- package/build/types/types/StandardTypes.d.ts +4 -4
- package/build/types/types/Type.d.ts +1 -1
- 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-5JJEX6X4.js";
|
|
5
|
+
import "./chunk-VXYD4HK3.js";
|
|
6
6
|
import {
|
|
7
7
|
__async
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-FIIGCVSM.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-VXYD4HK3.js";
|
|
4
4
|
import {
|
|
5
5
|
AccessKind,
|
|
6
6
|
AccessedFunctionParameter,
|
|
@@ -14,7 +14,6 @@ import {
|
|
|
14
14
|
Analyzer,
|
|
15
15
|
AnonymousFunctionTypeDeclarationEntity,
|
|
16
16
|
AnonymousStructuredTypeDeclarationEntity,
|
|
17
|
-
AnonymousVariantTypeDeclarationEntity,
|
|
18
17
|
ArrayUtils,
|
|
19
18
|
ArtelSourceAndConfigurationFileExtensionSet,
|
|
20
19
|
ArtelSourceFileExtensionSet,
|
|
@@ -163,7 +162,6 @@ import {
|
|
|
163
162
|
PackageEntityMembers,
|
|
164
163
|
PackageFromDtsConfig,
|
|
165
164
|
PackageFunctionDeclarationEntity,
|
|
166
|
-
PackageFunctionTypeDeclarationEntity,
|
|
167
165
|
PackageGroupConfiguration,
|
|
168
166
|
PackageImportInfo,
|
|
169
167
|
PackageImportLocaleConfig,
|
|
@@ -176,7 +174,7 @@ import {
|
|
|
176
174
|
PackageVariableDeclarationEntity,
|
|
177
175
|
PackageVariableGetterDeclarationEntity,
|
|
178
176
|
PackageVariableSetterDeclarationEntity,
|
|
179
|
-
|
|
177
|
+
PackageVariantDeclarationEntity,
|
|
180
178
|
ParameterDeclarationEntity,
|
|
181
179
|
Parser,
|
|
182
180
|
PerformanceMeasurement,
|
|
@@ -202,14 +200,14 @@ import {
|
|
|
202
200
|
ShadowReason,
|
|
203
201
|
ShadowedMemberInfo,
|
|
204
202
|
SignatureComparisonOptions,
|
|
205
|
-
|
|
203
|
+
SourceAnonymousStructuredTypeDeclarationData2,
|
|
206
204
|
SourceFile2 as SourceFile,
|
|
207
205
|
SourceFileAnalyzer,
|
|
208
206
|
SourceMapMode,
|
|
209
207
|
SourcePackageDependencyGraph,
|
|
210
208
|
SourcePackageEntity,
|
|
211
|
-
|
|
212
|
-
|
|
209
|
+
SourcePackageStructuredTypeDeclarationData2,
|
|
210
|
+
SourceStructuredTypeDeclarationData2,
|
|
213
211
|
SourceTranslationDefinition,
|
|
214
212
|
SourceTypeExtensionEntity,
|
|
215
213
|
SourceTypeParameterEntity,
|
|
@@ -251,7 +249,6 @@ import {
|
|
|
251
249
|
TypeWithMembersOrExtensionEntity,
|
|
252
250
|
UnfinishedIntrinsicAnonymousFunctionTypeEntity,
|
|
253
251
|
UnfinishedIntrinsicAnonymousStructuredTypeEntity,
|
|
254
|
-
UnfinishedIntrinsicPackageFunctionTypeEntity,
|
|
255
252
|
UnfinishedIntrinsicPackageStructuredTypeEntity,
|
|
256
253
|
Uri,
|
|
257
254
|
UrisRelativityKind,
|
|
@@ -285,6 +282,7 @@ import {
|
|
|
285
282
|
getRequiredTypeParameterCount,
|
|
286
283
|
getUnescapedTextFromTextToken,
|
|
287
284
|
getUserLocale,
|
|
285
|
+
ifTypeEntityIsFunctionTypeAliasThenFunctionType,
|
|
288
286
|
invalidJavaScriptIdentifierCharsRegExp,
|
|
289
287
|
isAccessorEntity,
|
|
290
288
|
isAnonymousTypeEntity,
|
|
@@ -348,7 +346,7 @@ import {
|
|
|
348
346
|
withoutQuotes,
|
|
349
347
|
withoutTemplateQuotes,
|
|
350
348
|
yieldTask
|
|
351
|
-
} from "../chunk-
|
|
349
|
+
} from "../chunk-FIIGCVSM.js";
|
|
352
350
|
export {
|
|
353
351
|
AccessKind,
|
|
354
352
|
AccessedFunctionParameter,
|
|
@@ -362,7 +360,6 @@ export {
|
|
|
362
360
|
Analyzer,
|
|
363
361
|
AnonymousFunctionTypeDeclarationEntity,
|
|
364
362
|
AnonymousStructuredTypeDeclarationEntity,
|
|
365
|
-
AnonymousVariantTypeDeclarationEntity,
|
|
366
363
|
ArrayUtils,
|
|
367
364
|
ArtelSourceAndConfigurationFileExtensionSet,
|
|
368
365
|
ArtelSourceFileExtensionSet,
|
|
@@ -508,7 +505,6 @@ export {
|
|
|
508
505
|
PackageEntityMembers,
|
|
509
506
|
PackageFromDtsConfig,
|
|
510
507
|
PackageFunctionDeclarationEntity,
|
|
511
|
-
PackageFunctionTypeDeclarationEntity,
|
|
512
508
|
PackageGroupConfiguration,
|
|
513
509
|
PackageImportInfo,
|
|
514
510
|
PackageImportLocaleConfig,
|
|
@@ -521,7 +517,7 @@ export {
|
|
|
521
517
|
PackageVariableDeclarationEntity,
|
|
522
518
|
PackageVariableGetterDeclarationEntity,
|
|
523
519
|
PackageVariableSetterDeclarationEntity,
|
|
524
|
-
|
|
520
|
+
PackageVariantDeclarationEntity,
|
|
525
521
|
ParameterDeclarationEntity,
|
|
526
522
|
Parser,
|
|
527
523
|
PerformanceMeasurement,
|
|
@@ -548,14 +544,14 @@ export {
|
|
|
548
544
|
ShadowReason,
|
|
549
545
|
ShadowedMemberInfo,
|
|
550
546
|
SignatureComparisonOptions,
|
|
551
|
-
|
|
547
|
+
SourceAnonymousStructuredTypeDeclarationData2,
|
|
552
548
|
SourceFile,
|
|
553
549
|
SourceFileAnalyzer,
|
|
554
550
|
SourceMapMode,
|
|
555
551
|
SourcePackageDependencyGraph,
|
|
556
552
|
SourcePackageEntity,
|
|
557
|
-
|
|
558
|
-
|
|
553
|
+
SourcePackageStructuredTypeDeclarationData2,
|
|
554
|
+
SourceStructuredTypeDeclarationData2,
|
|
559
555
|
SourceTranslationDefinition,
|
|
560
556
|
SourceTypeExtensionEntity,
|
|
561
557
|
SourceTypeParameterEntity,
|
|
@@ -596,7 +592,6 @@ export {
|
|
|
596
592
|
TypeWithMembersOrExtensionEntity,
|
|
597
593
|
UnfinishedIntrinsicAnonymousFunctionTypeEntity,
|
|
598
594
|
UnfinishedIntrinsicAnonymousStructuredTypeEntity,
|
|
599
|
-
UnfinishedIntrinsicPackageFunctionTypeEntity,
|
|
600
595
|
UnfinishedIntrinsicPackageStructuredTypeEntity,
|
|
601
596
|
Uri,
|
|
602
597
|
UrisRelativityKind,
|
|
@@ -633,6 +628,7 @@ export {
|
|
|
633
628
|
getRequiredTypeParameterCount,
|
|
634
629
|
getUnescapedTextFromTextToken,
|
|
635
630
|
getUserLocale,
|
|
631
|
+
ifTypeEntityIsFunctionTypeAliasThenFunctionType,
|
|
636
632
|
invalidJavaScriptIdentifierCharsRegExp,
|
|
637
633
|
isAccessorEntity,
|
|
638
634
|
isAnonymousTypeEntity,
|
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-5JJEX6X4.js";
|
|
10
|
+
import "../chunk-VXYD4HK3.js";
|
|
11
|
+
import "../chunk-FIIGCVSM.js";
|
|
12
12
|
export {
|
|
13
13
|
CommandLineCompiler,
|
|
14
14
|
FileSystemUri,
|