@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,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';
|
|
@@ -7,13 +7,13 @@ import { EntityHidingLevel } from '../EntityHiding.js';
|
|
|
7
7
|
import { EntityLocalizationContext } from '../EntityLocalizationContext.js';
|
|
8
8
|
import { EntityNaming } from '../EntityNaming.js';
|
|
9
9
|
import { EntityContext, EntityKind } from '../index.js';
|
|
10
|
-
import { PackageEntity } from '../PackageEntity.js';
|
|
10
|
+
import { PackageEntity } from '../interfaces/PackageEntity.js';
|
|
11
11
|
import { SubstitutionApplicationMode } from '../SubstitutionApplicationMode.js';
|
|
12
12
|
import { TypeEntityKind } from '../TypeEntity.js';
|
|
13
13
|
import { TypeEntityMembers } from '../TypeEntityMembers.js';
|
|
14
|
-
import { TypeParameterEntity } from '../TypeParameterEntity.js';
|
|
15
|
-
import type { AnonymousVariantTypeEntity, PackageVariantTypeEntity } from '../VariantTypeEntity.js';
|
|
16
|
-
import { VariantTypeEntityDefinition } from '../VariantTypeEntity.js';
|
|
14
|
+
import { TypeParameterEntity } from '../interfaces/TypeParameterEntity.js';
|
|
15
|
+
import type { AnonymousVariantTypeEntity, PackageVariantTypeEntity } from '../interfaces/VariantTypeEntity.js';
|
|
16
|
+
import { VariantTypeEntityDefinition } from '../interfaces/VariantTypeEntity.js';
|
|
17
17
|
export declare class TranslatedPackageVariantTypeEntity implements PackageVariantTypeEntity {
|
|
18
18
|
readonly kind = EntityKind.Type;
|
|
19
19
|
readonly typeEntityKind = TypeEntityKind.Variant;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export * from './TranslatedAliasTypeEntity.js';
|
|
2
|
+
export * from './TranslatedConstructorEntity.js';
|
|
3
|
+
export * from './TranslatedDereferenceOperatorEntity.js';
|
|
4
|
+
export * from './TranslatedDestructorEntity.js';
|
|
5
|
+
export * from './TranslatedFunctionEntity.js';
|
|
6
|
+
export * from './TranslatedFunctionTypeEntity.js';
|
|
7
|
+
export * from './TranslatedGetterEntity.js';
|
|
8
|
+
export * from './TranslatedIndexerEntity.js';
|
|
9
|
+
export * from './TranslatedOperatorEntity.js';
|
|
10
|
+
export * from './TranslatedPackageEntity.js';
|
|
11
|
+
export * from './TranslatedSetterEntity.js';
|
|
12
|
+
export * from './TranslatedStructuredTypeEntity.js';
|
|
13
|
+
export * from './TranslatedTypeExtensionEntity.js';
|
|
14
|
+
export * from './TranslatedTypeParameterEntity.js';
|
|
15
|
+
export * from './TranslatedVariableEntity.js';
|
|
16
|
+
export * from './TranslatedVariantTypeEntity.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Analyzer } from '../../analysis/Analyzer.js';
|
|
2
|
-
import { PackageEntity } from '../../entities/
|
|
2
|
+
import { PackageEntity } from '../../entities/index.js';
|
|
3
3
|
import * as tree from '../../tree/index.js';
|
|
4
4
|
export declare class EntityToSyntax {
|
|
5
5
|
private readonly analyzer;
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import ts from 'typescript';
|
|
2
|
-
import { Tag } from '../analysis/
|
|
2
|
+
import { Tag } from '../analysis/Tag.js';
|
|
3
3
|
import { Translation } from '../analysis/Translation.js';
|
|
4
4
|
import { Lazy, Name, PackageDialect, PackageLocale } from '../common/index.js';
|
|
5
|
-
import type { PackageEntity, TextTranslationPackageEntityInfo } from '../entities/PackageEntity.js';
|
|
6
|
-
import { PackageEntityDefinition } from '../entities/PackageEntity.js';
|
|
7
5
|
import { PackageEntityMembers } from '../entities/PackageMembers.js';
|
|
8
6
|
import { TypeEntityMembers } from '../entities/TypeEntityMembers.js';
|
|
9
|
-
import type {
|
|
10
|
-
import { AliasTypeEntity, AliasTypeEntityDefinition, AliasedType, AnonymousFunctionTypeEntity, AnonymousStructuredTypeEntity, BaseAspectTypes, BaseObjectType, ConstructorEntity, ConstructorEntityDefinition, DefaultConstructorEntityInfo, EntityContext, EntityHidingLevel, EntityKind, EntityNaming, EntityOwningSetter, FieldEntity, FunctionEntityDefinition, FunctionTypeEntityDefinition, GetterEntity, GetterEntityDefinition, IndexerEntity, IndexerEntityDefinition, InterfacePackageEntityInfo, MethodEntity, PackageFunctionEntity, PackageFunctionTypeEntity, PackageStructuredTypeEntity, PackageVariableEntity, PackageVariantTypeEntity, ParameterEntity, SetterEntity, SetterEntityDefinition, SpecialVariableEntityInfo, StructuredTypeEntityDefinition, StructuredTypeKind, SubstitutionApplicationMode, TypeEntityKind, TypeParameterConstraint, TypeParameterEntity, TypeParameterEntityDefinition, TypeWithMembersOrExtensionEntity, VariableEntityDefinition, VariantTypeEntityDefinition } from '../entities/index.js';
|
|
7
|
+
import type { EntityContainingParameter, EntityContainingTypeParameter, EntityOwningGetter, PackageEntity, TextTranslationPackageEntityInfo, TypeEntityWithMembers, VariantTypeEntity } from '../entities/index.js';
|
|
8
|
+
import { AliasTypeEntity, AliasTypeEntityDefinition, AliasedType, AnonymousFunctionTypeEntity, AnonymousStructuredTypeEntity, BaseAspectTypes, BaseObjectType, ConstructorEntity, ConstructorEntityDefinition, DefaultConstructorEntityInfo, EntityContext, EntityHidingLevel, EntityKind, EntityNaming, EntityOwningSetter, FieldEntity, FunctionEntityDefinition, FunctionTypeEntityDefinition, GetterEntity, GetterEntityDefinition, IndexerEntity, IndexerEntityDefinition, InterfacePackageEntityInfo, MethodEntity, PackageEntityDefinition, PackageFunctionEntity, PackageFunctionTypeEntity, PackageStructuredTypeEntity, PackageVariableEntity, PackageVariantTypeEntity, ParameterEntity, SetterEntity, SetterEntityDefinition, SpecialVariableEntityInfo, StructuredTypeEntityDefinition, StructuredTypeKind, SubstitutionApplicationMode, TypeEntityKind, TypeParameterConstraint, TypeParameterEntity, TypeParameterEntityDefinition, TypeWithMembersOrExtensionEntity, VariableEntityDefinition, VariantTypeEntityDefinition } from '../entities/index.js';
|
|
11
9
|
import { JavaScriptImplementationConfig, PackageName, PlatformKind, ProgramPackage } from '../project/index.js';
|
|
12
10
|
import * as tree from '../tree/index.js';
|
|
13
11
|
import * as types from '../types/index.js';
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import ts from 'typescript';
|
|
2
2
|
import { Analyzer, WellKnownDeclarations } from '../analysis/index.js';
|
|
3
|
-
import { Tag } from '../analysis/
|
|
3
|
+
import { Tag } from '../analysis/Tag.js';
|
|
4
4
|
import { Translation } from '../analysis/Translation.js';
|
|
5
5
|
import { Name, PackageDialect, PackageLocale } from '../common/index.js';
|
|
6
|
-
import { EntityContext, EntityHidingLevel, EntityKind, InterfacePackageEntityInfo, TypeEntity, TypeEntityWithMembers } from '../entities/index.js';
|
|
7
|
-
import { PackageEntity, PackageEntityDefinition, TextTranslationPackageEntityInfo } from '../entities/PackageEntity.js';
|
|
6
|
+
import { EntityContext, EntityHidingLevel, EntityKind, InterfacePackageEntityInfo, PackageEntity, PackageEntityDefinition, TextTranslationPackageEntityInfo, TypeEntity, TypeEntityWithMembers } from '../entities/index.js';
|
|
8
7
|
import { PackageEntityMembers } from '../entities/PackageMembers.js';
|
|
9
8
|
import { JavaScriptImplementationConfig, PackageName, PlatformKind, ProgramPackage } from '../project/index.js';
|
|
10
9
|
import * as types from '../types/index.js';
|
package/package.json
CHANGED
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
import { Tag } from '../analysis/Tags.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 { PackageAliasTypeDeclaration } from '../tree/index.js';
|
|
6
|
-
import { TypeEntityMembers } from './TypeEntityMembers.js';
|
|
7
|
-
import { AliasedType, DefinitionKind, EntityContext, EntityHidingLevel, EntityKind, ITypeEntity, PackageEntity, SubstitutionApplicationMode, TypeEntityKind, TypeParameterEntity } from './index.js';
|
|
8
|
-
export interface AliasTypeEntity extends ITypeEntity {
|
|
9
|
-
readonly kind: EntityKind.Type;
|
|
10
|
-
readonly typeEntityKind: TypeEntityKind.Alias;
|
|
11
|
-
getName(): Name;
|
|
12
|
-
getContainingPackage(): PackageEntity;
|
|
13
|
-
/**
|
|
14
|
-
* При каждом вызове метод должен возвращать один и тот же экземпляр класса AliasedType.
|
|
15
|
-
*/
|
|
16
|
-
getAliasedType(): AliasedType;
|
|
17
|
-
getTypeParameters(): readonly TypeParameterEntity[];
|
|
18
|
-
getDefinition(): AliasTypeEntityDefinition;
|
|
19
|
-
getMembers(): TypeEntityMembers;
|
|
20
|
-
getArity(): number;
|
|
21
|
-
isHidden(): EntityHidingLevel | undefined;
|
|
22
|
-
getTags(): readonly Tag[];
|
|
23
|
-
getSubstitutionApplicationMode(): SubstitutionApplicationMode;
|
|
24
|
-
getTranslation(): Translation | undefined;
|
|
25
|
-
getOriginalEntity(): AliasTypeEntity;
|
|
26
|
-
}
|
|
27
|
-
export type AliasTypeEntityDefinition = {
|
|
28
|
-
kind: DefinitionKind.Source;
|
|
29
|
-
node: PackageAliasTypeDeclaration;
|
|
30
|
-
} | {
|
|
31
|
-
kind: DefinitionKind.TypeScript;
|
|
32
|
-
};
|
|
33
|
-
export declare class PackageAliasTypeDeclarationEntity implements AliasTypeEntity {
|
|
34
|
-
private readonly analyzer;
|
|
35
|
-
private readonly node;
|
|
36
|
-
readonly kind = EntityKind.Type;
|
|
37
|
-
readonly typeEntityKind = TypeEntityKind.Alias;
|
|
38
|
-
private readonly name;
|
|
39
|
-
private readonly aliasedType;
|
|
40
|
-
private readonly typeParameters;
|
|
41
|
-
private readonly members;
|
|
42
|
-
private readonly hiding;
|
|
43
|
-
private modifierFlags_;
|
|
44
|
-
private get modifierFlags();
|
|
45
|
-
constructor(analyzer: Analyzer, node: PackageAliasTypeDeclaration);
|
|
46
|
-
getName(): Name;
|
|
47
|
-
getContainingPackage(): PackageEntity;
|
|
48
|
-
getAliasedType(): AliasedType;
|
|
49
|
-
getTypeParameters(): readonly TypeParameterEntity[];
|
|
50
|
-
getMembers(): TypeEntityMembers;
|
|
51
|
-
getDefinition(): AliasTypeEntityDefinition;
|
|
52
|
-
getArity(): number;
|
|
53
|
-
isHidden(): EntityHidingLevel | undefined;
|
|
54
|
-
getTags(): readonly Tag[];
|
|
55
|
-
getSubstitutionApplicationMode(): SubstitutionApplicationMode;
|
|
56
|
-
getContext(): EntityContext;
|
|
57
|
-
getTranslation(): Translation | undefined;
|
|
58
|
-
getLocale(): PackageLocale;
|
|
59
|
-
getDialect(): PackageDialect;
|
|
60
|
-
getOriginalEntity(): AliasTypeEntity;
|
|
61
|
-
}
|
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
import { Tag } from '../analysis/Tags.js';
|
|
2
|
-
import { Translation } from '../analysis/Translation.js';
|
|
3
|
-
import { Analyzer } from '../analysis/index.js';
|
|
4
|
-
import { PackageDialect, PackageLocale } from '../common/index.js';
|
|
5
|
-
import { ConstructorDeclaration } from '../tree/index.js';
|
|
6
|
-
import * as types from '../types/index.js';
|
|
7
|
-
import { IEntity } from './IEntity.js';
|
|
8
|
-
import type { PackageEntity, TypeEntityWithMembers, TypeWithMembersOrExtensionEntity } from './index.js';
|
|
9
|
-
import { DefinitionKind, EntityHidingLevel, EntityKind, FieldEntity, ParameterEntity } from './index.js';
|
|
10
|
-
export interface ConstructorEntity extends IEntity {
|
|
11
|
-
readonly kind: EntityKind.Constructor;
|
|
12
|
-
getParameters(): readonly ParameterEntity[];
|
|
13
|
-
getDefinition(): ConstructorEntityDefinition;
|
|
14
|
-
getContainingEntity(): TypeWithMembersOrExtensionEntity;
|
|
15
|
-
isDefault(): DefaultConstructorEntityInfo | undefined;
|
|
16
|
-
isHidden(): EntityHidingLevel | undefined;
|
|
17
|
-
markedAbstract(): boolean;
|
|
18
|
-
getTags(): readonly Tag[];
|
|
19
|
-
getTranslation(): Translation | undefined;
|
|
20
|
-
getOriginalEntity(): ConstructorEntity;
|
|
21
|
-
}
|
|
22
|
-
export declare class DefaultConstructorEntityInfo {
|
|
23
|
-
readonly baseConstructor: types.Constructor | undefined;
|
|
24
|
-
readonly orderedParametersForBaseConstructor: readonly DefaultConstructorParameterForBaseConstructorInfo[];
|
|
25
|
-
readonly hasParametersForFieldInitialization: boolean;
|
|
26
|
-
readonly parametersForOwnFieldsInitialization: readonly ConstructorParameterInitializingFieldInfo[] | undefined;
|
|
27
|
-
constructor(baseConstructor: types.Constructor | undefined, orderedParametersForBaseConstructor: readonly DefaultConstructorParameterForBaseConstructorInfo[], hasParametersForFieldInitialization: boolean, parametersForOwnFieldsInitialization: readonly ConstructorParameterInitializingFieldInfo[] | undefined);
|
|
28
|
-
}
|
|
29
|
-
export declare class DefaultConstructorParameterForBaseConstructorInfo {
|
|
30
|
-
readonly parameter: ParameterEntity;
|
|
31
|
-
readonly baseConstructorParameter: ParameterEntity;
|
|
32
|
-
constructor(parameter: ParameterEntity, baseConstructorParameter: ParameterEntity);
|
|
33
|
-
}
|
|
34
|
-
export declare class ConstructorParameterInitializingFieldInfo {
|
|
35
|
-
readonly parameter: ParameterEntity;
|
|
36
|
-
readonly field: FieldEntity;
|
|
37
|
-
constructor(parameter: ParameterEntity, field: FieldEntity);
|
|
38
|
-
}
|
|
39
|
-
export type ConstructorEntityDefinition = {
|
|
40
|
-
kind: DefinitionKind.Source;
|
|
41
|
-
node: ConstructorDeclaration;
|
|
42
|
-
} | {
|
|
43
|
-
kind: DefinitionKind.Intrinsic;
|
|
44
|
-
} | {
|
|
45
|
-
kind: DefinitionKind.TypeScript;
|
|
46
|
-
};
|
|
47
|
-
export declare class ConstructorDeclarationEntity implements ConstructorEntity {
|
|
48
|
-
private readonly analyzer;
|
|
49
|
-
private readonly node;
|
|
50
|
-
readonly kind = EntityKind.Constructor;
|
|
51
|
-
private readonly parameters;
|
|
52
|
-
private readonly hiding;
|
|
53
|
-
private containingEntity;
|
|
54
|
-
private modifierFlags_;
|
|
55
|
-
private get modifierFlags();
|
|
56
|
-
constructor(analyzer: Analyzer, node: ConstructorDeclaration);
|
|
57
|
-
getParameters(): readonly ParameterEntity[];
|
|
58
|
-
getDefinition(): ConstructorEntityDefinition;
|
|
59
|
-
getContainingEntity(): TypeWithMembersOrExtensionEntity;
|
|
60
|
-
getContainingPackage(): PackageEntity;
|
|
61
|
-
isDefault(): DefaultConstructorEntityInfo | undefined;
|
|
62
|
-
isHidden(): EntityHidingLevel | undefined;
|
|
63
|
-
markedAbstract(): boolean;
|
|
64
|
-
getTags(): readonly Tag[];
|
|
65
|
-
getTranslation(): Translation | undefined;
|
|
66
|
-
getLocale(): PackageLocale;
|
|
67
|
-
getDialect(): PackageDialect;
|
|
68
|
-
getOriginalEntity(): ConstructorEntity;
|
|
69
|
-
}
|
|
70
|
-
export declare class IntrinsicConstructorEntity implements ConstructorEntity {
|
|
71
|
-
private readonly parameters;
|
|
72
|
-
private readonly containingEntity;
|
|
73
|
-
private readonly isDefault_;
|
|
74
|
-
private readonly isHidden_;
|
|
75
|
-
private readonly markedAbstract_;
|
|
76
|
-
readonly kind = EntityKind.Constructor;
|
|
77
|
-
constructor(parameters: readonly ParameterEntity[], containingEntity: TypeWithMembersOrExtensionEntity, isDefault_: DefaultConstructorEntityInfo | undefined, isHidden_: EntityHidingLevel | undefined, markedAbstract_: boolean);
|
|
78
|
-
getParameters(): readonly ParameterEntity[];
|
|
79
|
-
getDefinition(): ConstructorEntityDefinition;
|
|
80
|
-
getContainingEntity(): TypeWithMembersOrExtensionEntity;
|
|
81
|
-
getContainingPackage(): PackageEntity;
|
|
82
|
-
isDefault(): DefaultConstructorEntityInfo | undefined;
|
|
83
|
-
isHidden(): EntityHidingLevel | undefined;
|
|
84
|
-
markedAbstract(): boolean;
|
|
85
|
-
getTags(): readonly Tag[];
|
|
86
|
-
getTranslation(): Translation | undefined;
|
|
87
|
-
getLocale(): PackageLocale;
|
|
88
|
-
getDialect(): PackageDialect;
|
|
89
|
-
getOriginalEntity(): ConstructorEntity;
|
|
90
|
-
}
|
|
91
|
-
export declare class DefaultConstructorEntity implements ConstructorEntity {
|
|
92
|
-
private readonly analyzer;
|
|
93
|
-
private readonly containingType;
|
|
94
|
-
private readonly variablesToInitialize;
|
|
95
|
-
private readonly baseConstructor;
|
|
96
|
-
readonly kind = EntityKind.Constructor;
|
|
97
|
-
private readonly parametersInfo;
|
|
98
|
-
constructor(analyzer: Analyzer, containingType: TypeEntityWithMembers, variablesToInitialize: readonly VariableToInitialize[], baseConstructor: types.Constructor | undefined);
|
|
99
|
-
getParameters(): readonly ParameterEntity[];
|
|
100
|
-
getDefinition(): ConstructorEntityDefinition;
|
|
101
|
-
getContainingEntity(): TypeWithMembersOrExtensionEntity;
|
|
102
|
-
getContainingPackage(): PackageEntity;
|
|
103
|
-
isDefault(): DefaultConstructorEntityInfo | undefined;
|
|
104
|
-
isHidden(): EntityHidingLevel | undefined;
|
|
105
|
-
markedAbstract(): boolean;
|
|
106
|
-
getTags(): readonly Tag[];
|
|
107
|
-
getTranslation(): Translation | undefined;
|
|
108
|
-
getLocale(): PackageLocale;
|
|
109
|
-
getDialect(): PackageDialect;
|
|
110
|
-
getOriginalEntity(): ConstructorEntity;
|
|
111
|
-
private getParametersInfo;
|
|
112
|
-
private createOrderedParametersForBaseConstructor;
|
|
113
|
-
}
|
|
114
|
-
export declare class VariableToInitialize {
|
|
115
|
-
readonly entity: FieldEntity;
|
|
116
|
-
readonly hasInitializer: boolean;
|
|
117
|
-
constructor(entity: FieldEntity, hasInitializer: boolean);
|
|
118
|
-
}
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
import { Analyzer } from '../analysis/index.js';
|
|
2
|
-
import { Tag } from '../analysis/Tags.js';
|
|
3
|
-
import { Translation } from '../analysis/Translation.js';
|
|
4
|
-
import { PackageDialect, PackageLocale } from '../common/index.js';
|
|
5
|
-
import { DereferencedVariableGetterDeclaration, DereferencedVariableSetterDeclaration } from '../tree/index.js';
|
|
6
|
-
import * as types from '../types/index.js';
|
|
7
|
-
import { IEntity } from './IEntity.js';
|
|
8
|
-
import { DefinitionKind, EntityHidingLevel, EntityKind, GetterEntity, PackageEntity, SetterEntity, TypeWithMembersOrExtensionEntity } from './index.js';
|
|
9
|
-
export interface DereferenceOperatorEntity extends IEntity {
|
|
10
|
-
readonly kind: EntityKind.DereferenceOperator;
|
|
11
|
-
getType(): types.Type;
|
|
12
|
-
getGetter(): GetterEntity | undefined;
|
|
13
|
-
getSetter(): SetterEntity | undefined;
|
|
14
|
-
getDefinition(): DereferenceOperatorEntityDefinition;
|
|
15
|
-
getContainingEntity(): TypeWithMembersOrExtensionEntity;
|
|
16
|
-
isStatic(): boolean;
|
|
17
|
-
isHidden(): EntityHidingLevel | undefined;
|
|
18
|
-
isOverride(): boolean;
|
|
19
|
-
markedBasic(): boolean;
|
|
20
|
-
markedAbstract(): boolean;
|
|
21
|
-
getTags(): readonly Tag[];
|
|
22
|
-
getOverriddenMembers(): readonly types.DereferenceOperator[];
|
|
23
|
-
getTranslation(): Translation | undefined;
|
|
24
|
-
getOriginalEntity(): DereferenceOperatorEntity;
|
|
25
|
-
ensureAllDiagnosticsReported?(): void;
|
|
26
|
-
}
|
|
27
|
-
export type DereferenceOperatorEntityDefinition = {
|
|
28
|
-
kind: DefinitionKind.Source;
|
|
29
|
-
nodes: ReadonlyArray<DereferencedVariableGetterDeclaration | DereferencedVariableSetterDeclaration>;
|
|
30
|
-
} | {
|
|
31
|
-
kind: DefinitionKind.Intrinsic;
|
|
32
|
-
};
|
|
33
|
-
export declare class DereferenceOperatorDeclarationEntity implements DereferenceOperatorEntity {
|
|
34
|
-
readonly kind = EntityKind.DereferenceOperator;
|
|
35
|
-
private readonly analyzer;
|
|
36
|
-
private readonly getterDeclaration;
|
|
37
|
-
private readonly setterDeclaration;
|
|
38
|
-
private readonly getterOrSetterDeclaration;
|
|
39
|
-
private containingEntity;
|
|
40
|
-
private modifierFlags_;
|
|
41
|
-
private hasReportedAllDiagnostics;
|
|
42
|
-
private get modifierFlags();
|
|
43
|
-
constructor(analyzer: Analyzer, getterDeclaration: DereferencedVariableGetterDeclaration | undefined, setterDeclaration: DereferencedVariableSetterDeclaration | undefined);
|
|
44
|
-
getType(): types.Type;
|
|
45
|
-
getGetter(): GetterEntity | undefined;
|
|
46
|
-
getSetter(): SetterEntity | undefined;
|
|
47
|
-
getDefinition(): DereferenceOperatorEntityDefinition;
|
|
48
|
-
getContainingEntity(): TypeWithMembersOrExtensionEntity;
|
|
49
|
-
getContainingPackage(): PackageEntity;
|
|
50
|
-
isStatic(): boolean;
|
|
51
|
-
isHidden(): EntityHidingLevel | undefined;
|
|
52
|
-
markedBasic(): boolean;
|
|
53
|
-
isOverride(): boolean;
|
|
54
|
-
markedAbstract(): boolean;
|
|
55
|
-
getTags(): readonly Tag[];
|
|
56
|
-
getOverriddenMembers(): readonly types.DereferenceOperator[];
|
|
57
|
-
getTranslation(): Translation | undefined;
|
|
58
|
-
getLocale(): PackageLocale;
|
|
59
|
-
getDialect(): PackageDialect;
|
|
60
|
-
getOriginalEntity(): DereferenceOperatorEntity;
|
|
61
|
-
ensureAllDiagnosticsReported(): void;
|
|
62
|
-
}
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
import { Tag } from '../analysis/Tags.js';
|
|
2
|
-
import { Translation } from '../analysis/Translation.js';
|
|
3
|
-
import { Analyzer } from '../analysis/index.js';
|
|
4
|
-
import { PackageDialect, PackageLocale } from '../common/index.js';
|
|
5
|
-
import { DestructorDeclaration } from '../tree/index.js';
|
|
6
|
-
import { IEntity } from './IEntity.js';
|
|
7
|
-
import { DefinitionKind, EntityHidingLevel, EntityKind, PackageEntity, ParameterEntity, TypeWithMembersOrExtensionEntity } from './index.js';
|
|
8
|
-
export interface DestructorEntity extends IEntity {
|
|
9
|
-
readonly kind: EntityKind.Destructor;
|
|
10
|
-
getParameters(): readonly ParameterEntity[];
|
|
11
|
-
getContainingEntity(): TypeWithMembersOrExtensionEntity;
|
|
12
|
-
getDefinition(): DestructorEntityDefinition;
|
|
13
|
-
isHidden(): EntityHidingLevel | undefined;
|
|
14
|
-
markedAbstract(): boolean;
|
|
15
|
-
getTags(): readonly Tag[];
|
|
16
|
-
getTranslation(): Translation | undefined;
|
|
17
|
-
getOriginalEntity(): DestructorEntity;
|
|
18
|
-
}
|
|
19
|
-
export type DestructorEntityDefinition = {
|
|
20
|
-
kind: DefinitionKind.Source;
|
|
21
|
-
node: DestructorDeclaration;
|
|
22
|
-
};
|
|
23
|
-
export declare class DestructorDeclarationEntity implements DestructorEntity {
|
|
24
|
-
private readonly analyzer;
|
|
25
|
-
private readonly node;
|
|
26
|
-
readonly kind = EntityKind.Destructor;
|
|
27
|
-
private readonly parameters;
|
|
28
|
-
private readonly hiding;
|
|
29
|
-
private containingEntity;
|
|
30
|
-
private modifierFlags_;
|
|
31
|
-
private get modifierFlags();
|
|
32
|
-
constructor(analyzer: Analyzer, node: DestructorDeclaration);
|
|
33
|
-
getParameters(): readonly ParameterEntity[];
|
|
34
|
-
getContainingEntity(): TypeWithMembersOrExtensionEntity;
|
|
35
|
-
getContainingPackage(): PackageEntity;
|
|
36
|
-
getDefinition(): DestructorEntityDefinition;
|
|
37
|
-
isHidden(): EntityHidingLevel | undefined;
|
|
38
|
-
markedAbstract(): boolean;
|
|
39
|
-
getTags(): readonly Tag[];
|
|
40
|
-
getTranslation(): Translation | undefined;
|
|
41
|
-
getLocale(): PackageLocale;
|
|
42
|
-
getDialect(): PackageDialect;
|
|
43
|
-
getOriginalEntity(): DestructorEntity;
|
|
44
|
-
}
|
|
@@ -1,221 +0,0 @@
|
|
|
1
|
-
import { Tag } from '../analysis/Tags.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 { MethodDeclaration, NestedFunctionDeclaration, PackageFunctionDeclaration } from '../tree/index.js';
|
|
6
|
-
import * as types from '../types/index.js';
|
|
7
|
-
import { IEntity } from './IEntity.js';
|
|
8
|
-
import type { PackageEntity, TypeWithMembersOrExtensionEntity } from './index.js';
|
|
9
|
-
import { DefinitionKind, EntityHidingLevel, EntityKind, ParameterEntity, SubstitutionApplicationMode, TypeParameterEntity } from './index.js';
|
|
10
|
-
export type FunctionEntity = PackageFunctionEntity | MethodEntity | NestedFunctionEntity;
|
|
11
|
-
export interface PackageFunctionEntity extends IFunctionEntity {
|
|
12
|
-
readonly subkind: 'package';
|
|
13
|
-
getContainingPackage(): PackageEntity;
|
|
14
|
-
getTranslation(): Translation | undefined;
|
|
15
|
-
getOriginalEntity(): PackageFunctionEntity;
|
|
16
|
-
}
|
|
17
|
-
export interface MethodEntity extends IFunctionEntity {
|
|
18
|
-
readonly subkind: 'method';
|
|
19
|
-
getContainingEntity(): TypeWithMembersOrExtensionEntity;
|
|
20
|
-
isStatic(): boolean;
|
|
21
|
-
isOverride(): boolean;
|
|
22
|
-
markedBasic(): boolean;
|
|
23
|
-
markedAbstract(): boolean;
|
|
24
|
-
isModifyingOwningPlainObject(): boolean;
|
|
25
|
-
isFunctionTypeInvokeMethod(): boolean;
|
|
26
|
-
getOverriddenMembers(): readonly types.Method[];
|
|
27
|
-
getTranslation(): Translation | undefined;
|
|
28
|
-
getOriginalEntity(): MethodEntity;
|
|
29
|
-
}
|
|
30
|
-
export interface NestedFunctionEntity extends IFunctionEntity {
|
|
31
|
-
readonly subkind: 'nested';
|
|
32
|
-
getContainingPackage(): PackageEntity;
|
|
33
|
-
getTranslation(): Translation | undefined;
|
|
34
|
-
getOriginalEntity(): NestedFunctionEntity;
|
|
35
|
-
}
|
|
36
|
-
interface IFunctionEntity extends IEntity {
|
|
37
|
-
readonly kind: EntityKind.Function;
|
|
38
|
-
getName(): Name;
|
|
39
|
-
getTypeParameters(): readonly TypeParameterEntity[];
|
|
40
|
-
getParameters(): readonly ParameterEntity[];
|
|
41
|
-
getReturnType(): types.Type;
|
|
42
|
-
getDefinition(): FunctionEntityDefinition;
|
|
43
|
-
isAsync(): boolean;
|
|
44
|
-
isHidden(): EntityHidingLevel | undefined;
|
|
45
|
-
getTags(): readonly Tag[];
|
|
46
|
-
getTypeParametersArity(): number;
|
|
47
|
-
getSubstitutionApplicationMode(): SubstitutionApplicationMode;
|
|
48
|
-
}
|
|
49
|
-
export type FunctionEntityDefinition = {
|
|
50
|
-
kind: DefinitionKind.Source;
|
|
51
|
-
node: PackageFunctionDeclaration | MethodDeclaration | NestedFunctionDeclaration;
|
|
52
|
-
} | {
|
|
53
|
-
kind: DefinitionKind.Intrinsic;
|
|
54
|
-
} | {
|
|
55
|
-
kind: DefinitionKind.TypeScript;
|
|
56
|
-
};
|
|
57
|
-
export declare class PackageFunctionDeclarationEntity implements PackageFunctionEntity {
|
|
58
|
-
private readonly analyzer;
|
|
59
|
-
private readonly node;
|
|
60
|
-
readonly kind = EntityKind.Function;
|
|
61
|
-
readonly subkind = "package";
|
|
62
|
-
private readonly name;
|
|
63
|
-
private readonly typeParameters;
|
|
64
|
-
private readonly parameters;
|
|
65
|
-
private readonly returnType;
|
|
66
|
-
private readonly hiding;
|
|
67
|
-
private modifierFlags_;
|
|
68
|
-
private get modifierFlags();
|
|
69
|
-
constructor(analyzer: Analyzer, node: PackageFunctionDeclaration);
|
|
70
|
-
getName(): Name;
|
|
71
|
-
getContainingPackage(): PackageEntity;
|
|
72
|
-
getTypeParameters(): readonly TypeParameterEntity[];
|
|
73
|
-
getParameters(): readonly ParameterEntity[];
|
|
74
|
-
getReturnType(): types.Type;
|
|
75
|
-
getDefinition(): FunctionEntityDefinition;
|
|
76
|
-
isAsync(): boolean;
|
|
77
|
-
isHidden(): EntityHidingLevel | undefined;
|
|
78
|
-
getTags(): readonly Tag[];
|
|
79
|
-
getTypeParametersArity(): number;
|
|
80
|
-
getSubstitutionApplicationMode(): SubstitutionApplicationMode;
|
|
81
|
-
getTranslation(): Translation | undefined;
|
|
82
|
-
getLocale(): PackageLocale;
|
|
83
|
-
getDialect(): PackageDialect;
|
|
84
|
-
getOriginalEntity(): PackageFunctionEntity;
|
|
85
|
-
}
|
|
86
|
-
export declare class MethodDeclarationEntity implements MethodEntity {
|
|
87
|
-
private readonly analyzer;
|
|
88
|
-
private readonly node;
|
|
89
|
-
readonly kind = EntityKind.Function;
|
|
90
|
-
readonly subkind = "method";
|
|
91
|
-
private readonly name;
|
|
92
|
-
private readonly typeParameters;
|
|
93
|
-
private readonly parameters;
|
|
94
|
-
private readonly returnType;
|
|
95
|
-
private readonly hiding;
|
|
96
|
-
private containingEntity;
|
|
97
|
-
private modifierFlags_;
|
|
98
|
-
private get modifierFlags();
|
|
99
|
-
constructor(analyzer: Analyzer, node: MethodDeclaration);
|
|
100
|
-
getName(): Name;
|
|
101
|
-
getTypeParameters(): readonly TypeParameterEntity[];
|
|
102
|
-
getParameters(): readonly ParameterEntity[];
|
|
103
|
-
getReturnType(): types.Type;
|
|
104
|
-
getDefinition(): FunctionEntityDefinition;
|
|
105
|
-
isAsync(): boolean;
|
|
106
|
-
isHidden(): EntityHidingLevel | undefined;
|
|
107
|
-
getTags(): readonly Tag[];
|
|
108
|
-
getTypeParametersArity(): number;
|
|
109
|
-
isFunctionTypeInvokeMethod(): boolean;
|
|
110
|
-
getContainingEntity(): TypeWithMembersOrExtensionEntity;
|
|
111
|
-
getContainingPackage(): PackageEntity;
|
|
112
|
-
isStatic(): boolean;
|
|
113
|
-
markedBasic(): boolean;
|
|
114
|
-
isOverride(): boolean;
|
|
115
|
-
markedAbstract(): boolean;
|
|
116
|
-
isModifyingOwningPlainObject(): boolean;
|
|
117
|
-
getSubstitutionApplicationMode(): SubstitutionApplicationMode;
|
|
118
|
-
getOverriddenMembers(): readonly types.Method[];
|
|
119
|
-
getTranslation(): Translation | undefined;
|
|
120
|
-
getLocale(): PackageLocale;
|
|
121
|
-
getDialect(): PackageDialect;
|
|
122
|
-
getOriginalEntity(): MethodEntity;
|
|
123
|
-
}
|
|
124
|
-
export declare class NestedFunctionDeclarationEntity implements NestedFunctionEntity {
|
|
125
|
-
private readonly analyzer;
|
|
126
|
-
private readonly node;
|
|
127
|
-
readonly kind = EntityKind.Function;
|
|
128
|
-
readonly subkind = "nested";
|
|
129
|
-
private readonly name;
|
|
130
|
-
private readonly typeParameters;
|
|
131
|
-
private readonly parameters;
|
|
132
|
-
private readonly returnType;
|
|
133
|
-
constructor(analyzer: Analyzer, node: NestedFunctionDeclaration);
|
|
134
|
-
getName(): Name;
|
|
135
|
-
getContainingPackage(): PackageEntity;
|
|
136
|
-
getTypeParameters(): readonly TypeParameterEntity[];
|
|
137
|
-
getParameters(): readonly ParameterEntity[];
|
|
138
|
-
getReturnType(): types.Type;
|
|
139
|
-
getDefinition(): FunctionEntityDefinition;
|
|
140
|
-
isAsync(): boolean;
|
|
141
|
-
isHidden(): EntityHidingLevel | undefined;
|
|
142
|
-
getTags(): readonly Tag[];
|
|
143
|
-
getTypeParametersArity(): number;
|
|
144
|
-
getSubstitutionApplicationMode(): SubstitutionApplicationMode;
|
|
145
|
-
getTranslation(): Translation | undefined;
|
|
146
|
-
getLocale(): PackageLocale;
|
|
147
|
-
getDialect(): PackageDialect;
|
|
148
|
-
getOriginalEntity(): NestedFunctionEntity;
|
|
149
|
-
}
|
|
150
|
-
export declare class IntrinsicPackageFunctionEntity implements PackageFunctionEntity {
|
|
151
|
-
private readonly name;
|
|
152
|
-
private readonly typeParameters;
|
|
153
|
-
private readonly parameters;
|
|
154
|
-
private readonly returnType;
|
|
155
|
-
private readonly isAsync_;
|
|
156
|
-
private readonly isHidden_;
|
|
157
|
-
private readonly tags;
|
|
158
|
-
private readonly containingPackage;
|
|
159
|
-
readonly kind = EntityKind.Function;
|
|
160
|
-
readonly subkind = "package";
|
|
161
|
-
constructor(name: Name, typeParameters: readonly TypeParameterEntity[], parameters: readonly ParameterEntity[], returnType: types.Type, isAsync_: boolean, isHidden_: EntityHidingLevel | undefined, tags: readonly Tag[], containingPackage: PackageEntity);
|
|
162
|
-
getName(): Name;
|
|
163
|
-
getContainingPackage(): PackageEntity;
|
|
164
|
-
getTypeParameters(): readonly TypeParameterEntity[];
|
|
165
|
-
getParameters(): readonly ParameterEntity[];
|
|
166
|
-
getReturnType(): types.Type;
|
|
167
|
-
getDefinition(): FunctionEntityDefinition;
|
|
168
|
-
isAsync(): boolean;
|
|
169
|
-
isHidden(): EntityHidingLevel | undefined;
|
|
170
|
-
getTags(): readonly Tag[];
|
|
171
|
-
getTypeParametersArity(): number;
|
|
172
|
-
getSubstitutionApplicationMode(): SubstitutionApplicationMode;
|
|
173
|
-
getTranslation(): Translation | undefined;
|
|
174
|
-
getLocale(): PackageLocale;
|
|
175
|
-
getDialect(): PackageDialect;
|
|
176
|
-
getOriginalEntity(): PackageFunctionEntity;
|
|
177
|
-
}
|
|
178
|
-
export declare class IntrinsicMethodEntity implements MethodEntity {
|
|
179
|
-
private readonly name;
|
|
180
|
-
private readonly typeParameters;
|
|
181
|
-
private readonly parameters;
|
|
182
|
-
private readonly returnType;
|
|
183
|
-
private readonly isAsync_;
|
|
184
|
-
private readonly isHidden_;
|
|
185
|
-
private readonly tags;
|
|
186
|
-
private readonly isFunctionTypeInvokeMethod_;
|
|
187
|
-
private readonly containingEntity;
|
|
188
|
-
private readonly isStatic_;
|
|
189
|
-
private readonly isBasic_;
|
|
190
|
-
private readonly isOverride_;
|
|
191
|
-
private readonly isAbstract_;
|
|
192
|
-
private readonly isModifyingOwningPlainObject_;
|
|
193
|
-
private readonly overriddenMembers;
|
|
194
|
-
readonly kind = EntityKind.Function;
|
|
195
|
-
readonly subkind = "method";
|
|
196
|
-
constructor(name: Name, typeParameters: readonly TypeParameterEntity[], parameters: readonly ParameterEntity[], returnType: types.Type, isAsync_: boolean, isHidden_: EntityHidingLevel | undefined, tags: readonly Tag[], isFunctionTypeInvokeMethod_: boolean, containingEntity: TypeWithMembersOrExtensionEntity, isStatic_: boolean, isBasic_: boolean, isOverride_: boolean, isAbstract_: boolean, isModifyingOwningPlainObject_: boolean, overriddenMembers: readonly types.Method[]);
|
|
197
|
-
getName(): Name;
|
|
198
|
-
getTypeParameters(): readonly TypeParameterEntity[];
|
|
199
|
-
getParameters(): readonly ParameterEntity[];
|
|
200
|
-
getReturnType(): types.Type;
|
|
201
|
-
getDefinition(): FunctionEntityDefinition;
|
|
202
|
-
isAsync(): boolean;
|
|
203
|
-
isHidden(): EntityHidingLevel | undefined;
|
|
204
|
-
getTags(): readonly Tag[];
|
|
205
|
-
getTypeParametersArity(): number;
|
|
206
|
-
isFunctionTypeInvokeMethod(): boolean;
|
|
207
|
-
getContainingEntity(): TypeWithMembersOrExtensionEntity;
|
|
208
|
-
getContainingPackage(): PackageEntity;
|
|
209
|
-
isStatic(): boolean;
|
|
210
|
-
markedBasic(): boolean;
|
|
211
|
-
isOverride(): boolean;
|
|
212
|
-
markedAbstract(): boolean;
|
|
213
|
-
isModifyingOwningPlainObject(): boolean;
|
|
214
|
-
getSubstitutionApplicationMode(): SubstitutionApplicationMode;
|
|
215
|
-
getOverriddenMembers(): readonly types.Method[];
|
|
216
|
-
getTranslation(): Translation | undefined;
|
|
217
|
-
getLocale(): PackageLocale;
|
|
218
|
-
getDialect(): PackageDialect;
|
|
219
|
-
getOriginalEntity(): MethodEntity;
|
|
220
|
-
}
|
|
221
|
-
export {};
|