@artel/artc 0.9.26026-pre-release → 0.9.26029-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 +8 -14
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +786 -287
- package/build/{chunk-OTUGMPBD.js → chunk-EFDSEPVX.js} +2 -2
- package/build/{chunk-XMSHAJ5M.js → chunk-LKJKS5OJ.js} +7086 -6876
- package/build/{chunk-JXT5ZWQJ.js → chunk-RE36QMI4.js} +1 -1
- package/build/types/analysis/AccessedFunction.d.ts +7 -2
- package/build/types/analysis/AccessedFunctionParameter.d.ts +7 -1
- package/build/types/analysis/Analyzer.d.ts +14 -14
- package/build/types/analysis/ArgumentsToParametersMatcher.d.ts +5 -2
- package/build/types/analysis/BaseOverloadResolver.d.ts +64 -11
- package/build/types/analysis/TypeMemberLookup.d.ts +0 -1
- package/build/types/analysis/WellKnownDeclarations.d.ts +93 -90
- package/build/types/analysis/a/Analyzer.d.ts +2 -2
- package/build/types/analysis/a/ArgumentToParameterMatchResult.d.ts +3 -3
- package/build/types/analysis/a/AutotypeCallExpressionMeaning.d.ts +3 -2
- package/build/types/analysis/a/BaseExpressionMeaning.d.ts +3 -2
- package/build/types/analysis/a/CallExpressionMeaning.d.ts +12 -6
- package/build/types/analysis/a/ConstructorCallResolver.d.ts +20 -7
- package/build/types/analysis/a/FunctionAccessResolver.d.ts +19 -5
- package/build/types/analysis/a/IndexedAccessExpressionMeaning.d.ts +12 -4
- package/build/types/analysis/a/OverloadResolver.d.ts +5 -5
- package/build/types/analysis/a/OwnAndBaseConstructorCallsChecker.d.ts +1 -1
- package/build/types/analysis/a/OwnConstructorCallExpressionMeaning.d.ts +3 -2
- package/build/types/analysis/a/SourceFileAnalyzer.d.ts +4 -4
- package/build/types/analysis/a/TagMeaning.d.ts +6 -4
- package/build/types/analysis/a/semantic-context/SourceFileSemanticContext.d.ts +1 -0
- package/build/types/analysis/m/Analyzer.d.ts +15 -8
- package/build/types/analysis/m/ArgumentToParameterMatchResult.d.ts +3 -3
- package/build/types/analysis/m/CallExpressionMeaning.d.ts +12 -6
- package/build/types/analysis/m/ConstructorCallResolver.d.ts +20 -7
- package/build/types/analysis/m/FunctionAccessResolver.d.ts +19 -5
- package/build/types/analysis/m/IndexedAccessExpressionMeaning.d.ts +12 -4
- package/build/types/analysis/m/OverloadResolver.d.ts +4 -4
- package/build/types/analysis/m/OwnAndBaseConstructorCallsChecker.d.ts +1 -1
- package/build/types/analysis/m/SourceFileAnalyzer.d.ts +5 -5
- package/build/types/analysis/m/SourcePackageMembersCreator.d.ts +1 -1
- package/build/types/analysis/m/SourceTypeMembersCreator.d.ts +2 -2
- package/build/types/analysis/m/TagMeaning.d.ts +6 -4
- package/build/types/analysis/m/TreeQuery.d.ts +1 -6
- package/build/types/analysis/m/semantic-context/SemanticContextBuilder.d.ts +1 -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 +30 -21
- package/build/types/emitter/EmitterContext.d.ts +2 -4
- package/build/types/emitter/Entities.d.ts +1 -1
- package/build/types/emitter/EntityMap.d.ts +5 -1
- package/build/types/emitter/IrBuilderA.d.ts +1 -1
- package/build/types/emitter/IrBuilderM.d.ts +1 -2
- package/build/types/emitter/IrFactory.d.ts +2 -2
- 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/index.d.ts +1 -2
- package/build/types/entities/interfaces/AliasTypeEntity.d.ts +1 -1
- package/build/types/entities/interfaces/FunctionTypeEntity.d.ts +3 -4
- package/build/types/entities/interfaces/ReducedTypeEntity.d.ts +5 -10
- package/build/types/entities/interfaces/StructuredTypeEntity.d.ts +3 -9
- package/build/types/entities/interfaces/VariantTypeEntity.d.ts +3 -4
- package/build/types/entities/intrinsic/IntrinsicStructuredTypeEntity.d.ts +2 -2
- 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 +5 -3
- package/build/types/entities/source/m/SourceConstructorEntity.d.ts +2 -2
- package/build/types/entities/source/m/SourceDestructorEntity.d.ts +2 -2
- package/build/types/entities/source/m/SourceFunctionEntity.d.ts +8 -8
- package/build/types/entities/source/m/SourceFunctionTypeEntity.d.ts +3 -4
- package/build/types/entities/source/m/SourceGetterEntity.d.ts +8 -8
- package/build/types/entities/source/m/SourceSetterEntity.d.ts +8 -8
- package/build/types/entities/source/m/SourceStructuredTypeEntity.d.ts +7 -13
- package/build/types/entities/source/m/SourceTypeExtensionEntity.d.ts +35 -0
- package/build/types/entities/source/m/SourceVariableEntity.d.ts +6 -6
- package/build/types/entities/source/m/SourceVariantTypeEntity.d.ts +5 -6
- package/build/types/entities/source/m/index.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/services/a/DefinitionService.d.ts +2 -1
- package/build/types/services/a/DisplayService.d.ts +0 -1
- package/build/types/services/common/definition/DefinitionService.d.ts +2 -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/DisplayService.d.ts +2 -2
- 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 +1 -1
- package/build/types/tree/a/Nodes.d.ts +8 -8
- package/build/types/tree/m/KeywordKind.d.ts +1 -1
- package/build/types/tree/m/NodeKind.d.ts +64 -66
- package/build/types/tree/m/Nodes.d.ts +17 -50
- package/build/types/tree/m/SyntaxFactory.d.ts +13 -1
- package/build/types/tree/m/SyntaxToCode.d.ts +0 -2
- package/build/types/tree/m/Types.d.ts +2 -2
- package/build/types/tree/m/Utils.d.ts +1 -3
- package/build/types/tree/m/WellKnownTagFlags.d.ts +23 -0
- package/build/types/tree/m/index.d.ts +1 -0
- package/build/types/ts-interop/TypeEntities.d.ts +12 -22
- 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/TypeMembers.d.ts +12 -4
- package/build/types/types/VariantType.d.ts +3 -2
- package/package.json +1 -1
- package/build/types/analysis/a/SourceMatcherArgument.d.ts +0 -12
- package/build/types/analysis/m/ModifierFlags.d.ts +0 -20
- package/build/types/analysis/m/SourceMatcherArgument.d.ts +0 -12
- package/build/types/entities/BaseAspectTypes.d.ts +0 -56
- package/build/types/entities/BaseObjectType.d.ts +0 -50
- /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-EFDSEPVX.js";
|
|
5
|
+
import "./chunk-RE36QMI4.js";
|
|
6
6
|
import {
|
|
7
7
|
__async
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-LKJKS5OJ.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-RE36QMI4.js";
|
|
4
4
|
import {
|
|
5
5
|
AccessKind,
|
|
6
6
|
AccessedFunction_entity,
|
|
@@ -19,7 +19,6 @@ import {
|
|
|
19
19
|
ArtelSourceFileExtensions,
|
|
20
20
|
ArtelVersion,
|
|
21
21
|
BackingSpecialVariableEntityInfo,
|
|
22
|
-
BaseAspectTypes,
|
|
23
22
|
BaseConstructorEntity,
|
|
24
23
|
BaseDereferenceOperatorEntity,
|
|
25
24
|
BaseDestructorEntity,
|
|
@@ -27,13 +26,13 @@ import {
|
|
|
27
26
|
BaseIndexerEntity,
|
|
28
27
|
BaseKeywordPart,
|
|
29
28
|
BaseMethodEntity,
|
|
30
|
-
BaseObjectType,
|
|
31
29
|
BaseOperatorEntity,
|
|
32
30
|
BaseOrdinaryMethodEntity,
|
|
33
31
|
BaseOrdinaryPackageFunctionEntity,
|
|
34
32
|
BasePackageMemberAccessorEntity,
|
|
35
33
|
BaseProgramPackage,
|
|
36
34
|
BaseSourceFile,
|
|
35
|
+
BaseStructuredTypes,
|
|
37
36
|
BaseTextTranslationPackage,
|
|
38
37
|
BaseTranslationPackage,
|
|
39
38
|
BaseTypeMemberAccessorEntity,
|
|
@@ -52,8 +51,7 @@ import {
|
|
|
52
51
|
ConfigurationFileParser,
|
|
53
52
|
ConstructorParameterInitializingFieldInfo,
|
|
54
53
|
CycleFreeAliasedTypeResolutionResult,
|
|
55
|
-
|
|
56
|
-
CycleFreeBaseObjectTypeResolutionResult,
|
|
54
|
+
CycleFreeBaseStructuredTypesResolutionResult,
|
|
57
55
|
CycleFreeConstraintResolutionResult,
|
|
58
56
|
CycleFreeReductionSourceResolutionResult,
|
|
59
57
|
Debug,
|
|
@@ -137,8 +135,7 @@ import {
|
|
|
137
135
|
OperatorKind,
|
|
138
136
|
Option,
|
|
139
137
|
OriginalAliasedType,
|
|
140
|
-
|
|
141
|
-
OriginalBaseObjectType,
|
|
138
|
+
OriginalBaseStructuredTypes,
|
|
142
139
|
OriginalReductionSource,
|
|
143
140
|
OriginalTypeParameterConstraint,
|
|
144
141
|
OverriddenAndShadowedMembers,
|
|
@@ -310,7 +307,7 @@ import {
|
|
|
310
307
|
withoutQuotes,
|
|
311
308
|
withoutTemplateQuotes,
|
|
312
309
|
yieldTask
|
|
313
|
-
} from "../chunk-
|
|
310
|
+
} from "../chunk-LKJKS5OJ.js";
|
|
314
311
|
export {
|
|
315
312
|
AccessKind,
|
|
316
313
|
AccessedFunction_entity,
|
|
@@ -329,7 +326,6 @@ export {
|
|
|
329
326
|
ArtelSourceFileExtensions,
|
|
330
327
|
ArtelVersion,
|
|
331
328
|
BackingSpecialVariableEntityInfo,
|
|
332
|
-
BaseAspectTypes,
|
|
333
329
|
BaseConstructorEntity,
|
|
334
330
|
BaseDereferenceOperatorEntity,
|
|
335
331
|
BaseDestructorEntity,
|
|
@@ -337,13 +333,13 @@ export {
|
|
|
337
333
|
BaseIndexerEntity,
|
|
338
334
|
BaseKeywordPart,
|
|
339
335
|
BaseMethodEntity,
|
|
340
|
-
BaseObjectType,
|
|
341
336
|
BaseOperatorEntity,
|
|
342
337
|
BaseOrdinaryMethodEntity,
|
|
343
338
|
BaseOrdinaryPackageFunctionEntity,
|
|
344
339
|
BasePackageMemberAccessorEntity,
|
|
345
340
|
BaseProgramPackage,
|
|
346
341
|
BaseSourceFile,
|
|
342
|
+
BaseStructuredTypes,
|
|
347
343
|
BaseTextTranslationPackage,
|
|
348
344
|
BaseTranslationPackage,
|
|
349
345
|
BaseTypeMemberAccessorEntity,
|
|
@@ -363,8 +359,7 @@ export {
|
|
|
363
359
|
ConfigurationFileParser,
|
|
364
360
|
ConstructorParameterInitializingFieldInfo,
|
|
365
361
|
CycleFreeAliasedTypeResolutionResult,
|
|
366
|
-
|
|
367
|
-
CycleFreeBaseObjectTypeResolutionResult,
|
|
362
|
+
CycleFreeBaseStructuredTypesResolutionResult,
|
|
368
363
|
CycleFreeConstraintResolutionResult,
|
|
369
364
|
CycleFreeReductionSourceResolutionResult,
|
|
370
365
|
Debug,
|
|
@@ -447,8 +442,7 @@ export {
|
|
|
447
442
|
OperatorKind,
|
|
448
443
|
Option,
|
|
449
444
|
OriginalAliasedType,
|
|
450
|
-
|
|
451
|
-
OriginalBaseObjectType,
|
|
445
|
+
OriginalBaseStructuredTypes,
|
|
452
446
|
OriginalReductionSource,
|
|
453
447
|
OriginalTypeParameterConstraint,
|
|
454
448
|
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-EFDSEPVX.js";
|
|
10
|
+
import "../chunk-RE36QMI4.js";
|
|
11
|
+
import "../chunk-LKJKS5OJ.js";
|
|
12
12
|
export {
|
|
13
13
|
CommandLineCompiler,
|
|
14
14
|
FileSystemUri,
|