@artel/artc 0.9.26029-pre-release → 0.9.26031-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 +20 -16
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +415 -273
- package/build/{chunk-LKJKS5OJ.js → chunk-2XDC24ZX.js} +2784 -2304
- package/build/{chunk-RE36QMI4.js → chunk-A7WD4M7R.js} +8 -2
- package/build/{chunk-EFDSEPVX.js → chunk-L57KVKKH.js} +2 -2
- package/build/types/analysis/Analyzer.d.ts +6 -5
- package/build/types/analysis/SourcePackageDependencyGraph.d.ts +5 -4
- package/build/types/analysis/TypeMemberLookup.d.ts +17 -8
- package/build/types/analysis/WellKnownDeclarations.d.ts +6 -3
- package/build/types/analysis/a/Analyzer.d.ts +10 -11
- package/build/types/analysis/a/ArgumentToParameterMatchResult.d.ts +2 -1
- package/build/types/analysis/a/BaseConstructorCallStatementMeaning.d.ts +42 -0
- package/build/types/analysis/a/BaseExpressionMeaning.d.ts +7 -56
- package/build/types/analysis/a/OwnAndBaseConstructorCallsChecker.d.ts +2 -3
- package/build/types/analysis/a/{OwnConstructorCallExpressionMeaning.d.ts → OwnConstructorCallStatementMeaning.d.ts} +1 -1
- package/build/types/analysis/a/{ResolvedTranslationPackage.d.ts → ResolvedNameTranslationPackage.d.ts} +4 -4
- package/build/types/analysis/a/SourceFileAnalyzer.d.ts +5 -4
- package/build/types/analysis/a/TypeMemberLookup.d.ts +3 -1
- package/build/types/analysis/m/Analyzer.d.ts +4 -4
- package/build/types/analysis/m/OwnAndBaseConstructorCallsChecker.d.ts +0 -1
- package/build/types/analysis/m/{ResolvedTranslationPackage.d.ts → ResolvedNameTranslationPackage.d.ts} +4 -4
- package/build/types/analysis/m/SourceFileAnalyzer.d.ts +3 -3
- package/build/types/analysis/m/TypeMemberLookup.d.ts +3 -1
- package/build/types/api/Api.d.ts +1 -1
- package/build/types/diagnostic/Diagnostic.d.ts +7 -0
- package/build/types/diagnostic/DiagnosticCode.d.ts +4 -3
- package/build/types/diagnostic/TargetPlatformKindDiagnostic.d.ts +2 -0
- package/build/types/emitter/EmitterContext.d.ts +3 -3
- package/build/types/emitter/Entities.d.ts +5 -3
- package/build/types/emitter/IrBuilderA.d.ts +3 -2
- package/build/types/emitter/IrBuilderM.d.ts +1 -1
- package/build/types/emitter/IrFactory.d.ts +1 -1
- package/build/types/emitter/Transformer.d.ts +2 -2
- package/build/types/emitter/ir/Nodes.d.ts +4 -4
- package/build/types/emitter/ir/types.d.ts +2 -2
- package/build/types/entities/Translation.d.ts +3 -3
- package/build/types/entities/TypeEntityMembers.d.ts +8 -3
- package/build/types/entities/TypeMemberEntity.d.ts +3 -1
- package/build/types/entities/TypeMemberKindFlags.d.ts +12 -11
- package/build/types/entities/interfaces/AliasTypeEntity.d.ts +1 -0
- package/build/types/entities/interfaces/BaseDestructorEntity.d.ts +1 -1
- package/build/types/entities/interfaces/BaseNamedConstructorEntity.d.ts +18 -0
- package/build/types/entities/interfaces/BaseOperatorEntity.d.ts +1 -1
- package/build/types/entities/interfaces/{BaseConstructorEntity.d.ts → BaseOrdinaryConstructorEntity.d.ts} +2 -2
- package/build/types/entities/interfaces/BaseOrdinaryMethodEntity.d.ts +1 -1
- package/build/types/entities/interfaces/BaseTypeMemberAccessorEntity.d.ts +1 -1
- package/build/types/entities/interfaces/FunctionEntity.d.ts +6 -5
- package/build/types/entities/interfaces/a/NamedConstructorEntityA.d.ts +11 -0
- package/build/types/entities/interfaces/a/{ConstructorEntityA.d.ts → OrdinaryConstructorEntityA.d.ts} +2 -2
- package/build/types/entities/interfaces/a/index.d.ts +2 -1
- package/build/types/entities/interfaces/index.d.ts +2 -1
- package/build/types/entities/interfaces/m/OrdinaryConstructorEntityM.d.ts +18 -0
- package/build/types/entities/interfaces/m/index.d.ts +1 -1
- package/build/types/entities/intrinsic/IntrinsicConstructorEntity.d.ts +3 -3
- package/build/types/entities/source/a/SourceAliasTypeEntity.d.ts +1 -0
- package/build/types/entities/source/a/SourceConstructorEntity.d.ts +33 -3
- package/build/types/entities/source/a/SourcePackageEntity.d.ts +5 -6
- package/build/types/entities/source/m/SourceAliasTypeEntity.d.ts +1 -0
- package/build/types/entities/source/m/SourceConstructorEntity.d.ts +34 -4
- package/build/types/entities/source/m/SourcePackageEntity.d.ts +5 -6
- package/build/types/entities/translated/TranslatedAliasTypeEntity.d.ts +1 -0
- package/build/types/entities/translated/source/a/SourceTranslatedAliasTypeEntity.d.ts +2 -2
- package/build/types/entities/translated/source/a/SourceTranslatedConstructorEntity.d.ts +13 -3
- package/build/types/entities/translated/source/a/SourceTranslatedDestructorEntity.d.ts +2 -2
- package/build/types/entities/translated/source/a/SourceTranslatedExtensionTypeEntity.d.ts +2 -2
- package/build/types/entities/translated/source/a/SourceTranslatedFunctionEntity.d.ts +3 -3
- package/build/types/entities/translated/source/a/SourceTranslatedFunctionTypeEntity.d.ts +2 -2
- package/build/types/entities/translated/source/a/SourceTranslatedIndexerEntity.d.ts +3 -3
- package/build/types/entities/translated/source/a/SourceTranslatedPackageEntity.d.ts +4 -4
- package/build/types/entities/translated/source/a/SourceTranslatedPackageStructuredTypeEntity.d.ts +6 -6
- package/build/types/entities/translated/source/a/SourceTranslatedPackageVariantTypeEntity.d.ts +2 -2
- package/build/types/entities/translated/source/a/SourceTranslatedReducedTypeEntity.d.ts +2 -2
- package/build/types/entities/translated/source/m/SourceTranslatedAliasTypeEntity.d.ts +2 -2
- package/build/types/entities/translated/source/m/SourceTranslatedDestructorEntity.d.ts +2 -2
- package/build/types/entities/translated/source/m/SourceTranslatedExtensionTypeEntity.d.ts +2 -2
- package/build/types/entities/translated/source/m/SourceTranslatedFunctionEntity.d.ts +3 -3
- package/build/types/entities/translated/source/m/SourceTranslatedFunctionTypeEntity.d.ts +2 -2
- package/build/types/entities/translated/source/m/SourceTranslatedIndexedElementAccessorEntity.d.ts +4 -4
- package/build/types/entities/translated/source/m/SourceTranslatedIndexerEntity.d.ts +3 -3
- package/build/types/entities/translated/source/m/SourceTranslatedPackageEntity.d.ts +4 -4
- package/build/types/entities/translated/source/m/SourceTranslatedPackageStructuredTypeEntity.d.ts +6 -6
- package/build/types/entities/translated/source/m/SourceTranslatedPackageVariantTypeEntity.d.ts +2 -2
- package/build/types/entities/translated/source/m/SourceTranslatedReducedTypeEntity.d.ts +2 -2
- package/build/types/project/SourcePackage.d.ts +15 -15
- package/build/types/project/configuration/ConfigurationConverter.d.ts +2 -2
- package/build/types/services/a/CompletionService.d.ts +3 -2
- package/build/types/services/a/DisplayService.d.ts +1 -0
- package/build/types/services/a/NodeSemanticInfo.d.ts +3 -2
- package/build/types/services/a/signature-help/SignatureWithParameters.d.ts +5 -3
- package/build/types/services/common/references/Types.d.ts +1 -1
- package/build/types/services/m/NodeSemanticInfo.d.ts +1 -1
- package/build/types/tree/a/KeywordKind.d.ts +1 -1
- package/build/types/tree/a/NodeKind.d.ts +75 -74
- package/build/types/tree/a/Nodes.d.ts +53 -30
- package/build/types/tree/a/SyntaxFactory.d.ts +1 -1
- package/build/types/tree/m/KeywordKind.d.ts +1 -1
- package/build/types/tree/m/NodeKind.d.ts +1 -1
- package/build/types/tree/m/Nodes.d.ts +8 -8
- package/build/types/tree/m/WellKnownTagFlags.d.ts +2 -1
- package/build/types/ts-interop/Entities.d.ts +10 -33
- package/build/types/ts-interop/TsInteropContext.d.ts +1 -1
- package/build/types/ts-interop/TsTypeMembersCreator.d.ts +6 -8
- package/build/types/ts-interop/TypeEntities.d.ts +8 -6
- package/build/types/types/AliasType.d.ts +1 -0
- package/build/types/types/StandardTypes.d.ts +2 -2
- package/package.json +1 -1
- package/build/types/entities/interfaces/m/ConstructorEntityM.d.ts +0 -10
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-L57KVKKH.js";
|
|
5
|
+
import "./chunk-A7WD4M7R.js";
|
|
6
6
|
import {
|
|
7
7
|
__async
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-2XDC24ZX.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-A7WD4M7R.js";
|
|
4
4
|
import {
|
|
5
5
|
AccessKind,
|
|
6
6
|
AccessedFunction_entity,
|
|
@@ -19,14 +19,16 @@ import {
|
|
|
19
19
|
ArtelSourceFileExtensions,
|
|
20
20
|
ArtelVersion,
|
|
21
21
|
BackingSpecialVariableEntityInfo,
|
|
22
|
-
BaseConstructorEntity,
|
|
23
22
|
BaseDereferenceOperatorEntity,
|
|
24
23
|
BaseDestructorEntity,
|
|
25
24
|
BaseFieldEntity,
|
|
26
25
|
BaseIndexerEntity,
|
|
27
26
|
BaseKeywordPart,
|
|
28
27
|
BaseMethodEntity,
|
|
28
|
+
BaseNameTranslationPackage,
|
|
29
|
+
BaseNamedConstructorEntity,
|
|
29
30
|
BaseOperatorEntity,
|
|
31
|
+
BaseOrdinaryConstructorEntity,
|
|
30
32
|
BaseOrdinaryMethodEntity,
|
|
31
33
|
BaseOrdinaryPackageFunctionEntity,
|
|
32
34
|
BasePackageMemberAccessorEntity,
|
|
@@ -34,7 +36,6 @@ import {
|
|
|
34
36
|
BaseSourceFile,
|
|
35
37
|
BaseStructuredTypes,
|
|
36
38
|
BaseTextTranslationPackage,
|
|
37
|
-
BaseTranslationPackage,
|
|
38
39
|
BaseTypeMemberAccessorEntity,
|
|
39
40
|
BoundTypeMemberLookup,
|
|
40
41
|
Cached,
|
|
@@ -86,6 +87,7 @@ import {
|
|
|
86
87
|
EntityNaming_anonymous,
|
|
87
88
|
EntityNaming_named,
|
|
88
89
|
ErrorHandlingStrategy,
|
|
90
|
+
ErrorTrackingDiagnosticAcceptor,
|
|
89
91
|
ExpressionAnalysisOptions2 as ExpressionAnalysisOptions,
|
|
90
92
|
FieldEntityWithImplicitAccessors,
|
|
91
93
|
FileSystemTree_exports,
|
|
@@ -131,6 +133,10 @@ import {
|
|
|
131
133
|
MiddleKeywordPart,
|
|
132
134
|
Name,
|
|
133
135
|
NameFlags,
|
|
136
|
+
NameTranslationPackage,
|
|
137
|
+
NameTranslationPackageA,
|
|
138
|
+
NameTranslationPackageConfiguration,
|
|
139
|
+
NameTranslationPackageM,
|
|
134
140
|
NodeModulesDirectoryName,
|
|
135
141
|
OperatorKind,
|
|
136
142
|
Option,
|
|
@@ -172,7 +178,7 @@ import {
|
|
|
172
178
|
RequiredJsLibraryConfigs,
|
|
173
179
|
RequiredPackageConfig,
|
|
174
180
|
ReservedNameKind,
|
|
175
|
-
|
|
181
|
+
ResolvedNameTranslationPackage,
|
|
176
182
|
Result,
|
|
177
183
|
ResultSpecialVariableEntityInfo,
|
|
178
184
|
Scanner,
|
|
@@ -204,10 +210,6 @@ import {
|
|
|
204
210
|
Token,
|
|
205
211
|
TokenKind,
|
|
206
212
|
Translation,
|
|
207
|
-
TranslationPackage,
|
|
208
|
-
TranslationPackageA,
|
|
209
|
-
TranslationPackageConfiguration,
|
|
210
|
-
TranslationPackageM,
|
|
211
213
|
TsInteropInputs,
|
|
212
214
|
TypeEntity,
|
|
213
215
|
TypeEntityKind,
|
|
@@ -307,7 +309,7 @@ import {
|
|
|
307
309
|
withoutQuotes,
|
|
308
310
|
withoutTemplateQuotes,
|
|
309
311
|
yieldTask
|
|
310
|
-
} from "../chunk-
|
|
312
|
+
} from "../chunk-2XDC24ZX.js";
|
|
311
313
|
export {
|
|
312
314
|
AccessKind,
|
|
313
315
|
AccessedFunction_entity,
|
|
@@ -326,14 +328,16 @@ export {
|
|
|
326
328
|
ArtelSourceFileExtensions,
|
|
327
329
|
ArtelVersion,
|
|
328
330
|
BackingSpecialVariableEntityInfo,
|
|
329
|
-
BaseConstructorEntity,
|
|
330
331
|
BaseDereferenceOperatorEntity,
|
|
331
332
|
BaseDestructorEntity,
|
|
332
333
|
BaseFieldEntity,
|
|
333
334
|
BaseIndexerEntity,
|
|
334
335
|
BaseKeywordPart,
|
|
335
336
|
BaseMethodEntity,
|
|
337
|
+
BaseNameTranslationPackage,
|
|
338
|
+
BaseNamedConstructorEntity,
|
|
336
339
|
BaseOperatorEntity,
|
|
340
|
+
BaseOrdinaryConstructorEntity,
|
|
337
341
|
BaseOrdinaryMethodEntity,
|
|
338
342
|
BaseOrdinaryPackageFunctionEntity,
|
|
339
343
|
BasePackageMemberAccessorEntity,
|
|
@@ -341,7 +345,6 @@ export {
|
|
|
341
345
|
BaseSourceFile,
|
|
342
346
|
BaseStructuredTypes,
|
|
343
347
|
BaseTextTranslationPackage,
|
|
344
|
-
BaseTranslationPackage,
|
|
345
348
|
BaseTypeMemberAccessorEntity,
|
|
346
349
|
BoundTypeMemberLookup,
|
|
347
350
|
Cached,
|
|
@@ -394,6 +397,7 @@ export {
|
|
|
394
397
|
EntityNaming_anonymous,
|
|
395
398
|
EntityNaming_named,
|
|
396
399
|
ErrorHandlingStrategy,
|
|
400
|
+
ErrorTrackingDiagnosticAcceptor,
|
|
397
401
|
ExpressionAnalysisOptions,
|
|
398
402
|
FieldEntityWithImplicitAccessors,
|
|
399
403
|
GeneratedSourceFileScheme,
|
|
@@ -438,6 +442,10 @@ export {
|
|
|
438
442
|
MiddleKeywordPart,
|
|
439
443
|
Name,
|
|
440
444
|
NameFlags,
|
|
445
|
+
NameTranslationPackage,
|
|
446
|
+
NameTranslationPackageA,
|
|
447
|
+
NameTranslationPackageConfiguration,
|
|
448
|
+
NameTranslationPackageM,
|
|
441
449
|
NodeModulesDirectoryName,
|
|
442
450
|
OperatorKind,
|
|
443
451
|
Option,
|
|
@@ -476,7 +484,7 @@ export {
|
|
|
476
484
|
RequiredJsLibraryConfigs,
|
|
477
485
|
RequiredPackageConfig,
|
|
478
486
|
ReservedNameKind,
|
|
479
|
-
|
|
487
|
+
ResolvedNameTranslationPackage,
|
|
480
488
|
Result,
|
|
481
489
|
ResultSpecialVariableEntityInfo,
|
|
482
490
|
Scanner,
|
|
@@ -508,10 +516,6 @@ export {
|
|
|
508
516
|
TextTranslationPackageM,
|
|
509
517
|
Token,
|
|
510
518
|
Translation,
|
|
511
|
-
TranslationPackage,
|
|
512
|
-
TranslationPackageA,
|
|
513
|
-
TranslationPackageConfiguration,
|
|
514
|
-
TranslationPackageM,
|
|
515
519
|
TsInteropInputs,
|
|
516
520
|
TypeEntity,
|
|
517
521
|
TypeEntityKind,
|
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-L57KVKKH.js";
|
|
10
|
+
import "../chunk-A7WD4M7R.js";
|
|
11
|
+
import "../chunk-2XDC24ZX.js";
|
|
12
12
|
export {
|
|
13
13
|
CommandLineCompiler,
|
|
14
14
|
FileSystemUri,
|