@artel/artc 0.9.26028-pre-release → 0.9.26030-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 +12 -16
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +930 -278
- package/build/{chunk-JRCZXF6T.js → chunk-HEQJNVVU.js} +1 -1
- package/build/{chunk-JZ72OQ57.js → chunk-SRTMMV6H.js} +2 -2
- package/build/{chunk-QJFQXSRI.js → chunk-ZXXSGQS4.js} +6343 -5963
- package/build/types/analysis/Analyzer.d.ts +14 -14
- package/build/types/analysis/TypeMemberLookup.d.ts +17 -9
- package/build/types/analysis/WellKnownDeclarations.d.ts +12 -6
- package/build/types/analysis/a/Analyzer.d.ts +9 -9
- 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/SourceFileAnalyzer.d.ts +4 -3
- package/build/types/analysis/a/TypeMemberLookup.d.ts +3 -1
- package/build/types/analysis/a/semantic-context/SourceFileSemanticContext.d.ts +1 -0
- package/build/types/analysis/m/Analyzer.d.ts +3 -3
- package/build/types/analysis/m/OwnAndBaseConstructorCallsChecker.d.ts +0 -1
- package/build/types/analysis/m/SourceFileAnalyzer.d.ts +2 -2
- package/build/types/analysis/m/TypeMemberLookup.d.ts +3 -1
- package/build/types/analysis/m/semantic-context/SourceFileSemanticContext.d.ts +1 -0
- package/build/types/common/ArrayUtils.d.ts +1 -0
- package/build/types/diagnostic/DiagnosticCode.d.ts +2 -2
- package/build/types/emitter/EmitterContext.d.ts +2 -4
- package/build/types/emitter/Entities.d.ts +5 -4
- package/build/types/emitter/EntityMap.d.ts +4 -0
- 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/BaseStructuredTypes.d.ts +58 -0
- 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/index.d.ts +1 -2
- 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/FunctionTypeEntity.d.ts +3 -4
- package/build/types/entities/interfaces/ReducedTypeEntity.d.ts +3 -9
- package/build/types/entities/interfaces/StructuredTypeEntity.d.ts +3 -9
- package/build/types/entities/interfaces/VariantTypeEntity.d.ts +3 -4
- 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/intrinsic/IntrinsicStructuredTypeEntity.d.ts +2 -2
- 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/SourceFunctionTypeEntity.d.ts +3 -4
- package/build/types/entities/source/a/SourceReducedTypeEntity.d.ts +2 -4
- package/build/types/entities/source/a/SourceStructuredTypeEntity.d.ts +4 -8
- package/build/types/entities/source/a/SourceVariantTypeEntity.d.ts +3 -4
- 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/SourceFunctionTypeEntity.d.ts +3 -4
- package/build/types/entities/source/m/SourceStructuredTypeEntity.d.ts +4 -10
- package/build/types/entities/source/m/SourceVariantTypeEntity.d.ts +3 -4
- package/build/types/entities/translated/TranslatedAliasTypeEntity.d.ts +1 -0
- package/build/types/entities/translated/TranslatedFunctionTypeEntity.d.ts +3 -4
- package/build/types/entities/translated/TranslatedReducedTypeEntity.d.ts +3 -7
- package/build/types/entities/translated/TranslatedStructuredTypeEntity.d.ts +12 -32
- package/build/types/entities/translated/TranslatedVariantTypeEntity.d.ts +3 -4
- package/build/types/entities/translated/source/a/SourceTranslatedConstructorEntity.d.ts +11 -1
- package/build/types/services/a/CompletionService.d.ts +3 -2
- package/build/types/services/a/DefinitionService.d.ts +2 -1
- package/build/types/services/a/DisplayService.d.ts +1 -0
- package/build/types/services/a/NodeSemanticInfo.d.ts +2 -1
- package/build/types/services/a/signature-help/SignatureWithParameters.d.ts +5 -3
- package/build/types/services/common/definition/DefinitionService.d.ts +2 -1
- package/build/types/services/common/references/Types.d.ts +1 -1
- package/build/types/services/common/source-generation/SourceGenerationService.d.ts +2 -2
- package/build/types/services/m/DefinitionService.d.ts +2 -1
- package/build/types/services/m/source-generation/EntityToSyntax.d.ts +44 -0
- 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/SyntaxFactory.d.ts +13 -1
- package/build/types/tree/m/Types.d.ts +1 -1
- package/build/types/tree/m/WellKnownTagFlags.d.ts +2 -1
- package/build/types/ts-interop/Entities.d.ts +3 -3
- package/build/types/ts-interop/TypeEntities.d.ts +14 -22
- package/build/types/types/AliasType.d.ts +1 -0
- package/build/types/types/FunctionType.d.ts +3 -2
- package/build/types/types/ReducedType.d.ts +3 -5
- package/build/types/types/StandardTypes.d.ts +6 -4
- package/build/types/types/StructuredType.d.ts +6 -7
- package/build/types/types/SubstitutedBaseStructuredTypes.d.ts +12 -0
- package/build/types/types/Type.d.ts +3 -0
- package/build/types/types/VariantType.d.ts +3 -2
- package/package.json +1 -1
- package/build/types/entities/BaseAspectTypes.d.ts +0 -56
- package/build/types/entities/BaseObjectType.d.ts +0 -50
- package/build/types/entities/interfaces/m/ConstructorEntityM.d.ts +0 -10
- /package/build/types/services/{common → a}/source-generation/EntityToSyntax.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-SRTMMV6H.js";
|
|
5
|
+
import "./chunk-HEQJNVVU.js";
|
|
6
6
|
import {
|
|
7
7
|
__async
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-ZXXSGQS4.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-HEQJNVVU.js";
|
|
4
4
|
import {
|
|
5
5
|
AccessKind,
|
|
6
6
|
AccessedFunction_entity,
|
|
@@ -19,21 +19,21 @@ import {
|
|
|
19
19
|
ArtelSourceFileExtensions,
|
|
20
20
|
ArtelVersion,
|
|
21
21
|
BackingSpecialVariableEntityInfo,
|
|
22
|
-
BaseAspectTypes,
|
|
23
|
-
BaseConstructorEntity,
|
|
24
22
|
BaseDereferenceOperatorEntity,
|
|
25
23
|
BaseDestructorEntity,
|
|
26
24
|
BaseFieldEntity,
|
|
27
25
|
BaseIndexerEntity,
|
|
28
26
|
BaseKeywordPart,
|
|
29
27
|
BaseMethodEntity,
|
|
30
|
-
|
|
28
|
+
BaseNamedConstructorEntity,
|
|
31
29
|
BaseOperatorEntity,
|
|
30
|
+
BaseOrdinaryConstructorEntity,
|
|
32
31
|
BaseOrdinaryMethodEntity,
|
|
33
32
|
BaseOrdinaryPackageFunctionEntity,
|
|
34
33
|
BasePackageMemberAccessorEntity,
|
|
35
34
|
BaseProgramPackage,
|
|
36
35
|
BaseSourceFile,
|
|
36
|
+
BaseStructuredTypes,
|
|
37
37
|
BaseTextTranslationPackage,
|
|
38
38
|
BaseTranslationPackage,
|
|
39
39
|
BaseTypeMemberAccessorEntity,
|
|
@@ -52,8 +52,7 @@ import {
|
|
|
52
52
|
ConfigurationFileParser,
|
|
53
53
|
ConstructorParameterInitializingFieldInfo,
|
|
54
54
|
CycleFreeAliasedTypeResolutionResult,
|
|
55
|
-
|
|
56
|
-
CycleFreeBaseObjectTypeResolutionResult,
|
|
55
|
+
CycleFreeBaseStructuredTypesResolutionResult,
|
|
57
56
|
CycleFreeConstraintResolutionResult,
|
|
58
57
|
CycleFreeReductionSourceResolutionResult,
|
|
59
58
|
Debug,
|
|
@@ -137,8 +136,7 @@ import {
|
|
|
137
136
|
OperatorKind,
|
|
138
137
|
Option,
|
|
139
138
|
OriginalAliasedType,
|
|
140
|
-
|
|
141
|
-
OriginalBaseObjectType,
|
|
139
|
+
OriginalBaseStructuredTypes,
|
|
142
140
|
OriginalReductionSource,
|
|
143
141
|
OriginalTypeParameterConstraint,
|
|
144
142
|
OverriddenAndShadowedMembers,
|
|
@@ -310,7 +308,7 @@ import {
|
|
|
310
308
|
withoutQuotes,
|
|
311
309
|
withoutTemplateQuotes,
|
|
312
310
|
yieldTask
|
|
313
|
-
} from "../chunk-
|
|
311
|
+
} from "../chunk-ZXXSGQS4.js";
|
|
314
312
|
export {
|
|
315
313
|
AccessKind,
|
|
316
314
|
AccessedFunction_entity,
|
|
@@ -329,21 +327,21 @@ export {
|
|
|
329
327
|
ArtelSourceFileExtensions,
|
|
330
328
|
ArtelVersion,
|
|
331
329
|
BackingSpecialVariableEntityInfo,
|
|
332
|
-
BaseAspectTypes,
|
|
333
|
-
BaseConstructorEntity,
|
|
334
330
|
BaseDereferenceOperatorEntity,
|
|
335
331
|
BaseDestructorEntity,
|
|
336
332
|
BaseFieldEntity,
|
|
337
333
|
BaseIndexerEntity,
|
|
338
334
|
BaseKeywordPart,
|
|
339
335
|
BaseMethodEntity,
|
|
340
|
-
|
|
336
|
+
BaseNamedConstructorEntity,
|
|
341
337
|
BaseOperatorEntity,
|
|
338
|
+
BaseOrdinaryConstructorEntity,
|
|
342
339
|
BaseOrdinaryMethodEntity,
|
|
343
340
|
BaseOrdinaryPackageFunctionEntity,
|
|
344
341
|
BasePackageMemberAccessorEntity,
|
|
345
342
|
BaseProgramPackage,
|
|
346
343
|
BaseSourceFile,
|
|
344
|
+
BaseStructuredTypes,
|
|
347
345
|
BaseTextTranslationPackage,
|
|
348
346
|
BaseTranslationPackage,
|
|
349
347
|
BaseTypeMemberAccessorEntity,
|
|
@@ -363,8 +361,7 @@ export {
|
|
|
363
361
|
ConfigurationFileParser,
|
|
364
362
|
ConstructorParameterInitializingFieldInfo,
|
|
365
363
|
CycleFreeAliasedTypeResolutionResult,
|
|
366
|
-
|
|
367
|
-
CycleFreeBaseObjectTypeResolutionResult,
|
|
364
|
+
CycleFreeBaseStructuredTypesResolutionResult,
|
|
368
365
|
CycleFreeConstraintResolutionResult,
|
|
369
366
|
CycleFreeReductionSourceResolutionResult,
|
|
370
367
|
Debug,
|
|
@@ -447,8 +444,7 @@ export {
|
|
|
447
444
|
OperatorKind,
|
|
448
445
|
Option,
|
|
449
446
|
OriginalAliasedType,
|
|
450
|
-
|
|
451
|
-
OriginalBaseObjectType,
|
|
447
|
+
OriginalBaseStructuredTypes,
|
|
452
448
|
OriginalReductionSource,
|
|
453
449
|
OriginalTypeParameterConstraint,
|
|
454
450
|
OverriddenAndShadowedMembers,
|
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-SRTMMV6H.js";
|
|
10
|
+
import "../chunk-HEQJNVVU.js";
|
|
11
|
+
import "../chunk-ZXXSGQS4.js";
|
|
12
12
|
export {
|
|
13
13
|
CommandLineCompiler,
|
|
14
14
|
FileSystemUri,
|