@artel/artc 0.6.25274 → 0.6.25276
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 +22 -26
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +282 -143
- package/build/{chunk-6JA436J2.js → chunk-LX6LUKPR.js} +22342 -22105
- package/build/{chunk-GDE2NNW7.js → chunk-MT6TPXET.js} +1 -1
- package/build/{chunk-DXF6BY5D.js → chunk-OS2SFHBZ.js} +2 -2
- package/build/types/analysis/AnalyzedTextTranslationPackage.d.ts +1 -2
- package/build/types/analysis/AnalyzedTranslationPackage.d.ts +49 -125
- package/build/types/analysis/Analyzer.d.ts +9 -2
- package/build/types/analysis/DiagnosticCollector.d.ts +0 -8
- package/build/types/analysis/semantic-context/SemanticContextBase.d.ts +3 -1
- package/build/types/analysis/semantic-context/SemanticContextBasedEntityHidingMatcher.d.ts +1 -2
- package/build/types/analysis/semantic-context/SourceFileSemanticContext.d.ts +5 -1
- package/build/types/common/Name.d.ts +3 -1
- package/build/types/common/Query.d.ts +3 -0
- package/build/types/diagnostic/DiagnosticCode.d.ts +184 -173
- package/build/types/emitter/Emitter.d.ts +0 -1
- package/build/types/emitter/EmitterContext.d.ts +1 -0
- package/build/types/emitter/Entities.d.ts +3 -1
- package/build/types/emitter/IrFactory.d.ts +1 -1
- package/build/types/entities/Entity.d.ts +16 -9
- package/build/types/entities/EntityLocalizationContext.d.ts +11 -10
- package/build/types/entities/PackageMembers.d.ts +2 -1
- package/build/types/entities/index.d.ts +4 -0
- package/build/types/entities/interfaces/AliasTypeEntity.d.ts +1 -0
- package/build/types/entities/interfaces/FunctionTypeEntity.d.ts +1 -0
- package/build/types/entities/interfaces/PackageEntity.d.ts +4 -2
- package/build/types/entities/interfaces/StructuredTypeEntity.d.ts +1 -0
- package/build/types/entities/interfaces/TypeExtensionEntity.d.ts +1 -0
- package/build/types/entities/interfaces/VariantTypeEntity.d.ts +1 -0
- package/build/types/entities/translated/TranslatedAliasTypeEntity.d.ts +9 -6
- package/build/types/entities/translated/TranslatedConstructorEntity.d.ts +21 -9
- package/build/types/entities/translated/TranslatedDereferenceOperatorEntity.d.ts +4 -4
- package/build/types/entities/translated/TranslatedDestructorEntity.d.ts +4 -4
- package/build/types/entities/translated/TranslatedFunctionEntity.d.ts +10 -8
- package/build/types/entities/translated/TranslatedFunctionTypeEntity.d.ts +11 -11
- package/build/types/entities/translated/TranslatedGetterEntity.d.ts +5 -5
- package/build/types/entities/translated/TranslatedIndexerEntity.d.ts +5 -3
- package/build/types/entities/translated/TranslatedOperatorEntity.d.ts +5 -3
- package/build/types/entities/translated/TranslatedPackageEntity.d.ts +4 -3
- package/build/types/entities/translated/TranslatedSetterEntity.d.ts +5 -5
- package/build/types/entities/translated/TranslatedStructuredTypeEntity.d.ts +9 -8
- package/build/types/entities/translated/TranslatedTypeExtensionEntity.d.ts +4 -5
- package/build/types/entities/translated/TranslatedTypeParameterEntity.d.ts +6 -5
- package/build/types/entities/translated/TranslatedVariableEntity.d.ts +10 -11
- package/build/types/entities/translated/TranslatedVariantTypeEntity.d.ts +11 -11
- package/build/types/project/SourcePackage.d.ts +6 -3
- package/build/types/project/configuration/types/PackageConfigurationEn.d.ts +2 -1
- package/build/types/project/configuration/types/PackageConfigurationRu.d.ts +2 -1
- package/build/types/services/NodeSemanticInfo.d.ts +6 -0
- package/build/types/tree/Nodes.d.ts +3 -3
- package/build/types/ts-interop/Entities.d.ts +1 -2
- package/build/types/ts-interop/TsInteropContext.d.ts +1 -2
- package/build/types/ts-interop/TsPackageContents.d.ts +1 -2
- package/build/types/ts-interop/TsPackageMembersCreator.d.ts +1 -2
- package/package.json +1 -1
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-OS2SFHBZ.js";
|
|
5
|
+
import "./chunk-MT6TPXET.js";
|
|
6
6
|
import {
|
|
7
7
|
__async
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-LX6LUKPR.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-MT6TPXET.js";
|
|
4
4
|
import {
|
|
5
5
|
AccessKind,
|
|
6
6
|
AccessedFunctionParameter,
|
|
@@ -24,6 +24,7 @@ import {
|
|
|
24
24
|
ArtelVersion,
|
|
25
25
|
BackingSpecialVariableEntityInfo,
|
|
26
26
|
BaseAspectTypes,
|
|
27
|
+
BaseEntityHidingMatcher,
|
|
27
28
|
BaseObjectType,
|
|
28
29
|
BinaryExpressionOperatorClassificationResult,
|
|
29
30
|
BoundTypeMemberLookup,
|
|
@@ -79,7 +80,9 @@ import {
|
|
|
79
80
|
EntityHidingLevel_package,
|
|
80
81
|
EntityHidingLevel_type,
|
|
81
82
|
EntityHidingLevel_typeHierarchy,
|
|
83
|
+
EntityHidingMatcherWithinTypeEntity,
|
|
82
84
|
EntityKind,
|
|
85
|
+
EntityLocalizationContext,
|
|
83
86
|
EntityNaming_anonymous,
|
|
84
87
|
EntityNaming_named,
|
|
85
88
|
EntityOrPackageNameTreeNode_entity,
|
|
@@ -98,8 +101,6 @@ import {
|
|
|
98
101
|
FunctionLiteralParameterDeclarationEntity,
|
|
99
102
|
GeneratedSourceFileScheme,
|
|
100
103
|
GenericCancellationToken,
|
|
101
|
-
GetMultipleTranslationTargetsResult,
|
|
102
|
-
GetSingleTranslationTargetResult,
|
|
103
104
|
ImplicitFunctionBlockParameterSpecialVariableEntityInfo,
|
|
104
105
|
ImportEmitKind,
|
|
105
106
|
ImportedPackageNameTree,
|
|
@@ -160,6 +161,7 @@ import {
|
|
|
160
161
|
PackageConfigurationRu_exports,
|
|
161
162
|
PackageContent_exports,
|
|
162
163
|
PackageDialect,
|
|
164
|
+
PackageEntityMembers,
|
|
163
165
|
PackageFromDtsConfig,
|
|
164
166
|
PackageFunctionDeclarationEntity,
|
|
165
167
|
PackageFunctionTypeDeclarationEntity,
|
|
@@ -227,15 +229,6 @@ import {
|
|
|
227
229
|
ThrottledCancellationToken,
|
|
228
230
|
Token2 as Token,
|
|
229
231
|
TokenKind,
|
|
230
|
-
TranslatedName,
|
|
231
|
-
TranslatedNamedPackageMember,
|
|
232
|
-
TranslatedNamedTypeEntityMember,
|
|
233
|
-
TranslatedPackageMembers,
|
|
234
|
-
TranslatedParameter,
|
|
235
|
-
TranslatedSubprogramSignature,
|
|
236
|
-
TranslatedTypeEntityMembers,
|
|
237
|
-
TranslatedTypeHeader,
|
|
238
|
-
TranslatedTypeParameter,
|
|
239
232
|
Translation,
|
|
240
233
|
TranslationPackage,
|
|
241
234
|
TranslationPackageConfiguration,
|
|
@@ -290,11 +283,16 @@ import {
|
|
|
290
283
|
getUnescapedTextFromTextToken,
|
|
291
284
|
getUserLocale,
|
|
292
285
|
invalidJavaScriptIdentifierCharsRegExp,
|
|
286
|
+
isAnonymousTypeEntity,
|
|
293
287
|
isBinaryOperator,
|
|
294
288
|
isComputedVariableEntity,
|
|
295
|
-
|
|
289
|
+
isEntityWithParameters,
|
|
290
|
+
isEntityWithTypeParameters,
|
|
296
291
|
isJavaScriptIdentifier,
|
|
292
|
+
isLocalizableEntity,
|
|
293
|
+
isNamedPackageMemberEntity,
|
|
297
294
|
isNamedTypeEntity,
|
|
295
|
+
isNamedTypeMemberEntity,
|
|
298
296
|
isNonEmptyArray,
|
|
299
297
|
isOperatorDefinedByKeyword,
|
|
300
298
|
isOperatorDefinedByToken,
|
|
@@ -344,7 +342,7 @@ import {
|
|
|
344
342
|
withoutQuotes,
|
|
345
343
|
withoutTemplateQuotes,
|
|
346
344
|
yieldExecution
|
|
347
|
-
} from "../chunk-
|
|
345
|
+
} from "../chunk-LX6LUKPR.js";
|
|
348
346
|
export {
|
|
349
347
|
AccessKind,
|
|
350
348
|
AccessedFunctionParameter,
|
|
@@ -368,6 +366,7 @@ export {
|
|
|
368
366
|
ArtelVersion,
|
|
369
367
|
BackingSpecialVariableEntityInfo,
|
|
370
368
|
BaseAspectTypes,
|
|
369
|
+
BaseEntityHidingMatcher,
|
|
371
370
|
BaseObjectType,
|
|
372
371
|
BinaryExpressionOperatorClassificationResult,
|
|
373
372
|
BoundTypeMemberLookup,
|
|
@@ -424,7 +423,9 @@ export {
|
|
|
424
423
|
EntityHidingLevel_package,
|
|
425
424
|
EntityHidingLevel_type,
|
|
426
425
|
EntityHidingLevel_typeHierarchy,
|
|
426
|
+
EntityHidingMatcherWithinTypeEntity,
|
|
427
427
|
EntityKind,
|
|
428
|
+
EntityLocalizationContext,
|
|
428
429
|
EntityNaming_anonymous,
|
|
429
430
|
EntityNaming_named,
|
|
430
431
|
EntityOrPackageNameTreeNode_entity,
|
|
@@ -442,8 +443,6 @@ export {
|
|
|
442
443
|
FunctionLiteralParameterDeclarationEntity,
|
|
443
444
|
GeneratedSourceFileScheme,
|
|
444
445
|
GenericCancellationToken,
|
|
445
|
-
GetMultipleTranslationTargetsResult,
|
|
446
|
-
GetSingleTranslationTargetResult,
|
|
447
446
|
ImplicitFunctionBlockParameterSpecialVariableEntityInfo,
|
|
448
447
|
ImportEmitKind,
|
|
449
448
|
ImportedPackageNameTree,
|
|
@@ -501,6 +500,7 @@ export {
|
|
|
501
500
|
OverriddenAndShadowedMembers,
|
|
502
501
|
PackageAliasTypeDeclarationEntity,
|
|
503
502
|
PackageDialect,
|
|
503
|
+
PackageEntityMembers,
|
|
504
504
|
PackageFromDtsConfig,
|
|
505
505
|
PackageFunctionDeclarationEntity,
|
|
506
506
|
PackageFunctionTypeDeclarationEntity,
|
|
@@ -568,15 +568,6 @@ export {
|
|
|
568
568
|
TextTranslationPackageEntityInfo,
|
|
569
569
|
ThrottledCancellationToken,
|
|
570
570
|
Token,
|
|
571
|
-
TranslatedName,
|
|
572
|
-
TranslatedNamedPackageMember,
|
|
573
|
-
TranslatedNamedTypeEntityMember,
|
|
574
|
-
TranslatedPackageMembers,
|
|
575
|
-
TranslatedParameter,
|
|
576
|
-
TranslatedSubprogramSignature,
|
|
577
|
-
TranslatedTypeEntityMembers,
|
|
578
|
-
TranslatedTypeHeader,
|
|
579
|
-
TranslatedTypeParameter,
|
|
580
571
|
Translation,
|
|
581
572
|
TranslationPackage,
|
|
582
573
|
TranslationPackageConfiguration,
|
|
@@ -634,11 +625,16 @@ export {
|
|
|
634
625
|
getUnescapedTextFromTextToken,
|
|
635
626
|
getUserLocale,
|
|
636
627
|
invalidJavaScriptIdentifierCharsRegExp,
|
|
628
|
+
isAnonymousTypeEntity,
|
|
637
629
|
isBinaryOperator,
|
|
638
630
|
isComputedVariableEntity,
|
|
639
|
-
|
|
631
|
+
isEntityWithParameters,
|
|
632
|
+
isEntityWithTypeParameters,
|
|
640
633
|
isJavaScriptIdentifier,
|
|
634
|
+
isLocalizableEntity,
|
|
635
|
+
isNamedPackageMemberEntity,
|
|
641
636
|
isNamedTypeEntity,
|
|
637
|
+
isNamedTypeMemberEntity,
|
|
642
638
|
isNonEmptyArray,
|
|
643
639
|
isOperatorDefinedByKeyword,
|
|
644
640
|
isOperatorDefinedByToken,
|
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-OS2SFHBZ.js";
|
|
10
|
+
import "../chunk-MT6TPXET.js";
|
|
11
|
+
import "../chunk-LX6LUKPR.js";
|
|
12
12
|
export {
|
|
13
13
|
CommandLineCompiler,
|
|
14
14
|
FileSystemUri,
|