@artel/artc 0.9.26023-pre-release → 0.9.26025-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 +4 -8
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +2077 -1997
- package/build/{chunk-2BLIDCVA.js → chunk-2WJO6BHA.js} +1 -1
- package/build/{chunk-GLYRYS42.js → chunk-3ZZBPFOL.js} +2 -2
- package/build/{chunk-4YCJNPUR.js → chunk-SI24BVXL.js} +7437 -8175
- package/build/types/analysis/Analyzer.d.ts +3 -3
- package/build/types/analysis/{m/ArgumentsToParametersMatcher.d.ts → ArgumentsToParametersMatcher.d.ts} +3 -12
- package/build/types/analysis/BaseOverloadResolver.d.ts +77 -0
- package/build/types/analysis/DialectSpecificBoundTypeMemberLookup.d.ts +1 -2
- package/build/types/analysis/PackageMemberLookup.d.ts +2 -2
- package/build/types/analysis/ReferencedPackagesCollector.d.ts +1 -1
- package/build/types/analysis/TypeArgumentInferrerCore.d.ts +34 -0
- package/build/types/analysis/TypeAssignabilityFlags.d.ts +5 -2
- package/build/types/analysis/TypeMemberLookup.d.ts +7 -27
- package/build/types/analysis/a/Analyzer.d.ts +3 -3
- package/build/types/analysis/a/OverloadResolver.d.ts +10 -58
- package/build/types/analysis/a/ResolvedTranslationPackage.d.ts +3 -3
- package/build/types/analysis/a/SourceMatcherArgument.d.ts +12 -0
- package/build/types/analysis/a/TreeQuery.d.ts +1 -1
- package/build/types/analysis/a/TypeArgumentInferrer.d.ts +1 -21
- package/build/types/analysis/a/TypeMemberLookup.d.ts +1 -3
- package/build/types/analysis/a/semantic-context/SemanticContext.d.ts +2 -2
- package/build/types/analysis/a/semantic-context/SemanticContextBase.d.ts +6 -28
- package/build/types/analysis/a/semantic-context/SemanticContextBuilder.d.ts +7 -8
- package/build/types/analysis/a/semantic-context/SemanticContextWithParent.d.ts +3 -2
- package/build/types/analysis/a/semantic-context/SourceFileSemanticContext.d.ts +4 -4
- package/build/types/analysis/a/semantic-context/TypeSemanticContext.d.ts +23 -44
- package/build/types/analysis/m/Analyzer.d.ts +3 -3
- package/build/types/analysis/m/OverloadResolver.d.ts +10 -58
- package/build/types/analysis/m/OwnAndBaseConstructorCallsChecker.d.ts +2 -2
- package/build/types/analysis/m/ResolvedTranslationPackage.d.ts +3 -3
- package/build/types/analysis/m/SourceMatcherArgument.d.ts +12 -0
- package/build/types/analysis/m/TreeQuery.d.ts +2 -3
- package/build/types/analysis/m/TypeArgumentInferrer.d.ts +1 -20
- package/build/types/analysis/m/TypeMemberLookup.d.ts +1 -4
- package/build/types/analysis/m/semantic-context/SemanticContextBase.d.ts +6 -28
- package/build/types/analysis/m/semantic-context/SemanticContextWithParent.d.ts +3 -2
- package/build/types/analysis/m/semantic-context/SourceFileSemanticContext.d.ts +4 -4
- package/build/types/analysis/m/semantic-context/StaticDeclarationSemanticContext.d.ts +2 -2
- package/build/types/analysis/m/semantic-context/TypeSemanticContext.d.ts +5 -5
- package/build/types/diagnostic/DiagnosticCode.d.ts +258 -256
- package/build/types/emitter/EmitterContext.d.ts +1 -1
- package/build/types/emitter/EntityMap.d.ts +2 -2
- package/build/types/entities/Entity.d.ts +9 -16
- package/build/types/entities/EntityKind.d.ts +2 -3
- package/build/types/entities/EntityLocalizationContext.d.ts +9 -6
- package/build/types/entities/PackageEntityMembers.d.ts +7 -8
- package/build/types/entities/TypeEntity.d.ts +4 -2
- package/build/types/entities/TypeMemberEntity.d.ts +2 -2
- package/build/types/entities/interfaces/DereferenceOperatorEntity.d.ts +3 -3
- package/build/types/entities/interfaces/ExtensionTypeEntity.d.ts +25 -0
- package/build/types/entities/interfaces/FunctionEntity.d.ts +3 -3
- package/build/types/entities/interfaces/IndexerEntity.d.ts +3 -3
- package/build/types/entities/interfaces/TypeParameterEntity.d.ts +2 -3
- package/build/types/entities/interfaces/VariableEntity.d.ts +9 -4
- package/build/types/entities/interfaces/index.d.ts +1 -1
- package/build/types/entities/intrinsic/IntrinsicConstructorEntity.d.ts +4 -4
- package/build/types/entities/intrinsic/IntrinsicFunctionEntity.d.ts +3 -3
- package/build/types/entities/intrinsic/IntrinsicVariableEntity.d.ts +3 -3
- package/build/types/entities/source/a/SourceConstructorEntity.d.ts +2 -2
- package/build/types/entities/source/a/SourceDereferenceOperatorEntity.d.ts +2 -2
- package/build/types/entities/source/a/SourceDestructorEntity.d.ts +2 -2
- package/build/types/entities/source/a/SourceFunctionEntity.d.ts +3 -3
- package/build/types/entities/source/a/SourceGetterEntity.d.ts +4 -4
- package/build/types/entities/source/a/SourceIndexerEntity.d.ts +2 -2
- package/build/types/entities/source/a/SourceSetterEntity.d.ts +4 -4
- package/build/types/entities/source/a/SourceTypeExtensionEntity.d.ts +16 -9
- package/build/types/entities/source/a/SourceVariableEntity.d.ts +4 -4
- 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 +4 -4
- package/build/types/entities/source/m/SourceGetterEntity.d.ts +4 -4
- package/build/types/entities/source/m/SourceIndexerEntity.d.ts +2 -2
- package/build/types/entities/source/m/SourceSetterEntity.d.ts +4 -4
- package/build/types/entities/source/m/SourceVariableEntity.d.ts +6 -7
- package/build/types/entities/translated/TranslatedConstructorEntity.d.ts +2 -2
- package/build/types/entities/translated/TranslatedDereferenceOperatorEntity.d.ts +3 -3
- package/build/types/entities/translated/TranslatedExtensionTypeEntity.d.ts +26 -0
- package/build/types/entities/translated/TranslatedFunctionEntity.d.ts +6 -6
- package/build/types/entities/translated/TranslatedIndexerEntity.d.ts +5 -5
- package/build/types/entities/translated/TranslatedTypeMemberAccessorEntity.d.ts +2 -2
- package/build/types/entities/translated/TranslatedVariableEntity.d.ts +3 -3
- package/build/types/entities/translated/index.d.ts +1 -1
- package/build/types/entities/translated/source/a/SourceTranslatedConstructorEntity.d.ts +2 -2
- package/build/types/entities/translated/source/a/SourceTranslatedDestructorEntity.d.ts +2 -2
- package/build/types/entities/translated/source/a/SourceTranslatedExtensionTypeEntity.d.ts +14 -0
- package/build/types/entities/translated/source/a/SourceTranslatedFunctionEntity.d.ts +2 -2
- package/build/types/entities/translated/source/a/SourceTranslatedIndexerEntity.d.ts +2 -2
- package/build/types/entities/translated/source/a/index.d.ts +1 -1
- package/build/types/entities/translated/source/m/SourceTranslatedDestructorEntity.d.ts +3 -3
- package/build/types/entities/translated/source/m/SourceTranslatedExtensionTypeEntity.d.ts +14 -0
- package/build/types/entities/translated/source/m/SourceTranslatedFunctionEntity.d.ts +3 -3
- package/build/types/entities/translated/source/m/SourceTranslatedIndexerEntity.d.ts +3 -3
- package/build/types/entities/translated/source/m/index.d.ts +1 -0
- package/build/types/services/CustomRequests.d.ts +10 -0
- package/build/types/services/LanguageServer.d.ts +2 -0
- package/build/types/services/a/CompletionService.d.ts +1 -0
- package/build/types/services/a/DisplayService.d.ts +2 -2
- package/build/types/services/a/HoverService.d.ts +1 -0
- package/build/types/services/a/NodeSemanticInfo.d.ts +2 -5
- package/build/types/services/common/completion/Types.d.ts +6 -5
- package/build/types/services/common/display/BaseDisplayService.d.ts +0 -1
- package/build/types/services/common/display/DisplayService.d.ts +1 -2
- package/build/types/services/common/display/Types.d.ts +72 -12
- package/build/types/services/common/hover/HoverService.d.ts +2 -0
- package/build/types/services/common/hover/Types.d.ts +2 -4
- package/build/types/services/common/node-semantic-info/NodeSemanticInfoService.d.ts +10 -0
- package/build/types/services/common/node-semantic-info/Types.d.ts +4 -14
- package/build/types/services/common/source-generation/EntityToSyntax.d.ts +3 -0
- package/build/types/services/m/DisplayService.d.ts +2 -2
- package/build/types/services/m/HoverService.d.ts +1 -0
- package/build/types/services/m/NodeSemanticInfo.d.ts +2 -5
- package/build/types/tree/a/KeywordKind.d.ts +59 -58
- package/build/types/tree/a/NodeKind.d.ts +123 -125
- package/build/types/tree/a/Nodes.d.ts +15 -33
- package/build/types/tree/a/SyntaxFactory.d.ts +1 -0
- package/build/types/tree/a/SyntaxToCode.d.ts +1 -0
- package/build/types/ts-interop/Entities.d.ts +10 -10
- package/build/types/types/ExtensionType.d.ts +18 -0
- package/build/types/types/Type.d.ts +3 -1
- package/build/types/types/TypeFactory.d.ts +3 -1
- package/build/types/types/TypeMembers.d.ts +2 -1
- package/build/types/types/index.d.ts +1 -0
- package/package.json +1 -1
- package/build/types/analysis/a/ArgumentsToParametersMatcher.d.ts +0 -40
- package/build/types/entities/interfaces/TypeExtensionEntity.d.ts +0 -19
- package/build/types/entities/translated/TranslatedTypeExtensionEntity.d.ts +0 -19
- package/build/types/entities/translated/source/a/SourceTranslatedTypeExtensionEntity.d.ts +0 -9
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-3ZZBPFOL.js";
|
|
5
|
+
import "./chunk-2WJO6BHA.js";
|
|
6
6
|
import {
|
|
7
7
|
__async
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-SI24BVXL.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-2WJO6BHA.js";
|
|
4
4
|
import {
|
|
5
5
|
AccessKind,
|
|
6
6
|
AccessedFunction_entity,
|
|
@@ -60,6 +60,7 @@ import {
|
|
|
60
60
|
DefaultConstructorEntity,
|
|
61
61
|
DefaultConstructorEntityInfo,
|
|
62
62
|
DefaultConstructorParameterForBaseConstructorInfo,
|
|
63
|
+
DefaultConstructorParameterSpecialVariableEntityInfo,
|
|
63
64
|
DefaultDialect,
|
|
64
65
|
DefaultLocale,
|
|
65
66
|
DefaultNamesOfDirectoriesToIgnore,
|
|
@@ -220,7 +221,6 @@ import {
|
|
|
220
221
|
TypeMemberLookupContext,
|
|
221
222
|
TypeMemberLookupOptions,
|
|
222
223
|
TypeParameterConstraint,
|
|
223
|
-
TypeWithMembersOrExtensionEntity,
|
|
224
224
|
UnfinishedIntrinsicAnonymousFunctionTypeEntity,
|
|
225
225
|
UnfinishedIntrinsicAnonymousStructuredTypeEntity,
|
|
226
226
|
UnfinishedIntrinsicPackageStructuredTypeEntity,
|
|
@@ -258,7 +258,6 @@ import {
|
|
|
258
258
|
isBinaryOperatorKind,
|
|
259
259
|
isComputedEntity,
|
|
260
260
|
isComputedEntityNoCast,
|
|
261
|
-
isEntityWithFictiveTypeParameters,
|
|
262
261
|
isEntityWithParameters,
|
|
263
262
|
isEntityWithTypeParameters,
|
|
264
263
|
isJavaScriptIdentifier,
|
|
@@ -279,7 +278,6 @@ import {
|
|
|
279
278
|
isTypeEntity,
|
|
280
279
|
isTypeEntityWithMembers,
|
|
281
280
|
isTypeMemberEntity,
|
|
282
|
-
isTypeWithMembersOrExtensionEntity,
|
|
283
281
|
isUnaryOperatorKind,
|
|
284
282
|
isVariableEntityWithExplicitAccessors,
|
|
285
283
|
isVariableEntityWithImplicitAccessors,
|
|
@@ -312,7 +310,7 @@ import {
|
|
|
312
310
|
withoutQuotes,
|
|
313
311
|
withoutTemplateQuotes,
|
|
314
312
|
yieldTask
|
|
315
|
-
} from "../chunk-
|
|
313
|
+
} from "../chunk-SI24BVXL.js";
|
|
316
314
|
export {
|
|
317
315
|
AccessKind,
|
|
318
316
|
AccessedFunction_entity,
|
|
@@ -373,6 +371,7 @@ export {
|
|
|
373
371
|
DefaultConstructorEntity,
|
|
374
372
|
DefaultConstructorEntityInfo,
|
|
375
373
|
DefaultConstructorParameterForBaseConstructorInfo,
|
|
374
|
+
DefaultConstructorParameterSpecialVariableEntityInfo,
|
|
376
375
|
DefaultDialect,
|
|
377
376
|
DefaultLocale,
|
|
378
377
|
DefaultNamesOfDirectoriesToIgnore,
|
|
@@ -529,7 +528,6 @@ export {
|
|
|
529
528
|
TypeMemberLookupContext,
|
|
530
529
|
TypeMemberLookupOptions,
|
|
531
530
|
TypeParameterConstraint,
|
|
532
|
-
TypeWithMembersOrExtensionEntity,
|
|
533
531
|
UnfinishedIntrinsicAnonymousFunctionTypeEntity,
|
|
534
532
|
UnfinishedIntrinsicAnonymousStructuredTypeEntity,
|
|
535
533
|
UnfinishedIntrinsicPackageStructuredTypeEntity,
|
|
@@ -569,7 +567,6 @@ export {
|
|
|
569
567
|
isBinaryOperatorKind,
|
|
570
568
|
isComputedEntity,
|
|
571
569
|
isComputedEntityNoCast,
|
|
572
|
-
isEntityWithFictiveTypeParameters,
|
|
573
570
|
isEntityWithParameters,
|
|
574
571
|
isEntityWithTypeParameters,
|
|
575
572
|
isJavaScriptIdentifier,
|
|
@@ -590,7 +587,6 @@ export {
|
|
|
590
587
|
isTypeEntity,
|
|
591
588
|
isTypeEntityWithMembers,
|
|
592
589
|
isTypeMemberEntity,
|
|
593
|
-
isTypeWithMembersOrExtensionEntity,
|
|
594
590
|
isUnaryOperatorKind,
|
|
595
591
|
isVariableEntityWithExplicitAccessors,
|
|
596
592
|
isVariableEntityWithImplicitAccessors,
|
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-3ZZBPFOL.js";
|
|
10
|
+
import "../chunk-2WJO6BHA.js";
|
|
11
|
+
import "../chunk-SI24BVXL.js";
|
|
12
12
|
export {
|
|
13
13
|
CommandLineCompiler,
|
|
14
14
|
FileSystemUri,
|