@artel/artc 0.6.25231 → 0.6.25233
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 +8 -2
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +2 -2
- package/build/{chunk-VQ5GGKF7.js → chunk-SCSDVK4I.js} +1 -1
- package/build/{chunk-S7CAJWX2.js → chunk-T4JAN46C.js} +9367 -8569
- package/build/{chunk-BG2YEIQO.js → chunk-YA4OCEDT.js} +2 -2
- package/build/types/analysis/Analyzer.d.ts +66 -25
- package/build/types/analysis/BaseExpressionMeaning.d.ts +6 -3
- package/build/types/analysis/DiagnosticCollector.d.ts +3 -2
- package/build/types/analysis/ModifierFlags.d.ts +3 -3
- package/build/types/analysis/ModifierValidator.d.ts +4 -3
- package/build/types/analysis/TypeMemberImplementationValidator.d.ts +13 -0
- package/build/types/common/ArrayUtils.d.ts +5 -0
- package/build/types/diagnostic/DiagnosticCode.d.ts +96 -83
- package/build/types/emitter/ir/Nodes.d.ts +4 -4
- package/build/types/entities/DereferenceOperatorEntity.d.ts +0 -1
- package/build/types/entities/FunctionEntity.d.ts +0 -1
- package/build/types/entities/IndexerEntity.d.ts +0 -1
- package/build/types/entities/OperatorEntity.d.ts +0 -1
- package/build/types/entities/TypeEntityMembers.d.ts +5 -3
- package/build/types/entities/VariableEntity.d.ts +0 -2
- package/build/types/entities/index.d.ts +9 -15
- package/build/types/services/DisplayService.d.ts +1 -0
- package/build/types/types/TypeMembers.d.ts +4 -4
- package/package.json +1 -1
@@ -1,6 +1,6 @@
|
|
1
1
|
import { Analyzer } from '../analysis/index.js';
|
2
2
|
import { Name } from '../common/index.js';
|
3
|
-
import { ConstructorEntity, DereferenceOperatorEntity, DestructorEntity, EntityHidingLevel, IndexerEntity, OperatorEntity, OperatorKind, ParameterVariableEntity,
|
3
|
+
import { ConstructorEntity, DereferenceOperatorEntity, DestructorEntity, EntityHidingLevel, FieldEntity, IndexerEntity, MethodEntity, OperatorEntity, OperatorKind, ParameterVariableEntity, TypeParameterEntity } from '../entities/index.js';
|
4
4
|
import { FunctionType } from './FunctionType.js';
|
5
5
|
import { Substitutions } from './Substitutions.js';
|
6
6
|
import { Type } from './Type.js';
|
@@ -77,16 +77,15 @@ export declare class Operator implements ITypeMember {
|
|
77
77
|
export declare class Constructor implements ITypeMember {
|
78
78
|
private readonly _entity;
|
79
79
|
private readonly _substitutions;
|
80
|
-
private readonly _instanceType;
|
81
80
|
readonly kind = "constructor";
|
82
81
|
private readonly _valueParameters;
|
83
|
-
constructor(_entity: ConstructorEntity, _substitutions: Substitutions
|
82
|
+
constructor(_entity: ConstructorEntity, _substitutions: Substitutions);
|
84
83
|
getValueParameters(): readonly ValueParameter[];
|
85
|
-
getInstanceType(): Type;
|
86
84
|
getEntity(): ConstructorEntity;
|
87
85
|
getSubstitutions(): Substitutions;
|
88
86
|
isHidden(): EntityHidingLevel | undefined;
|
89
87
|
isStatic(): boolean;
|
88
|
+
applySubstitutions(substitutions: Substitutions): TypeMember;
|
90
89
|
equals(other: TypeMember): boolean;
|
91
90
|
}
|
92
91
|
export declare class Destructor implements ITypeMember {
|
@@ -136,4 +135,5 @@ export interface ITypeMember {
|
|
136
135
|
isStatic(): boolean;
|
137
136
|
getSubstitutions(): Substitutions;
|
138
137
|
equals(other: TypeMember): boolean;
|
138
|
+
applySubstitutions(substitutions: Substitutions): TypeMember;
|
139
139
|
}
|