@artel/artc 0.6.25213 → 0.6.25214
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 +16 -2
- package/build/{chunk-6UMHRF7Y.js → chunk-SKJMYOQR.js} +3 -3
- package/build/{chunk-YFV3TSQP.js → chunk-YCHDDDYS.js} +3 -3
- package/build/{chunk-X4XDV2CH.js → chunk-ZFBZFTRR.js} +1182 -1185
- package/build/types/analysis/Analyzer.d.ts +7 -8
- package/build/types/analysis/IdentifierExpressionMeaning.d.ts +1 -1
- package/build/types/analysis/PropertyAccessExpressionMeaning.d.ts +1 -2
- package/build/types/analysis/TypeMemberLookup.d.ts +14 -0
- package/build/types/analysis/WellKnownDeclarations.d.ts +3 -2
- package/build/types/diagnostic/DiagnosticCode.d.ts +112 -152
- package/build/types/emitter/Entities.d.ts +1 -0
- package/build/types/entities/MethodEntity.d.ts +6 -1
- package/build/types/entities/OperatorEntity.d.ts +3 -0
- package/build/types/entities/OperatorKind.d.ts +19 -20
- package/build/types/entities/VariableEntity.d.ts +8 -1
- package/build/types/tree/OperatorKind.d.ts +16 -17
- package/build/types/tree/green/Nodes.d.ts +1 -1
- package/build/types/tree/red/Nodes.d.ts +1 -1
- package/build/types/ts-interop/Entities.d.ts +8 -0
- package/build/types/types/StandardTypes.d.ts +2 -2
- package/package.json +1 -1
@@ -283,6 +283,7 @@ export declare class TsPropertyEntity implements TypeVariableEntity {
|
|
283
283
|
readonly kind = EntityKind.Variable;
|
284
284
|
readonly subkind = "type";
|
285
285
|
private readonly _type;
|
286
|
+
private readonly _overriddenMember;
|
286
287
|
private get declaration();
|
287
288
|
constructor(_tsctx: TsInteropContext, _symbol: ts.Symbol, _containingType: TypeEntityWithMembers, _forceStatic: boolean);
|
288
289
|
getName(): Name;
|
@@ -299,6 +300,7 @@ export declare class TsPropertyEntity implements TypeVariableEntity {
|
|
299
300
|
isRedefinable(): boolean;
|
300
301
|
isRedefined(): boolean;
|
301
302
|
isAbstract(): boolean;
|
303
|
+
getOverriddenMember(): types.Variable | undefined;
|
302
304
|
}
|
303
305
|
export declare class TsAccessorEntity implements TypeVariableEntity {
|
304
306
|
private readonly _tsctx;
|
@@ -310,6 +312,7 @@ export declare class TsAccessorEntity implements TypeVariableEntity {
|
|
310
312
|
private readonly _type;
|
311
313
|
private readonly _getter;
|
312
314
|
private readonly _setter;
|
315
|
+
private readonly _overriddenMember;
|
313
316
|
private get getAccessorDeclaration();
|
314
317
|
constructor(_tsctx: TsInteropContext, _symbol: ts.Symbol, _containingType: TypeEntityWithMembers, _forceStatic: boolean);
|
315
318
|
getName(): Name;
|
@@ -326,6 +329,7 @@ export declare class TsAccessorEntity implements TypeVariableEntity {
|
|
326
329
|
isRedefinable(): boolean;
|
327
330
|
isRedefined(): boolean;
|
328
331
|
isAbstract(): boolean;
|
332
|
+
getOverriddenMember(): types.Variable | undefined;
|
329
333
|
}
|
330
334
|
export declare class TsGetAccessorEntity implements GetterEntity {
|
331
335
|
private readonly _tsctx;
|
@@ -366,6 +370,7 @@ export declare class TsMethodEntity implements TypeMethodEntity {
|
|
366
370
|
private readonly _typeParameters;
|
367
371
|
private readonly _valueParameters;
|
368
372
|
private readonly _returnType;
|
373
|
+
private readonly _overriddenMember;
|
369
374
|
constructor(_tsctx: TsInteropContext, _symbol: ts.Symbol, _declaration: ts.MethodDeclaration | ts.MethodSignature, _containingType: TypeEntityWithMembers, _forceStatic: boolean);
|
370
375
|
getName(): Name;
|
371
376
|
getTypeParameters(): readonly TypeParameterEntity[];
|
@@ -384,6 +389,7 @@ export declare class TsMethodEntity implements TypeMethodEntity {
|
|
384
389
|
getTypeParametersArity(): number;
|
385
390
|
isMethodTypeInvokeMethod(): boolean;
|
386
391
|
getSubstitutionApplicationMode(): SubstitutionApplicationMode;
|
392
|
+
getOverriddenMember(): types.Method | undefined;
|
387
393
|
}
|
388
394
|
export declare class TsIteratorMethodEntity implements TypeMethodEntity {
|
389
395
|
private readonly _tsctx;
|
@@ -392,6 +398,7 @@ export declare class TsIteratorMethodEntity implements TypeMethodEntity {
|
|
392
398
|
readonly kind = EntityKind.Method;
|
393
399
|
readonly subkind = "type";
|
394
400
|
private readonly _returnType;
|
401
|
+
private readonly _overriddenMethod;
|
395
402
|
private get firstDeclaration();
|
396
403
|
constructor(_tsctx: TsInteropContext, _symbol: ts.Symbol, _containingType: TypeEntityWithMembers);
|
397
404
|
getName(): Name;
|
@@ -411,6 +418,7 @@ export declare class TsIteratorMethodEntity implements TypeMethodEntity {
|
|
411
418
|
getTypeParametersArity(): number;
|
412
419
|
isMethodTypeInvokeMethod(): boolean;
|
413
420
|
getSubstitutionApplicationMode(): SubstitutionApplicationMode;
|
421
|
+
getOverriddenMember(): types.Method | undefined;
|
414
422
|
}
|
415
423
|
export declare class TsParameterEntity implements ParameterVariableEntity {
|
416
424
|
private readonly _tsctx;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { Analyzer } from '../analysis/index.js';
|
2
|
-
import { StructuredType, UnresolvedType
|
2
|
+
import { StructuredType, UnresolvedType } from './index.js';
|
3
3
|
export declare class StandardTypes {
|
4
4
|
private readonly _analyzer;
|
5
5
|
private _refObject;
|
@@ -29,7 +29,7 @@ export declare class StandardTypes {
|
|
29
29
|
get textTemplate(): StructuredType;
|
30
30
|
get char(): StructuredType;
|
31
31
|
get unresolved(): UnresolvedType;
|
32
|
-
get yesNo():
|
32
|
+
get yesNo(): StructuredType;
|
33
33
|
get none(): StructuredType;
|
34
34
|
get measure(): StructuredType;
|
35
35
|
get enumerator(): StructuredType;
|