@artel/artc 0.6.26022 → 0.6.26023
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 +36 -4
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +184 -317
- package/build/{chunk-PCY52KYM.js → chunk-HAB6M5SG.js} +1 -1
- package/build/{chunk-WXKN3LZG.js → chunk-IMUSLOYE.js} +2 -2
- package/build/{chunk-KCEJTV3Q.js → chunk-RQOGIK5O.js} +3886 -3587
- package/build/types/analysis/AccessibilityCheck.d.ts +2 -1
- package/build/types/analysis/Analyzer.d.ts +26 -28
- package/build/types/analysis/BaseMemberConflictsValidator.d.ts +1 -0
- package/build/types/analysis/DialectSpecificBoundTypeMemberLookup.d.ts +18 -0
- package/build/types/analysis/ReferencedPackagesCollector.d.ts +1 -0
- package/build/types/analysis/ResolvedImplementationPackage.d.ts +2 -6
- package/build/types/analysis/SpecialNameKey.d.ts +9 -3
- package/build/types/analysis/TypeMemberConflictsValidator.d.ts +2 -0
- package/build/types/analysis/TypeMemberImplementationChecker.d.ts +1 -0
- package/build/types/analysis/TypeMemberLookup.d.ts +12 -10
- package/build/types/analysis/a/Analyzer.d.ts +8 -14
- package/build/types/analysis/a/AutotypeCallExpressionMeaning.d.ts +3 -3
- package/build/types/analysis/a/BaseExpressionMeaning.d.ts +3 -3
- package/build/types/analysis/a/CallExpressionMeaning.d.ts +3 -3
- package/build/types/analysis/a/ConstructorCallResolver.d.ts +6 -6
- package/build/types/analysis/a/ModifierValidator.d.ts +33 -18
- package/build/types/analysis/a/OwnAndBaseConstructorCallsChecker.d.ts +4 -4
- package/build/types/analysis/a/OwnConstructorCallExpressionMeaning.d.ts +3 -3
- package/build/types/analysis/a/ReductionSourceMemberFinder.d.ts +0 -2
- package/build/types/analysis/a/ReservedNameDictionary.d.ts +3 -1
- package/build/types/analysis/a/TagMeaning.d.ts +3 -3
- package/build/types/analysis/a/TypeMemberLookup.d.ts +31 -0
- package/build/types/analysis/a/semantic-context/SemanticContextBase.d.ts +9 -8
- package/build/types/analysis/a/semantic-context/TypeSemanticContext.d.ts +5 -4
- package/build/types/analysis/m/TypeMemberLookup.d.ts +31 -0
- package/build/types/common/ArrayUtils.d.ts +7 -0
- package/build/types/common/LocalizationHelperA.d.ts +8 -7
- package/build/types/common/Range.d.ts +1 -0
- package/build/types/diagnostic/DiagnosticCode.d.ts +115 -113
- package/build/types/emitter/EntityMap.d.ts +0 -2
- package/build/types/entities/Entity.d.ts +1 -3
- package/build/types/entities/EntityKind.d.ts +4 -7
- package/build/types/entities/EntityLocalizationContext.d.ts +2 -4
- package/build/types/entities/Tag.d.ts +2 -2
- package/build/types/entities/TypeEntityMembers.d.ts +19 -10
- package/build/types/entities/TypeMemberEntity.d.ts +23 -16
- package/build/types/entities/TypeMemberKindFlags.d.ts +14 -0
- package/build/types/entities/index.d.ts +3 -0
- package/build/types/entities/interfaces/ConstructorEntity.d.ts +17 -24
- package/build/types/entities/interfaces/DereferenceOperatorEntity.d.ts +34 -17
- package/build/types/entities/interfaces/DestructorEntity.d.ts +17 -17
- package/build/types/entities/interfaces/FunctionEntity.d.ts +65 -17
- package/build/types/entities/interfaces/IndexerEntity.d.ts +36 -18
- package/build/types/entities/interfaces/OperatorEntity.d.ts +12 -0
- package/build/types/entities/interfaces/OrdinaryMethodEntity.d.ts +13 -0
- package/build/types/entities/interfaces/VariableEntity.d.ts +48 -15
- package/build/types/entities/interfaces/a/ConstructorEntityA.d.ts +17 -0
- package/build/types/entities/interfaces/a/DestructorEntityA.d.ts +16 -0
- package/build/types/entities/interfaces/a/index.d.ts +2 -0
- package/build/types/entities/interfaces/index.d.ts +2 -0
- package/build/types/entities/intrinsic/IntrinsicConstructorEntity.d.ts +14 -17
- package/build/types/entities/intrinsic/IntrinsicFunctionEntity.d.ts +3 -9
- package/build/types/entities/intrinsic/IntrinsicStructuredTypeEntity.d.ts +4 -4
- package/build/types/entities/intrinsic/IntrinsicVariableEntity.d.ts +1 -3
- package/build/types/entities/source/a/SourceConstructorEntity.d.ts +7 -7
- package/build/types/entities/source/a/SourceDereferenceOperatorEntity.d.ts +2 -3
- package/build/types/entities/source/a/SourceDestructorEntity.d.ts +6 -7
- package/build/types/entities/source/a/SourceFunctionEntity.d.ts +42 -6
- package/build/types/entities/source/a/SourceIndexerEntity.d.ts +2 -3
- package/build/types/entities/source/a/SourceReducedTypeEntity.d.ts +1 -3
- package/build/types/entities/source/a/SourceStructuredTypeEntity.d.ts +1 -3
- package/build/types/entities/source/a/SourceVariableEntity.d.ts +3 -9
- package/build/types/entities/translated/TranslatedConstructorEntity.d.ts +4 -30
- package/build/types/entities/translated/TranslatedDereferenceOperatorEntity.d.ts +3 -4
- package/build/types/entities/translated/TranslatedFunctionEntity.d.ts +8 -9
- package/build/types/entities/translated/TranslatedIndexerEntity.d.ts +2 -5
- package/build/types/entities/translated/TranslatedVariableEntity.d.ts +2 -4
- package/build/types/entities/translated/index.d.ts +0 -1
- package/build/types/entities/translated/source/a/SourceTranslatedConstructorEntity.d.ts +6 -4
- package/build/types/entities/translated/source/a/SourceTranslatedDestructorEntity.d.ts +7 -4
- package/build/types/entities/translated/source/a/SourceTranslatedFunctionEntity.d.ts +3 -2
- package/build/types/services/a/CompletionService.d.ts +0 -1
- package/build/types/services/a/DisplayService.d.ts +1 -4
- package/build/types/services/a/SourceFileItemsService.d.ts +0 -1
- package/build/types/services/a/signature-help/SignatureWithParameters.d.ts +2 -2
- package/build/types/services/common/display/BaseDisplayService.d.ts +0 -3
- package/build/types/services/common/display/DisplayService.d.ts +0 -3
- package/build/types/services/common/display/Types.d.ts +7 -45
- package/build/types/services/common/node-semantic-info/Types.d.ts +1 -6
- package/build/types/services/common/references/ReferencesService.d.ts +0 -1
- package/build/types/services/common/source-generation/EntityToSyntax.d.ts +0 -2
- package/build/types/tree/a/SyntaxToCode.d.ts +1 -3
- package/build/types/ts-interop/Entities.d.ts +204 -222
- package/build/types/ts-interop/TypeEntities.d.ts +145 -157
- package/build/types/types/StructuredType.d.ts +3 -0
- package/build/types/types/TypeMembers.d.ts +11 -37
- package/package.json +1 -1
- package/build/types/analysis/a/NodeTypeUtils.d.ts +0 -39
- package/build/types/entities/translated/TranslatedDestructorEntity.d.ts +0 -27
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-IMUSLOYE.js";
|
|
5
|
+
import "./chunk-HAB6M5SG.js";
|
|
6
6
|
import {
|
|
7
7
|
__async
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-RQOGIK5O.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-HAB6M5SG.js";
|
|
4
4
|
import {
|
|
5
5
|
AccessKind,
|
|
6
6
|
AccessedFunction_entity,
|
|
@@ -16,7 +16,9 @@ import {
|
|
|
16
16
|
ArtelSourceFileExtensions,
|
|
17
17
|
ArtelVersion,
|
|
18
18
|
BackingSpecialVariableEntityInfo,
|
|
19
|
+
BaseAspectTypes,
|
|
19
20
|
BaseKeywordPart,
|
|
21
|
+
BaseObjectType,
|
|
20
22
|
BaseProgramPackage,
|
|
21
23
|
BaseSourceFile,
|
|
22
24
|
BaseTextTranslationPackage,
|
|
@@ -34,8 +36,11 @@ import {
|
|
|
34
36
|
ConfigurationDirectoryNameSet,
|
|
35
37
|
ConfigurationDirectoryNamesByLocale,
|
|
36
38
|
ConfigurationFileParser,
|
|
39
|
+
ConstructorEntity,
|
|
37
40
|
ConstructorParameterInitializingFieldInfo,
|
|
38
41
|
CycleFreeAliasedTypeResolutionResult,
|
|
42
|
+
CycleFreeBaseAspectTypesResolutionResult,
|
|
43
|
+
CycleFreeBaseObjectTypeResolutionResult,
|
|
39
44
|
CycleFreeConstraintResolutionResult,
|
|
40
45
|
CycleFreeReductionSourceResolutionResult,
|
|
41
46
|
Debug,
|
|
@@ -47,6 +52,8 @@ import {
|
|
|
47
52
|
DefaultNamesOfDirectoriesToIgnore,
|
|
48
53
|
DefaultTsLibDeclarationsFileName,
|
|
49
54
|
DefinitionKind,
|
|
55
|
+
DereferenceOperatorEntity,
|
|
56
|
+
DestructorEntity,
|
|
50
57
|
Diagnostic,
|
|
51
58
|
DiagnosticAcceptorWithArgumentFactory,
|
|
52
59
|
DiagnosticCode,
|
|
@@ -70,6 +77,7 @@ import {
|
|
|
70
77
|
EntityNaming_named,
|
|
71
78
|
ErrorHandlingStrategy,
|
|
72
79
|
ExpressionAnalysisOptions,
|
|
80
|
+
FieldEntity,
|
|
73
81
|
FileSystemTree_exports,
|
|
74
82
|
GeneratedSourceFileScheme,
|
|
75
83
|
GenericCancellationToken,
|
|
@@ -78,13 +86,14 @@ import {
|
|
|
78
86
|
ImportEmitKind,
|
|
79
87
|
ImportedPackageNameTree,
|
|
80
88
|
InMemoryPackageScheme,
|
|
89
|
+
IndexerEntity,
|
|
81
90
|
InterfacePackageEntityInfo,
|
|
82
91
|
Interner,
|
|
83
92
|
IntrinsicConstructorEntity,
|
|
84
93
|
IntrinsicFieldEntity,
|
|
85
94
|
IntrinsicGetterEntity,
|
|
86
95
|
IntrinsicLocalVariableEntity,
|
|
87
|
-
|
|
96
|
+
IntrinsicOrdinaryMethodEntity,
|
|
88
97
|
IntrinsicPackageFunctionEntity,
|
|
89
98
|
IntrinsicPackageVariableEntity,
|
|
90
99
|
IntrinsicParameterEntity,
|
|
@@ -110,13 +119,19 @@ import {
|
|
|
110
119
|
MatchResult,
|
|
111
120
|
MatchResultParameter,
|
|
112
121
|
MaybeLazy,
|
|
122
|
+
MethodEntity,
|
|
123
|
+
MethodKind,
|
|
113
124
|
MiddleKeywordPart,
|
|
114
125
|
Name,
|
|
115
126
|
NameFlags,
|
|
116
127
|
NodeModulesDirectoryName,
|
|
128
|
+
OperatorEntity,
|
|
117
129
|
OperatorKind,
|
|
118
130
|
Option,
|
|
131
|
+
OrdinaryMethodEntity,
|
|
119
132
|
OriginalAliasedType,
|
|
133
|
+
OriginalBaseAspectTypes,
|
|
134
|
+
OriginalBaseObjectType,
|
|
120
135
|
OriginalReductionSource,
|
|
121
136
|
OriginalTypeParameterConstraint,
|
|
122
137
|
PackageConfigurationEn_exports,
|
|
@@ -192,6 +207,7 @@ import {
|
|
|
192
207
|
TypeEntityKind,
|
|
193
208
|
TypeEntityMembers,
|
|
194
209
|
TypeMemberEntity,
|
|
210
|
+
TypeMemberKindFlags,
|
|
195
211
|
TypeMemberLookup,
|
|
196
212
|
TypeMemberLookupContext,
|
|
197
213
|
TypeMemberLookupOptions,
|
|
@@ -281,7 +297,7 @@ import {
|
|
|
281
297
|
withoutQuotes,
|
|
282
298
|
withoutTemplateQuotes,
|
|
283
299
|
yieldTask
|
|
284
|
-
} from "../chunk-
|
|
300
|
+
} from "../chunk-RQOGIK5O.js";
|
|
285
301
|
export {
|
|
286
302
|
AccessKind,
|
|
287
303
|
AccessedFunction_entity,
|
|
@@ -297,7 +313,9 @@ export {
|
|
|
297
313
|
ArtelSourceFileExtensions,
|
|
298
314
|
ArtelVersion,
|
|
299
315
|
BackingSpecialVariableEntityInfo,
|
|
316
|
+
BaseAspectTypes,
|
|
300
317
|
BaseKeywordPart,
|
|
318
|
+
BaseObjectType,
|
|
301
319
|
BaseProgramPackage,
|
|
302
320
|
BaseSourceFile,
|
|
303
321
|
BaseTextTranslationPackage,
|
|
@@ -316,8 +334,11 @@ export {
|
|
|
316
334
|
ConfigurationDirectoryNameSet,
|
|
317
335
|
ConfigurationDirectoryNamesByLocale,
|
|
318
336
|
ConfigurationFileParser,
|
|
337
|
+
ConstructorEntity,
|
|
319
338
|
ConstructorParameterInitializingFieldInfo,
|
|
320
339
|
CycleFreeAliasedTypeResolutionResult,
|
|
340
|
+
CycleFreeBaseAspectTypesResolutionResult,
|
|
341
|
+
CycleFreeBaseObjectTypeResolutionResult,
|
|
321
342
|
CycleFreeConstraintResolutionResult,
|
|
322
343
|
CycleFreeReductionSourceResolutionResult,
|
|
323
344
|
Debug,
|
|
@@ -329,6 +350,8 @@ export {
|
|
|
329
350
|
DefaultNamesOfDirectoriesToIgnore,
|
|
330
351
|
DefaultTsLibDeclarationsFileName,
|
|
331
352
|
DefinitionKind,
|
|
353
|
+
DereferenceOperatorEntity,
|
|
354
|
+
DestructorEntity,
|
|
332
355
|
Diagnostic,
|
|
333
356
|
DiagnosticAcceptorWithArgumentFactory,
|
|
334
357
|
DiagnosticCode,
|
|
@@ -352,6 +375,7 @@ export {
|
|
|
352
375
|
EntityNaming_named,
|
|
353
376
|
ErrorHandlingStrategy,
|
|
354
377
|
ExpressionAnalysisOptions,
|
|
378
|
+
FieldEntity,
|
|
355
379
|
GeneratedSourceFileScheme,
|
|
356
380
|
GenericCancellationToken,
|
|
357
381
|
HelperPhraseKind,
|
|
@@ -359,13 +383,14 @@ export {
|
|
|
359
383
|
ImportEmitKind,
|
|
360
384
|
ImportedPackageNameTree,
|
|
361
385
|
InMemoryPackageScheme,
|
|
386
|
+
IndexerEntity,
|
|
362
387
|
InterfacePackageEntityInfo,
|
|
363
388
|
Interner,
|
|
364
389
|
IntrinsicConstructorEntity,
|
|
365
390
|
IntrinsicFieldEntity,
|
|
366
391
|
IntrinsicGetterEntity,
|
|
367
392
|
IntrinsicLocalVariableEntity,
|
|
368
|
-
|
|
393
|
+
IntrinsicOrdinaryMethodEntity,
|
|
369
394
|
IntrinsicPackageFunctionEntity,
|
|
370
395
|
IntrinsicPackageVariableEntity,
|
|
371
396
|
IntrinsicParameterEntity,
|
|
@@ -391,13 +416,19 @@ export {
|
|
|
391
416
|
MatchResult,
|
|
392
417
|
MatchResultParameter,
|
|
393
418
|
MaybeLazy,
|
|
419
|
+
MethodEntity,
|
|
420
|
+
MethodKind,
|
|
394
421
|
MiddleKeywordPart,
|
|
395
422
|
Name,
|
|
396
423
|
NameFlags,
|
|
397
424
|
NodeModulesDirectoryName,
|
|
425
|
+
OperatorEntity,
|
|
398
426
|
OperatorKind,
|
|
399
427
|
Option,
|
|
428
|
+
OrdinaryMethodEntity,
|
|
400
429
|
OriginalAliasedType,
|
|
430
|
+
OriginalBaseAspectTypes,
|
|
431
|
+
OriginalBaseObjectType,
|
|
401
432
|
OriginalReductionSource,
|
|
402
433
|
OriginalTypeParameterConstraint,
|
|
403
434
|
PackageDialect,
|
|
@@ -470,6 +501,7 @@ export {
|
|
|
470
501
|
TypeEntityKind,
|
|
471
502
|
TypeEntityMembers,
|
|
472
503
|
TypeMemberEntity,
|
|
504
|
+
TypeMemberKindFlags,
|
|
473
505
|
TypeMemberLookup,
|
|
474
506
|
TypeMemberLookupContext,
|
|
475
507
|
TypeMemberLookupOptions,
|
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-IMUSLOYE.js";
|
|
10
|
+
import "../chunk-HAB6M5SG.js";
|
|
11
|
+
import "../chunk-RQOGIK5O.js";
|
|
12
12
|
export {
|
|
13
13
|
CommandLineCompiler,
|
|
14
14
|
FileSystemUri,
|