@artel/artc 0.6.25270 → 0.6.25272
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 -2
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +1 -1
- package/build/{chunk-YNG6354X.js → chunk-2SRNQ3Z6.js} +16471 -16313
- package/build/{chunk-EL5SZYID.js → chunk-6SPB6XSH.js} +2 -2
- package/build/{chunk-CIXNKLFU.js → chunk-IVVTDCLH.js} +1 -1
- package/build/types/analysis/AnalyzedTextTranslationPackage.d.ts +1 -2
- package/build/types/analysis/AnalyzedTranslationPackage.d.ts +1 -3
- package/build/types/analysis/Analyzer.d.ts +1 -1
- package/build/types/analysis/ImportedPackageNameTree.d.ts +1 -1
- package/build/types/analysis/ReturnTypeInferrer.d.ts +2 -2
- package/build/types/analysis/SourcePackageMembersCreator.d.ts +1 -1
- package/build/types/analysis/{Tags.d.ts → Tag.d.ts} +3 -3
- package/build/types/analysis/TypeMemberConflictsValidator.d.ts +1 -1
- package/build/types/analysis/Utils.d.ts +1 -1
- package/build/types/analysis/control-flow/NarrowableReference.d.ts +1 -1
- package/build/types/analysis/semantic-context/SemanticContextBasedEntityHidingMatcher.d.ts +1 -1
- package/build/types/analysis/semantic-context/SpecialLocalDeclarationsBuilder.d.ts +1 -1
- package/build/types/api/Api.d.ts +1 -1
- package/build/types/emitter/EmitterContext.d.ts +50 -4
- package/build/types/entities/BaseAspectTypes.d.ts +26 -1
- package/build/types/entities/BaseEntityHidingMatcher.d.ts +1 -1
- package/build/types/entities/BaseObjectType.d.ts +20 -1
- package/build/types/entities/Entity.d.ts +104 -0
- package/build/types/entities/EntityHiding.d.ts +1 -1
- package/build/types/entities/IEntity.d.ts +1 -1
- package/build/types/entities/TypeEntity.d.ts +1 -1
- package/build/types/entities/TypeEntityMembers.d.ts +5 -5
- package/build/types/entities/index.d.ts +5 -123
- package/build/types/entities/{AliasedType.d.ts → interfaces/AliasTypeEntity.d.ts} +44 -13
- package/build/types/entities/interfaces/ConstructorEntity.d.ts +44 -0
- package/build/types/entities/interfaces/DereferenceOperatorEntity.d.ts +30 -0
- package/build/types/entities/interfaces/DestructorEntity.d.ts +20 -0
- package/build/types/entities/interfaces/FunctionEntity.d.ts +56 -0
- package/build/types/entities/interfaces/FunctionTypeEntity.d.ts +52 -0
- package/build/types/entities/interfaces/GetterEntity.d.ts +26 -0
- package/build/types/entities/interfaces/IndexerEntity.d.ts +33 -0
- package/build/types/entities/interfaces/OperatorEntity.d.ts +27 -0
- package/build/types/entities/interfaces/PackageAliasEntity.d.ts +21 -0
- package/build/types/entities/{PackageEntity.d.ts → interfaces/PackageEntity.d.ts} +8 -35
- package/build/types/entities/interfaces/SetterEntity.d.ts +24 -0
- package/build/types/entities/interfaces/StructuredTypeEntity.d.ts +62 -0
- package/build/types/entities/interfaces/TextTranslationEntity.d.ts +18 -0
- package/build/types/entities/interfaces/TypeExtensionEntity.d.ts +22 -0
- package/build/types/entities/{TypeParameterEntity.d.ts → interfaces/TypeParameterEntity.d.ts} +6 -60
- package/build/types/entities/interfaces/VariableEntity.d.ts +102 -0
- package/build/types/entities/interfaces/VariantTypeEntity.d.ts +47 -0
- package/build/types/entities/interfaces/index.d.ts +18 -0
- package/build/types/entities/intrinsic/IntrinsicConstructorEntity.d.ts +56 -0
- package/build/types/entities/intrinsic/IntrinsicFunctionEntity.d.ts +77 -0
- package/build/types/entities/intrinsic/IntrinsicFunctionTypeEntity.d.ts +17 -0
- package/build/types/entities/intrinsic/IntrinsicGetterEntity.d.ts +25 -0
- package/build/types/entities/intrinsic/IntrinsicStructuredTypeEntity.d.ts +17 -0
- package/build/types/entities/intrinsic/IntrinsicTypeParameterEntity.d.ts +32 -0
- package/build/types/entities/intrinsic/IntrinsicVariableEntity.d.ts +123 -0
- package/build/types/entities/intrinsic/index.d.ts +7 -0
- package/build/types/entities/source/SourceAliasTypeEntity.d.ts +36 -0
- package/build/types/entities/source/SourceConstructorEntity.d.ts +30 -0
- package/build/types/entities/source/SourceDereferenceOperatorEntity.d.ts +37 -0
- package/build/types/entities/source/SourceDestructorEntity.d.ts +28 -0
- package/build/types/entities/source/SourceFunctionEntity.d.ts +101 -0
- package/build/types/entities/source/SourceFunctionTypeEntity.d.ts +77 -0
- package/build/types/entities/{GetterEntity.d.ts → source/SourceGetterEntity.d.ts} +7 -48
- package/build/types/entities/source/SourceIndexerEntity.d.ts +39 -0
- package/build/types/entities/source/SourceOperatorEntity.d.ts +38 -0
- package/build/types/entities/source/SourcePackageAliasEntity.d.ts +24 -0
- package/build/types/entities/source/SourcePackageEntity.d.ts +34 -0
- package/build/types/entities/{SetterEntity.d.ts → source/SourceSetterEntity.d.ts} +6 -27
- package/build/types/entities/source/SourceStructuredTypeEntity.d.ts +114 -0
- package/build/types/entities/source/SourceTextTranslationEntity.d.ts +29 -0
- package/build/types/entities/source/SourceTypeExtensionEntity.d.ts +28 -0
- package/build/types/entities/source/SourceTypeParameterEntity.d.ts +34 -0
- package/build/types/entities/{VariableEntity.d.ts → source/SourceVariableEntity.d.ts} +8 -220
- package/build/types/entities/source/SourceVariantTypeEntity.d.ts +69 -0
- package/build/types/entities/source/index.d.ts +18 -0
- package/build/types/entities/translated/TranslatedAliasTypeEntity.d.ts +5 -6
- package/build/types/entities/translated/TranslatedConstructorEntity.d.ts +3 -3
- package/build/types/entities/translated/TranslatedDereferenceOperatorEntity.d.ts +2 -2
- package/build/types/entities/translated/TranslatedDestructorEntity.d.ts +3 -3
- package/build/types/entities/translated/TranslatedFunctionEntity.d.ts +6 -6
- package/build/types/entities/translated/TranslatedFunctionTypeEntity.d.ts +6 -6
- package/build/types/entities/translated/TranslatedGetterEntity.d.ts +3 -3
- package/build/types/entities/translated/TranslatedIndexerEntity.d.ts +3 -3
- package/build/types/entities/translated/TranslatedOperatorEntity.d.ts +3 -3
- package/build/types/entities/translated/TranslatedPackageEntity.d.ts +3 -3
- package/build/types/entities/translated/TranslatedSetterEntity.d.ts +3 -3
- package/build/types/entities/translated/TranslatedStructuredTypeEntity.d.ts +6 -7
- package/build/types/entities/translated/TranslatedTypeExtensionEntity.d.ts +3 -3
- package/build/types/entities/translated/TranslatedTypeParameterEntity.d.ts +3 -3
- package/build/types/entities/translated/TranslatedVariableEntity.d.ts +6 -6
- package/build/types/entities/translated/TranslatedVariantTypeEntity.d.ts +5 -5
- package/build/types/entities/translated/index.d.ts +16 -0
- package/build/types/services/source-generation/EntityToSyntax.d.ts +1 -1
- package/build/types/ts-interop/Entities.d.ts +3 -5
- package/build/types/ts-interop/TsInteropContext.d.ts +2 -3
- package/package.json +1 -1
- package/build/types/entities/AliasTypeEntity.d.ts +0 -61
- package/build/types/entities/ConstructorEntity.d.ts +0 -118
- package/build/types/entities/DereferenceOperatorEntity.d.ts +0 -62
- package/build/types/entities/DestructorEntity.d.ts +0 -44
- package/build/types/entities/FunctionEntity.d.ts +0 -221
- package/build/types/entities/FunctionTypeEntity.d.ts +0 -131
- package/build/types/entities/IndexerEntity.d.ts +0 -67
- package/build/types/entities/OperatorEntity.d.ts +0 -60
- package/build/types/entities/PackageAliasEntity.d.ts +0 -41
- package/build/types/entities/StructuredTypeEntity.d.ts +0 -226
- package/build/types/entities/TextTranslationEntity.d.ts +0 -45
- package/build/types/entities/TypeExtensionEntity.d.ts +0 -45
- package/build/types/entities/VariantTypeEntity.d.ts +0 -108
|
@@ -1,105 +1,11 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import
|
|
6
|
-
import * as
|
|
7
|
-
import
|
|
8
|
-
import {
|
|
9
|
-
import type { IndexerEntity, PackageEntity, TypeWithMembersOrExtensionEntity } from './index.js';
|
|
10
|
-
import { ConstructorEntity, DefinitionKind, DestructorEntity, EntityHidingLevel, EntityKind, FunctionEntity, FunctionTypeEntity, GetterEntity, OperatorEntity, SetterEntity } from './index.js';
|
|
11
|
-
export type VariableEntity = PackageVariableEntity | FieldEntity | ParameterEntity | LocalVariableEntity;
|
|
12
|
-
export interface PackageVariableEntity extends IVariableEntity {
|
|
13
|
-
readonly subkind: 'package';
|
|
14
|
-
getContainingPackage(): PackageEntity;
|
|
15
|
-
getTranslation(): Translation | undefined;
|
|
16
|
-
getOriginalEntity(): PackageVariableEntity;
|
|
17
|
-
}
|
|
18
|
-
export interface FieldEntity extends IVariableEntity {
|
|
19
|
-
readonly subkind: 'field';
|
|
20
|
-
getContainingEntity(): TypeWithMembersOrExtensionEntity;
|
|
21
|
-
isStatic(): boolean;
|
|
22
|
-
isOverride(): boolean;
|
|
23
|
-
markedBasic(): boolean;
|
|
24
|
-
markedAbstract(): boolean;
|
|
25
|
-
getOverriddenMembers(): readonly types.Field[];
|
|
26
|
-
isVariant(): boolean;
|
|
27
|
-
getTranslation(): Translation | undefined;
|
|
28
|
-
getOriginalEntity(): FieldEntity;
|
|
29
|
-
}
|
|
30
|
-
export interface ParameterEntity extends IVariableEntity {
|
|
31
|
-
readonly subkind: 'parameter';
|
|
32
|
-
getContainingEntity(): EntityContainingParameter;
|
|
33
|
-
isOptional(): boolean;
|
|
34
|
-
isVariadic(): boolean;
|
|
35
|
-
getTranslation(): Translation | undefined;
|
|
36
|
-
getOriginalEntity(): ParameterEntity;
|
|
37
|
-
}
|
|
38
|
-
export interface LocalVariableEntity extends IVariableEntity {
|
|
39
|
-
readonly subkind: 'local';
|
|
40
|
-
getLocalVariableKind(): LocalVariableKind;
|
|
41
|
-
getContainingPackage(): PackageEntity;
|
|
42
|
-
getTranslation(): Translation | undefined;
|
|
43
|
-
getOriginalEntity(): LocalVariableEntity;
|
|
44
|
-
}
|
|
45
|
-
export declare enum LocalVariableKind {
|
|
46
|
-
Regular = 0,
|
|
47
|
-
Enumeration = 1,
|
|
48
|
-
Error = 2
|
|
49
|
-
}
|
|
50
|
-
interface IVariableEntity extends IEntity {
|
|
51
|
-
readonly kind: EntityKind.Variable;
|
|
52
|
-
getName(): Name;
|
|
53
|
-
getType(): types.Type;
|
|
54
|
-
getDefinition(): VariableEntityDefinition;
|
|
55
|
-
getGetter(): GetterEntity | undefined;
|
|
56
|
-
getSetter(): SetterEntity | undefined;
|
|
57
|
-
isConstant(): boolean;
|
|
58
|
-
isHidden(): EntityHidingLevel | undefined;
|
|
59
|
-
isSpecial(): SpecialVariableEntityInfo | undefined;
|
|
60
|
-
getTags(): readonly Tag[];
|
|
61
|
-
ensureAllDiagnosticsReported?(): void;
|
|
62
|
-
}
|
|
63
|
-
export type EntityContainingParameter = FunctionEntity | IndexerEntity | ConstructorEntity | DestructorEntity | FunctionTypeEntity | OperatorEntity | PackageEntity;
|
|
64
|
-
export type VariableEntityDefinition = {
|
|
65
|
-
kind: DefinitionKind.Source;
|
|
66
|
-
value: SourceVariableEntityDefinition;
|
|
67
|
-
} | {
|
|
68
|
-
kind: DefinitionKind.Intrinsic;
|
|
69
|
-
} | {
|
|
70
|
-
kind: DefinitionKind.TypeScript;
|
|
71
|
-
};
|
|
72
|
-
export type SourceVariableEntityDefinition = SingleSourceVariableEntityDefinition | MultiSourceVariableEntityDefinition;
|
|
73
|
-
export type SingleSourceVariableEntityDefinition = {
|
|
74
|
-
kind: 'single';
|
|
75
|
-
node: tree.PackageVariableDeclaration | tree.FieldDeclaration | tree.LocalVariableDeclaration | tree.ForStatementVariableDeclaration | tree.ErrorVariableDeclaration | tree.ParameterDeclaration | tree.VariantDeclaration | tree.TranslationTextTemplateParameter;
|
|
76
|
-
};
|
|
77
|
-
export type MultiSourceVariableEntityDefinition = {
|
|
78
|
-
kind: 'multi';
|
|
79
|
-
nodes: ReadonlyArray<tree.PackageVariableGetterDeclaration | tree.PackageVariableSetterDeclaration | tree.FieldGetterDeclaration | tree.FieldSetterDeclaration | tree.ParameterDeclaration>;
|
|
80
|
-
};
|
|
81
|
-
export type SpecialVariableEntityInfo = ResultSpecialVariableEntityInfo | ValueSpecialVariableEntityInfo | BackingSpecialVariableEntityInfo | ImplicitFunctionBlockParameterSpecialVariableEntityInfo;
|
|
82
|
-
export declare class ResultSpecialVariableEntityInfo {
|
|
83
|
-
readonly subprogramNode: SubprogramDeclarationOrLiteral;
|
|
84
|
-
readonly kind = "result";
|
|
85
|
-
constructor(subprogramNode: SubprogramDeclarationOrLiteral);
|
|
86
|
-
}
|
|
87
|
-
export declare class ValueSpecialVariableEntityInfo {
|
|
88
|
-
readonly setterDeclaration: SetterDeclaration;
|
|
89
|
-
readonly kind = "value";
|
|
90
|
-
constructor(setterDeclaration: SetterDeclaration);
|
|
91
|
-
}
|
|
92
|
-
export declare class BackingSpecialVariableEntityInfo {
|
|
93
|
-
readonly computedVariable: PackageVariableEntity | FieldEntity;
|
|
94
|
-
readonly kind = "backing";
|
|
95
|
-
constructor(computedVariable: PackageVariableEntity | FieldEntity);
|
|
96
|
-
}
|
|
97
|
-
export declare class ImplicitFunctionBlockParameterSpecialVariableEntityInfo {
|
|
98
|
-
readonly targetTypeParameter: types.Parameter;
|
|
99
|
-
readonly functionBlockLiteral: tree.FunctionBlockLiteral;
|
|
100
|
-
readonly kind = "implicit-function-block-parameter";
|
|
101
|
-
constructor(targetTypeParameter: types.Parameter, functionBlockLiteral: tree.FunctionBlockLiteral);
|
|
102
|
-
}
|
|
1
|
+
import { Tag } from '../../analysis/Tag.js';
|
|
2
|
+
import { Translation } from '../../analysis/Translation.js';
|
|
3
|
+
import { Analyzer } from '../../analysis/index.js';
|
|
4
|
+
import { Name, PackageDialect, PackageLocale } from '../../common/index.js';
|
|
5
|
+
import * as tree from '../../tree/index.js';
|
|
6
|
+
import * as types from '../../types/index.js';
|
|
7
|
+
import type { IndexerEntity } from '../index.js';
|
|
8
|
+
import { EntityContainingParameter, EntityHidingLevel, EntityKind, FieldEntity, GetterEntity, LocalVariableEntity, LocalVariableKind, PackageEntity, PackageVariableEntity, ParameterEntity, SetterEntity, SpecialVariableEntityInfo, TypeWithMembersOrExtensionEntity, VariableEntityDefinition } from '../index.js';
|
|
103
9
|
export declare class PackageVariableDeclarationEntity implements PackageVariableEntity {
|
|
104
10
|
private readonly analyzer;
|
|
105
11
|
private readonly node;
|
|
@@ -446,123 +352,6 @@ export declare class FunctionLiteralParameterDeclarationEntity implements Parame
|
|
|
446
352
|
getDialect(): PackageDialect;
|
|
447
353
|
getOriginalEntity(): ParameterEntity;
|
|
448
354
|
}
|
|
449
|
-
export declare class IntrinsicPackageVariableEntity implements PackageVariableEntity {
|
|
450
|
-
private readonly name;
|
|
451
|
-
private readonly type;
|
|
452
|
-
private readonly containingPackage;
|
|
453
|
-
private readonly isSpecial_;
|
|
454
|
-
private readonly isHidden_;
|
|
455
|
-
private readonly getter;
|
|
456
|
-
private readonly setter;
|
|
457
|
-
readonly kind = EntityKind.Variable;
|
|
458
|
-
readonly subkind = "package";
|
|
459
|
-
constructor(name: Name, type: types.Type | Lazy<types.Type>, containingPackage: PackageEntity, isSpecial_: SpecialVariableEntityInfo | undefined, isHidden_: EntityHidingLevel | undefined, getter: GetterEntity | undefined, setter: SetterEntity | undefined);
|
|
460
|
-
getName(): Name;
|
|
461
|
-
getType(): types.Type;
|
|
462
|
-
getDefinition(): VariableEntityDefinition;
|
|
463
|
-
getGetter(): GetterEntity | undefined;
|
|
464
|
-
getSetter(): SetterEntity | undefined;
|
|
465
|
-
isConstant(): boolean;
|
|
466
|
-
isHidden(): EntityHidingLevel | undefined;
|
|
467
|
-
isSpecial(): SpecialVariableEntityInfo | undefined;
|
|
468
|
-
getTags(): readonly Tag[];
|
|
469
|
-
getContainingPackage(): PackageEntity;
|
|
470
|
-
getTranslation(): Translation | undefined;
|
|
471
|
-
getLocale(): PackageLocale;
|
|
472
|
-
getDialect(): PackageDialect;
|
|
473
|
-
getOriginalEntity(): PackageVariableEntity;
|
|
474
|
-
}
|
|
475
|
-
export declare class IntrinsicFieldEntity implements FieldEntity {
|
|
476
|
-
private readonly name;
|
|
477
|
-
private readonly type;
|
|
478
|
-
private readonly containingEntity;
|
|
479
|
-
private readonly isStatic_;
|
|
480
|
-
private readonly markedBasic_;
|
|
481
|
-
private readonly isOverride_;
|
|
482
|
-
private readonly markedAbstract_;
|
|
483
|
-
private readonly isSpecial_;
|
|
484
|
-
private readonly isHidden_;
|
|
485
|
-
private readonly getter;
|
|
486
|
-
private readonly setter;
|
|
487
|
-
private readonly overriddenMembers;
|
|
488
|
-
readonly kind = EntityKind.Variable;
|
|
489
|
-
readonly subkind = "field";
|
|
490
|
-
constructor(name: Name, type: types.Type, containingEntity: TypeWithMembersOrExtensionEntity, isStatic_: boolean, markedBasic_: boolean, isOverride_: boolean, markedAbstract_: boolean, isSpecial_: SpecialVariableEntityInfo | undefined, isHidden_: EntityHidingLevel | undefined, getter: GetterEntity | undefined, setter: SetterEntity | undefined, overriddenMembers: readonly types.Field[]);
|
|
491
|
-
getName(): Name;
|
|
492
|
-
getType(): types.Type;
|
|
493
|
-
getDefinition(): VariableEntityDefinition;
|
|
494
|
-
getGetter(): GetterEntity | undefined;
|
|
495
|
-
getSetter(): SetterEntity | undefined;
|
|
496
|
-
isConstant(): boolean;
|
|
497
|
-
isHidden(): EntityHidingLevel | undefined;
|
|
498
|
-
isSpecial(): SpecialVariableEntityInfo | undefined;
|
|
499
|
-
getTags(): readonly Tag[];
|
|
500
|
-
getContainingEntity(): TypeWithMembersOrExtensionEntity;
|
|
501
|
-
getContainingPackage(): PackageEntity;
|
|
502
|
-
isStatic(): boolean;
|
|
503
|
-
markedBasic(): boolean;
|
|
504
|
-
isOverride(): boolean;
|
|
505
|
-
markedAbstract(): boolean;
|
|
506
|
-
getOverriddenMembers(): readonly types.Field[];
|
|
507
|
-
isVariant(): boolean;
|
|
508
|
-
getTranslation(): Translation | undefined;
|
|
509
|
-
getLocale(): PackageLocale;
|
|
510
|
-
getDialect(): PackageDialect;
|
|
511
|
-
getOriginalEntity(): FieldEntity;
|
|
512
|
-
}
|
|
513
|
-
export declare class IntrinsicParameterEntity implements ParameterEntity {
|
|
514
|
-
private readonly name;
|
|
515
|
-
private readonly type;
|
|
516
|
-
private readonly containingEntity;
|
|
517
|
-
private readonly isOptional_;
|
|
518
|
-
private readonly isVariadic_;
|
|
519
|
-
private readonly isSpecial_;
|
|
520
|
-
readonly kind = EntityKind.Variable;
|
|
521
|
-
readonly subkind = "parameter";
|
|
522
|
-
constructor(name: Name, type: types.Type, containingEntity: EntityContainingParameter, isOptional_: boolean, isVariadic_: boolean, isSpecial_: SpecialVariableEntityInfo | undefined);
|
|
523
|
-
getName(): Name;
|
|
524
|
-
getType(): types.Type;
|
|
525
|
-
getDefinition(): VariableEntityDefinition;
|
|
526
|
-
getGetter(): GetterEntity | undefined;
|
|
527
|
-
getSetter(): SetterEntity | undefined;
|
|
528
|
-
isConstant(): boolean;
|
|
529
|
-
isHidden(): EntityHidingLevel | undefined;
|
|
530
|
-
isSpecial(): SpecialVariableEntityInfo | undefined;
|
|
531
|
-
getTags(): readonly Tag[];
|
|
532
|
-
getContainingEntity(): EntityContainingParameter;
|
|
533
|
-
getContainingPackage(): PackageEntity;
|
|
534
|
-
isOptional(): boolean;
|
|
535
|
-
isVariadic(): boolean;
|
|
536
|
-
getTranslation(): Translation | undefined;
|
|
537
|
-
getLocale(): PackageLocale;
|
|
538
|
-
getDialect(): PackageDialect;
|
|
539
|
-
getOriginalEntity(): ParameterEntity;
|
|
540
|
-
}
|
|
541
|
-
export declare class IntrinsicLocalVariableEntity implements LocalVariableEntity {
|
|
542
|
-
private readonly name;
|
|
543
|
-
private readonly type;
|
|
544
|
-
private readonly isConstant_;
|
|
545
|
-
private readonly containingPackage;
|
|
546
|
-
private readonly isSpecial_;
|
|
547
|
-
readonly kind = EntityKind.Variable;
|
|
548
|
-
readonly subkind = "local";
|
|
549
|
-
constructor(name: Name, type: types.Type, isConstant_: boolean, containingPackage: PackageEntity, isSpecial_: SpecialVariableEntityInfo | undefined);
|
|
550
|
-
getName(): Name;
|
|
551
|
-
getType(): types.Type;
|
|
552
|
-
getDefinition(): VariableEntityDefinition;
|
|
553
|
-
getGetter(): GetterEntity | undefined;
|
|
554
|
-
getSetter(): SetterEntity | undefined;
|
|
555
|
-
isConstant(): boolean;
|
|
556
|
-
isHidden(): EntityHidingLevel | undefined;
|
|
557
|
-
isSpecial(): SpecialVariableEntityInfo | undefined;
|
|
558
|
-
getTags(): readonly Tag[];
|
|
559
|
-
getLocalVariableKind(): LocalVariableKind;
|
|
560
|
-
getContainingPackage(): PackageEntity;
|
|
561
|
-
getTranslation(): Translation | undefined;
|
|
562
|
-
getLocale(): PackageLocale;
|
|
563
|
-
getDialect(): PackageDialect;
|
|
564
|
-
getOriginalEntity(): LocalVariableEntity;
|
|
565
|
-
}
|
|
566
355
|
export declare class TranslationTextTemplateParameterEntity implements ParameterEntity {
|
|
567
356
|
private readonly analyzer;
|
|
568
357
|
private readonly node;
|
|
@@ -589,4 +378,3 @@ export declare class TranslationTextTemplateParameterEntity implements Parameter
|
|
|
589
378
|
getDialect(): PackageDialect;
|
|
590
379
|
getOriginalEntity(): ParameterEntity;
|
|
591
380
|
}
|
|
592
|
-
export {};
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import { Tag } from '../../analysis/Tag.js';
|
|
2
|
+
import { Translation } from '../../analysis/Translation.js';
|
|
3
|
+
import { Analyzer } from '../../analysis/index.js';
|
|
4
|
+
import { Name, PackageDialect, PackageLocale } from '../../common/index.js';
|
|
5
|
+
import * as tree from '../../tree/index.js';
|
|
6
|
+
import * as types from '../../types/index.js';
|
|
7
|
+
import { EntityNaming } from '../EntityNaming.js';
|
|
8
|
+
import { TypeEntityMembers } from '../TypeEntityMembers.js';
|
|
9
|
+
import { AnonymousVariantTypeEntity, BaseObjectType, EntityContext, EntityHidingLevel, EntityKind, PackageEntity, PackageVariantTypeEntity, SubstitutionApplicationMode, TypeEntityKind, TypeParameterEntity, VariantTypeEntityDefinition } from '../index.js';
|
|
10
|
+
export declare class PackageVariantTypeDeclarationEntity implements PackageVariantTypeEntity {
|
|
11
|
+
private readonly analyzer;
|
|
12
|
+
private readonly node;
|
|
13
|
+
readonly kind = EntityKind.Type;
|
|
14
|
+
readonly typeEntityKind = TypeEntityKind.Variant;
|
|
15
|
+
readonly subkind = "package";
|
|
16
|
+
private readonly name;
|
|
17
|
+
private readonly typeParameters;
|
|
18
|
+
private readonly members;
|
|
19
|
+
private readonly underlyingType;
|
|
20
|
+
private readonly baseObjectType;
|
|
21
|
+
private readonly hiding;
|
|
22
|
+
private modifierFlags_;
|
|
23
|
+
private get modifierFlags();
|
|
24
|
+
constructor(analyzer: Analyzer, node: tree.PackageVariantTypeDeclaration);
|
|
25
|
+
getNaming(): EntityNaming;
|
|
26
|
+
getName(): Name;
|
|
27
|
+
getContainingPackage(): PackageEntity;
|
|
28
|
+
getMembers(): TypeEntityMembers;
|
|
29
|
+
getUnderlyingType(): types.Type;
|
|
30
|
+
getDefinition(): VariantTypeEntityDefinition;
|
|
31
|
+
getArity(): number;
|
|
32
|
+
getTypeParameters(): readonly TypeParameterEntity[];
|
|
33
|
+
isHidden(): EntityHidingLevel | undefined;
|
|
34
|
+
getTags(): readonly Tag[];
|
|
35
|
+
getSubstitutionApplicationMode(): SubstitutionApplicationMode;
|
|
36
|
+
getBaseObjectType(): BaseObjectType;
|
|
37
|
+
getContext(): EntityContext;
|
|
38
|
+
getTranslation(): Translation | undefined;
|
|
39
|
+
getLocale(): PackageLocale;
|
|
40
|
+
getDialect(): PackageDialect;
|
|
41
|
+
getOriginalEntity(): PackageVariantTypeEntity;
|
|
42
|
+
}
|
|
43
|
+
export declare class AnonymousVariantTypeDeclarationEntity implements AnonymousVariantTypeEntity {
|
|
44
|
+
private readonly analyzer;
|
|
45
|
+
private readonly node;
|
|
46
|
+
readonly kind = EntityKind.Type;
|
|
47
|
+
readonly typeEntityKind = TypeEntityKind.Variant;
|
|
48
|
+
readonly subkind = "anonymous";
|
|
49
|
+
private readonly underlyingType;
|
|
50
|
+
private readonly members;
|
|
51
|
+
private readonly baseObjectType;
|
|
52
|
+
constructor(analyzer: Analyzer, node: tree.AnonymousVariantTypeDeclaration);
|
|
53
|
+
getMembers(): TypeEntityMembers;
|
|
54
|
+
getUnderlyingType(): types.Type;
|
|
55
|
+
getDefinition(): VariantTypeEntityDefinition;
|
|
56
|
+
getNaming(): EntityNaming;
|
|
57
|
+
getArity(): number;
|
|
58
|
+
getTypeParameters(): readonly TypeParameterEntity[];
|
|
59
|
+
isHidden(): EntityHidingLevel | undefined;
|
|
60
|
+
getTags(): readonly Tag[];
|
|
61
|
+
getSubstitutionApplicationMode(): SubstitutionApplicationMode;
|
|
62
|
+
getContainingPackage(): PackageEntity;
|
|
63
|
+
getBaseObjectType(): BaseObjectType;
|
|
64
|
+
getContext(): EntityContext;
|
|
65
|
+
getTranslation(): Translation | undefined;
|
|
66
|
+
getLocale(): PackageLocale;
|
|
67
|
+
getDialect(): PackageDialect;
|
|
68
|
+
getOriginalEntity(): AnonymousVariantTypeEntity;
|
|
69
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export * from './SourceAliasTypeEntity.js';
|
|
2
|
+
export * from './SourceConstructorEntity.js';
|
|
3
|
+
export * from './SourceDereferenceOperatorEntity.js';
|
|
4
|
+
export * from './SourceDestructorEntity.js';
|
|
5
|
+
export * from './SourceFunctionEntity.js';
|
|
6
|
+
export * from './SourceFunctionTypeEntity.js';
|
|
7
|
+
export * from './SourceGetterEntity.js';
|
|
8
|
+
export * from './SourceIndexerEntity.js';
|
|
9
|
+
export * from './SourceOperatorEntity.js';
|
|
10
|
+
export * from './SourcePackageAliasEntity.js';
|
|
11
|
+
export * from './SourcePackageEntity.js';
|
|
12
|
+
export * from './SourceSetterEntity.js';
|
|
13
|
+
export * from './SourceStructuredTypeEntity.js';
|
|
14
|
+
export * from './SourceTextTranslationEntity.js';
|
|
15
|
+
export * from './SourceTypeExtensionEntity.js';
|
|
16
|
+
export * from './SourceTypeParameterEntity.js';
|
|
17
|
+
export * from './SourceVariableEntity.js';
|
|
18
|
+
export * from './SourceVariantTypeEntity.js';
|
|
@@ -1,18 +1,17 @@
|
|
|
1
|
-
import { Tag } from '../../analysis/
|
|
1
|
+
import { Tag } from '../../analysis/Tag.js';
|
|
2
2
|
import { Translation } from '../../analysis/Translation.js';
|
|
3
3
|
import { Name, PackageDialect, PackageLocale } from '../../common/index.js';
|
|
4
4
|
import * as types from '../../types/index.js';
|
|
5
|
-
import {
|
|
6
|
-
import
|
|
7
|
-
import { AliasTypeEntityDefinition } from '../AliasTypeEntity.js';
|
|
5
|
+
import type { AliasTypeEntity, CycleFreeAliasedTypeResolutionResult } from '../interfaces/AliasTypeEntity.js';
|
|
6
|
+
import { AliasedType, AliasTypeEntityDefinition } from '../interfaces/AliasTypeEntity.js';
|
|
8
7
|
import { EntityHidingLevel } from '../EntityHiding.js';
|
|
9
8
|
import { EntityLocalizationContext } from '../EntityLocalizationContext.js';
|
|
10
9
|
import { EntityContext, EntityKind } from '../index.js';
|
|
11
|
-
import { PackageEntity } from '../PackageEntity.js';
|
|
10
|
+
import { PackageEntity } from '../interfaces/PackageEntity.js';
|
|
12
11
|
import { SubstitutionApplicationMode } from '../SubstitutionApplicationMode.js';
|
|
13
12
|
import { TypeEntityKind } from '../TypeEntity.js';
|
|
14
13
|
import { TypeEntityMembers } from '../TypeEntityMembers.js';
|
|
15
|
-
import { TypeParameterEntity } from '../TypeParameterEntity.js';
|
|
14
|
+
import { TypeParameterEntity } from '../interfaces/TypeParameterEntity.js';
|
|
16
15
|
export declare class TranslatedAliasTypeEntity implements AliasTypeEntity {
|
|
17
16
|
readonly kind = EntityKind.Type;
|
|
18
17
|
readonly typeEntityKind = TypeEntityKind.Alias;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { Tag } from '../../analysis/
|
|
1
|
+
import { Tag } from '../../analysis/Tag.js';
|
|
2
2
|
import { Translation } from '../../analysis/Translation.js';
|
|
3
3
|
import { PackageDialect, PackageLocale } from '../../common/index.js';
|
|
4
|
-
import type { ConstructorEntity, ConstructorEntityDefinition, DefaultConstructorEntityInfo } from '../ConstructorEntity.js';
|
|
4
|
+
import type { ConstructorEntity, ConstructorEntityDefinition, DefaultConstructorEntityInfo } from '../interfaces/ConstructorEntity.js';
|
|
5
5
|
import { EntityHidingLevel } from '../EntityHiding.js';
|
|
6
6
|
import { EntityLocalizationContext } from '../EntityLocalizationContext.js';
|
|
7
7
|
import { EntityKind, PackageEntity, TypeWithMembersOrExtensionEntity } from '../index.js';
|
|
8
|
-
import { ParameterEntity } from '../VariableEntity.js';
|
|
8
|
+
import { ParameterEntity } from '../interfaces/VariableEntity.js';
|
|
9
9
|
export declare class TranslatedConstructorEntity implements ConstructorEntity {
|
|
10
10
|
readonly kind = EntityKind.Constructor;
|
|
11
11
|
private readonly originalEntity;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { Tag } from '../../analysis/
|
|
1
|
+
import { Tag } from '../../analysis/Tag.js';
|
|
2
2
|
import { Translation } from '../../analysis/Translation.js';
|
|
3
3
|
import { PackageDialect, PackageLocale } from '../../common/index.js';
|
|
4
4
|
import * as types from '../../types/index.js';
|
|
5
|
-
import type { DereferenceOperatorEntity, DereferenceOperatorEntityDefinition } from '../DereferenceOperatorEntity.js';
|
|
5
|
+
import type { DereferenceOperatorEntity, DereferenceOperatorEntityDefinition } from '../interfaces/DereferenceOperatorEntity.js';
|
|
6
6
|
import { EntityHidingLevel } from '../EntityHiding.js';
|
|
7
7
|
import { EntityLocalizationContext } from '../EntityLocalizationContext.js';
|
|
8
8
|
import { EntityKind, GetterEntity, PackageEntity, SetterEntity, TypeWithMembersOrExtensionEntity } from '../index.js';
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { Tag } from '../../analysis/
|
|
1
|
+
import { Tag } from '../../analysis/Tag.js';
|
|
2
2
|
import { Translation } from '../../analysis/Translation.js';
|
|
3
3
|
import { PackageDialect, PackageLocale } from '../../common/index.js';
|
|
4
|
-
import type { DestructorEntity, DestructorEntityDefinition } from '../DestructorEntity.js';
|
|
4
|
+
import type { DestructorEntity, DestructorEntityDefinition } from '../interfaces/DestructorEntity.js';
|
|
5
5
|
import { EntityHidingLevel } from '../EntityHiding.js';
|
|
6
6
|
import { EntityLocalizationContext } from '../EntityLocalizationContext.js';
|
|
7
7
|
import { EntityKind, PackageEntity, TypeWithMembersOrExtensionEntity } from '../index.js';
|
|
8
|
-
import { ParameterEntity } from '../VariableEntity.js';
|
|
8
|
+
import { ParameterEntity } from '../interfaces/VariableEntity.js';
|
|
9
9
|
export declare class TranslatedDestructorEntity implements DestructorEntity {
|
|
10
10
|
readonly kind = EntityKind.Destructor;
|
|
11
11
|
private readonly originalEntity;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { Analyzer } from '../../analysis/Analyzer.js';
|
|
2
|
-
import { Tag } from '../../analysis/
|
|
2
|
+
import { Tag } from '../../analysis/Tag.js';
|
|
3
3
|
import { Translation } from '../../analysis/Translation.js';
|
|
4
4
|
import { Name, PackageDialect, PackageLocale } from '../../common/index.js';
|
|
5
5
|
import * as types from '../../types/index.js';
|
|
6
6
|
import { EntityHidingLevel } from '../EntityHiding.js';
|
|
7
7
|
import { EntityLocalizationContext } from '../EntityLocalizationContext.js';
|
|
8
|
-
import type { MethodEntity, PackageFunctionEntity } from '../FunctionEntity.js';
|
|
9
|
-
import { FunctionEntityDefinition } from '../FunctionEntity.js';
|
|
8
|
+
import type { MethodEntity, PackageFunctionEntity } from '../interfaces/FunctionEntity.js';
|
|
9
|
+
import { FunctionEntityDefinition } from '../interfaces/FunctionEntity.js';
|
|
10
10
|
import { EntityKind, TypeWithMembersOrExtensionEntity } from '../index.js';
|
|
11
|
-
import { PackageEntity } from '../PackageEntity.js';
|
|
11
|
+
import { PackageEntity } from '../interfaces/PackageEntity.js';
|
|
12
12
|
import { SubstitutionApplicationMode } from '../SubstitutionApplicationMode.js';
|
|
13
|
-
import { TypeParameterEntity } from '../TypeParameterEntity.js';
|
|
14
|
-
import { ParameterEntity } from '../VariableEntity.js';
|
|
13
|
+
import { TypeParameterEntity } from '../interfaces/TypeParameterEntity.js';
|
|
14
|
+
import { ParameterEntity } from '../interfaces/VariableEntity.js';
|
|
15
15
|
export declare class TranslatedPackageFunctionEntity implements PackageFunctionEntity {
|
|
16
16
|
readonly kind = EntityKind.Function;
|
|
17
17
|
readonly subkind = "package";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Tag } from '../../analysis/
|
|
1
|
+
import { Tag } from '../../analysis/Tag.js';
|
|
2
2
|
import { Translation } from '../../analysis/Translation.js';
|
|
3
3
|
import { Name, PackageDialect, PackageLocale } from '../../common/index.js';
|
|
4
4
|
import * as types from '../../types/Type.js';
|
|
@@ -6,15 +6,15 @@ import { BaseObjectType } from '../BaseObjectType.js';
|
|
|
6
6
|
import { EntityHidingLevel } from '../EntityHiding.js';
|
|
7
7
|
import { EntityLocalizationContext } from '../EntityLocalizationContext.js';
|
|
8
8
|
import { EntityNaming } from '../EntityNaming.js';
|
|
9
|
-
import type { AnonymousFunctionTypeEntity, PackageFunctionTypeEntity } from '../FunctionTypeEntity.js';
|
|
10
|
-
import { FunctionTypeEntityDefinition } from '../FunctionTypeEntity.js';
|
|
9
|
+
import type { AnonymousFunctionTypeEntity, PackageFunctionTypeEntity } from '../interfaces/FunctionTypeEntity.js';
|
|
10
|
+
import { FunctionTypeEntityDefinition } from '../interfaces/FunctionTypeEntity.js';
|
|
11
11
|
import { EntityContext, EntityKind } from '../index.js';
|
|
12
|
-
import { PackageEntity } from '../PackageEntity.js';
|
|
12
|
+
import { PackageEntity } from '../interfaces/PackageEntity.js';
|
|
13
13
|
import { SubstitutionApplicationMode } from '../SubstitutionApplicationMode.js';
|
|
14
14
|
import { TypeEntityKind } from '../TypeEntity.js';
|
|
15
15
|
import { TypeEntityMembers } from '../TypeEntityMembers.js';
|
|
16
|
-
import { TypeParameterEntity } from '../TypeParameterEntity.js';
|
|
17
|
-
import { ParameterEntity } from '../VariableEntity.js';
|
|
16
|
+
import { TypeParameterEntity } from '../interfaces/TypeParameterEntity.js';
|
|
17
|
+
import { ParameterEntity } from '../interfaces/VariableEntity.js';
|
|
18
18
|
export declare class TranslatedPackageFunctionTypeEntity implements PackageFunctionTypeEntity {
|
|
19
19
|
readonly kind = EntityKind.Type;
|
|
20
20
|
readonly typeEntityKind = TypeEntityKind.Function;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { Tag } from '../../analysis/
|
|
1
|
+
import { Tag } from '../../analysis/Tag.js';
|
|
2
2
|
import { Translation } from '../../analysis/Translation.js';
|
|
3
3
|
import { PackageDialect, PackageLocale } from '../../common/index.js';
|
|
4
4
|
import { Type } from '../../types/Type.js';
|
|
5
5
|
import { EntityHidingLevel } from '../EntityHiding.js';
|
|
6
6
|
import { EntityLocalizationContext } from '../EntityLocalizationContext.js';
|
|
7
|
-
import type { GetterEntity } from '../GetterEntity.js';
|
|
8
|
-
import { EntityOwningGetter, GetterEntityDefinition } from '../GetterEntity.js';
|
|
7
|
+
import type { GetterEntity } from '../interfaces/GetterEntity.js';
|
|
8
|
+
import { EntityOwningGetter, GetterEntityDefinition } from '../interfaces/GetterEntity.js';
|
|
9
9
|
import { EntityKind, PackageEntity } from '../index.js';
|
|
10
10
|
export declare class TranslatedGetterEntity implements GetterEntity {
|
|
11
11
|
readonly kind = EntityKind.Getter;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { Tag } from '../../analysis/
|
|
1
|
+
import { Tag } from '../../analysis/Tag.js';
|
|
2
2
|
import { Translation } from '../../analysis/Translation.js';
|
|
3
3
|
import { PackageDialect, PackageLocale } from '../../common/index.js';
|
|
4
4
|
import * as types from '../../types/index.js';
|
|
5
5
|
import { EntityHidingLevel } from '../EntityHiding.js';
|
|
6
6
|
import { EntityLocalizationContext } from '../EntityLocalizationContext.js';
|
|
7
7
|
import { EntityKind, GetterEntity, PackageEntity, SetterEntity, TypeWithMembersOrExtensionEntity } from '../index.js';
|
|
8
|
-
import type { IndexerEntity, IndexerEntityDefinition } from '../IndexerEntity.js';
|
|
9
|
-
import { ParameterEntity } from '../VariableEntity.js';
|
|
8
|
+
import type { IndexerEntity, IndexerEntityDefinition } from '../interfaces/IndexerEntity.js';
|
|
9
|
+
import { ParameterEntity } from '../interfaces/VariableEntity.js';
|
|
10
10
|
export declare class TranslatedIndexerEntity implements IndexerEntity {
|
|
11
11
|
readonly kind = EntityKind.Indexer;
|
|
12
12
|
private readonly originalEntity;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { Analyzer } from '../../analysis/Analyzer.js';
|
|
2
|
-
import { Tag } from '../../analysis/
|
|
2
|
+
import { Tag } from '../../analysis/Tag.js';
|
|
3
3
|
import { Translation } from '../../analysis/Translation.js';
|
|
4
4
|
import { PackageDialect, PackageLocale } from '../../common/index.js';
|
|
5
5
|
import * as types from '../../types/index.js';
|
|
6
6
|
import { EntityHidingLevel } from '../EntityHiding.js';
|
|
7
7
|
import { EntityLocalizationContext } from '../EntityLocalizationContext.js';
|
|
8
8
|
import { EntityKind, OperatorKind, PackageEntity, TypeWithMembersOrExtensionEntity } from '../index.js';
|
|
9
|
-
import type { OperatorEntity, OperatorEntityDefinition } from '../OperatorEntity.js';
|
|
10
|
-
import { ParameterEntity } from '../VariableEntity.js';
|
|
9
|
+
import type { OperatorEntity, OperatorEntityDefinition } from '../interfaces/OperatorEntity.js';
|
|
10
|
+
import { ParameterEntity } from '../interfaces/VariableEntity.js';
|
|
11
11
|
export declare class TranslatedOperatorEntity implements OperatorEntity {
|
|
12
12
|
readonly kind = EntityKind.Operator;
|
|
13
13
|
private readonly analyzer;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { Tag } from '../../analysis/
|
|
1
|
+
import { Tag } from '../../analysis/Tag.js';
|
|
2
2
|
import { Translation } from '../../analysis/Translation.js';
|
|
3
3
|
import { PackageDialect } from '../../common/PackageDialect.js';
|
|
4
4
|
import { PackageLocale } from '../../common/PackageLocale.js';
|
|
5
5
|
import { PackageName, PlatformKind } from '../../project/SourcePackage.js';
|
|
6
6
|
import { EntityLocalizationContext } from '../EntityLocalizationContext.js';
|
|
7
7
|
import { EntityKind } from '../index.js';
|
|
8
|
-
import type { PackageEntity, TextTranslationPackageEntityInfo } from '../PackageEntity.js';
|
|
9
|
-
import { InterfacePackageEntityInfo, PackageEntityDefinition } from '../PackageEntity.js';
|
|
8
|
+
import type { PackageEntity, TextTranslationPackageEntityInfo } from '../interfaces/PackageEntity.js';
|
|
9
|
+
import { InterfacePackageEntityInfo, PackageEntityDefinition } from '../interfaces/PackageEntity.js';
|
|
10
10
|
import { PackageEntityMembers } from '../PackageMembers.js';
|
|
11
11
|
export declare class TranslatedPackageEntity implements PackageEntity {
|
|
12
12
|
readonly kind = EntityKind.Package;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { Tag } from '../../analysis/
|
|
1
|
+
import { Tag } from '../../analysis/Tag.js';
|
|
2
2
|
import { Translation } from '../../analysis/Translation.js';
|
|
3
3
|
import { PackageDialect, PackageLocale } from '../../common/index.js';
|
|
4
4
|
import { EntityHidingLevel } from '../EntityHiding.js';
|
|
5
5
|
import { EntityLocalizationContext } from '../EntityLocalizationContext.js';
|
|
6
6
|
import { EntityKind, PackageEntity } from '../index.js';
|
|
7
|
-
import type { SetterEntity } from '../SetterEntity.js';
|
|
8
|
-
import { EntityOwningSetter, SetterEntityDefinition } from '../SetterEntity.js';
|
|
7
|
+
import type { SetterEntity } from '../interfaces/SetterEntity.js';
|
|
8
|
+
import { EntityOwningSetter, SetterEntityDefinition } from '../interfaces/SetterEntity.js';
|
|
9
9
|
export declare class TranslatedSetterEntity implements SetterEntity {
|
|
10
10
|
readonly kind = EntityKind.Setter;
|
|
11
11
|
private readonly originalEntity;
|
|
@@ -1,20 +1,19 @@
|
|
|
1
|
-
import { Tag } from '../../analysis/
|
|
1
|
+
import { Tag } from '../../analysis/Tag.js';
|
|
2
2
|
import { Translation } from '../../analysis/Translation.js';
|
|
3
3
|
import { Name, PackageDialect, PackageLocale } from '../../common/index.js';
|
|
4
4
|
import * as types from '../../types/index.js';
|
|
5
|
-
import { BaseAspectTypes } from '../BaseAspectTypes.js';
|
|
6
|
-
import { BaseObjectType } from '../BaseObjectType.js';
|
|
5
|
+
import { BaseAspectTypes, CycleFreeBaseAspectTypesResolutionResult } from '../BaseAspectTypes.js';
|
|
6
|
+
import { BaseObjectType, CycleFreeBaseObjectTypeResolutionResult } from '../BaseObjectType.js';
|
|
7
7
|
import { EntityHidingLevel } from '../EntityHiding.js';
|
|
8
8
|
import { EntityLocalizationContext } from '../EntityLocalizationContext.js';
|
|
9
9
|
import { EntityNaming } from '../EntityNaming.js';
|
|
10
10
|
import { EntityContext, EntityKind } from '../index.js';
|
|
11
|
-
import { PackageEntity } from '../PackageEntity.js';
|
|
12
|
-
import type { AnonymousStructuredTypeEntity, PackageStructuredTypeEntity, StructuredTypeKind } from '../StructuredTypeEntity.js';
|
|
13
|
-
import { CycleFreeBaseAspectTypesResolutionResult, CycleFreeBaseObjectTypeResolutionResult, StructuredTypeEntityDefinition } from '../StructuredTypeEntity.js';
|
|
11
|
+
import { PackageEntity } from '../interfaces/PackageEntity.js';
|
|
12
|
+
import type { AnonymousStructuredTypeEntity, PackageStructuredTypeEntity, StructuredTypeEntityDefinition, StructuredTypeKind } from '../interfaces/StructuredTypeEntity.js';
|
|
14
13
|
import { SubstitutionApplicationMode } from '../SubstitutionApplicationMode.js';
|
|
15
14
|
import { TypeEntityKind } from '../TypeEntity.js';
|
|
16
15
|
import { TypeEntityMembers } from '../TypeEntityMembers.js';
|
|
17
|
-
import { TypeParameterEntity } from '../TypeParameterEntity.js';
|
|
16
|
+
import { TypeParameterEntity } from '../interfaces/TypeParameterEntity.js';
|
|
18
17
|
export declare class TranslatedPackageStructuredTypeEntity implements PackageStructuredTypeEntity {
|
|
19
18
|
readonly kind = EntityKind.Type;
|
|
20
19
|
readonly typeEntityKind = TypeEntityKind.Structured;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { Tag } from '../../analysis/
|
|
1
|
+
import { Tag } from '../../analysis/Tag.js';
|
|
2
2
|
import { Translation } from '../../analysis/Translation.js';
|
|
3
3
|
import { PackageDialect, PackageLocale } from '../../common/index.js';
|
|
4
4
|
import { EntityHidingLevel } from '../EntityHiding.js';
|
|
5
5
|
import { EntityLocalizationContext } from '../EntityLocalizationContext.js';
|
|
6
6
|
import { EntityContext, EntityKind, NamedTypeEntity } from '../index.js';
|
|
7
|
-
import { PackageEntity } from '../PackageEntity.js';
|
|
7
|
+
import { PackageEntity } from '../interfaces/PackageEntity.js';
|
|
8
8
|
import { TypeEntityMembers } from '../TypeEntityMembers.js';
|
|
9
|
-
import type { TypeExtensionEntity, TypeExtensionEntityDefinition } from '../TypeExtensionEntity.js';
|
|
9
|
+
import type { TypeExtensionEntity, TypeExtensionEntityDefinition } from '../interfaces/TypeExtensionEntity.js';
|
|
10
10
|
export declare class TranslatedTypeExtensionEntity implements TypeExtensionEntity {
|
|
11
11
|
readonly kind = EntityKind.TypeExtension;
|
|
12
12
|
private readonly originalEntity;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Tag } from '../../analysis/
|
|
1
|
+
import { Tag } from '../../analysis/Tag.js';
|
|
2
2
|
import { Translation } from '../../analysis/Translation.js';
|
|
3
3
|
import { Name, PackageDialect, PackageLocale } from '../../common/index.js';
|
|
4
4
|
import * as types from '../../types/index.js';
|
|
@@ -6,8 +6,8 @@ import { EntityHidingLevel } from '../EntityHiding.js';
|
|
|
6
6
|
import { EntityLocalizationContext } from '../EntityLocalizationContext.js';
|
|
7
7
|
import { EntityContext, EntityKind, PackageEntity } from '../index.js';
|
|
8
8
|
import { TypeEntityKind } from '../TypeEntity.js';
|
|
9
|
-
import type { TypeParameterEntity } from '../TypeParameterEntity.js';
|
|
10
|
-
import { CycleFreeConstraintResolutionResult, EntityContainingTypeParameter, TypeParameterConstraint, TypeParameterEntityDefinition } from '../TypeParameterEntity.js';
|
|
9
|
+
import type { TypeParameterEntity } from '../interfaces/TypeParameterEntity.js';
|
|
10
|
+
import { CycleFreeConstraintResolutionResult, EntityContainingTypeParameter, TypeParameterConstraint, TypeParameterEntityDefinition } from '../interfaces/TypeParameterEntity.js';
|
|
11
11
|
export declare class TranslatedTypeParameterEntity implements TypeParameterEntity {
|
|
12
12
|
readonly kind = EntityKind.Type;
|
|
13
13
|
readonly typeEntityKind = TypeEntityKind.Parameter;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { Tag } from '../../analysis/
|
|
1
|
+
import { Tag } from '../../analysis/Tag.js';
|
|
2
2
|
import { Translation } from '../../analysis/Translation.js';
|
|
3
3
|
import { Name, PackageDialect, PackageLocale } from '../../common/index.js';
|
|
4
4
|
import * as types from '../../types/index.js';
|
|
5
5
|
import { EntityHidingLevel } from '../EntityHiding.js';
|
|
6
6
|
import { EntityLocalizationContext } from '../EntityLocalizationContext.js';
|
|
7
|
-
import { GetterEntity } from '../GetterEntity.js';
|
|
7
|
+
import { GetterEntity } from '../interfaces/GetterEntity.js';
|
|
8
8
|
import { EntityKind, TypeWithMembersOrExtensionEntity } from '../index.js';
|
|
9
|
-
import { PackageEntity } from '../PackageEntity.js';
|
|
10
|
-
import { SetterEntity } from '../SetterEntity.js';
|
|
11
|
-
import type { FieldEntity, PackageVariableEntity, ParameterEntity } from '../VariableEntity.js';
|
|
12
|
-
import { EntityContainingParameter, SpecialVariableEntityInfo, VariableEntityDefinition } from '../VariableEntity.js';
|
|
9
|
+
import { PackageEntity } from '../interfaces/PackageEntity.js';
|
|
10
|
+
import { SetterEntity } from '../interfaces/SetterEntity.js';
|
|
11
|
+
import type { FieldEntity, PackageVariableEntity, ParameterEntity } from '../interfaces/VariableEntity.js';
|
|
12
|
+
import { EntityContainingParameter, SpecialVariableEntityInfo, VariableEntityDefinition } from '../interfaces/VariableEntity.js';
|
|
13
13
|
export declare class TranslatedPackageVariableEntity implements PackageVariableEntity {
|
|
14
14
|
readonly kind = EntityKind.Variable;
|
|
15
15
|
readonly subkind = "package";
|