@artel/artc 0.6.25221 → 0.6.25223
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 +10 -2
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +281 -261
- package/build/{chunk-XMV7LOUY.js → chunk-AX3LQ2CF.js} +2 -2
- package/build/{chunk-X7TMUZ4C.js → chunk-DZNNWICP.js} +2738 -1794
- package/build/{chunk-5F65ZJE3.js → chunk-LG4Z4SWO.js} +1 -1
- package/build/types/analysis/Analyzer.d.ts +13 -10
- package/build/types/analysis/ControlFlowGraphBuilder.d.ts +12 -4
- package/build/types/analysis/LocalizationContext.d.ts +2 -2
- package/build/types/analysis/Lookup.d.ts +4 -4
- package/build/types/analysis/NodeTypeUtils.d.ts +1 -6
- package/build/types/analysis/PropertyAccessExpressionMeaning.d.ts +1 -1
- package/build/types/analysis/Scope.d.ts +21 -44
- package/build/types/analysis/SemanticContext.d.ts +21 -1
- package/build/types/analysis/SemanticContextBuilder.d.ts +3 -0
- package/build/types/analysis/StatementBlockScopeBuilder.d.ts +20 -17
- package/build/types/analysis/TypeMemberLookup.d.ts +39 -11
- package/build/types/analysis/TypeNarrower.d.ts +48 -8
- package/build/types/emitter/IrBuilder.d.ts +3 -1
- package/build/types/emitter/IrToJs.d.ts +1 -0
- package/build/types/emitter/Transformer.d.ts +2 -0
- package/build/types/emitter/ir/Nodes.d.ts +86 -78
- package/build/types/emitter/ir/types.d.ts +2 -2
- package/build/types/entities/index.d.ts +3 -0
- package/build/types/parser/Scanner.d.ts +1 -2
- package/build/types/tree/KeywordKind.d.ts +41 -40
- package/build/types/tree/NodeKind.d.ts +63 -61
- package/build/types/tree/green/Nodes.d.ts +83 -56
- package/build/types/tree/green/SyntaxFactory.d.ts +12 -10
- package/build/types/tree/green/SyntaxToCode.d.ts +1 -0
- package/build/types/tree/red/Nodes.d.ts +69 -41
- package/build/types/types/TypeMembers.d.ts +5 -0
- package/package.json +1 -1
@@ -334,11 +334,11 @@ export declare class PackageConstructorDeclaration extends BaseNode {
|
|
334
334
|
readonly green: green.PackageConstructorDeclaration;
|
335
335
|
readonly parent: PackageMemberDeclarationParent;
|
336
336
|
private _children;
|
337
|
-
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Creation>,
|
337
|
+
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Creation>, FunctionBlock];
|
338
338
|
get tagList(): TagList;
|
339
339
|
get modifierList(): ModifierList;
|
340
340
|
get creationKeyword(): Keyword<KeywordKind.Creation>;
|
341
|
-
get block():
|
341
|
+
get block(): FunctionBlock;
|
342
342
|
protected get thisAsNode(): Node;
|
343
343
|
constructor(green: green.PackageConstructorDeclaration, rangeStart: number, parent: PackageMemberDeclarationParent);
|
344
344
|
private createChildren;
|
@@ -348,11 +348,11 @@ export declare class PackageEntryPointDeclaration extends BaseNode {
|
|
348
348
|
readonly green: green.PackageEntryPointDeclaration;
|
349
349
|
readonly parent: PackageMemberDeclarationParent;
|
350
350
|
private _children;
|
351
|
-
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Run>,
|
351
|
+
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Run>, FunctionBlock];
|
352
352
|
get tagList(): TagList;
|
353
353
|
get modifierList(): ModifierList;
|
354
354
|
get runKeyword(): Keyword<KeywordKind.Run>;
|
355
|
-
get block():
|
355
|
+
get block(): FunctionBlock;
|
356
356
|
protected get thisAsNode(): Node;
|
357
357
|
constructor(green: green.PackageEntryPointDeclaration, rangeStart: number, parent: PackageMemberDeclarationParent);
|
358
358
|
private createChildren;
|
@@ -362,7 +362,7 @@ export declare class PackageMethodDeclaration extends BaseNode {
|
|
362
362
|
readonly green: green.PackageMethodDeclaration;
|
363
363
|
readonly parent: PackageMemberDeclarationParent;
|
364
364
|
private _children;
|
365
|
-
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Function>, Identifier, TypeParameterClause | undefined, ParameterClause, TypeAnnotation | undefined,
|
365
|
+
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Function>, Identifier, TypeParameterClause | undefined, ParameterClause, TypeAnnotation | undefined, FunctionBlock | undefined];
|
366
366
|
get tagList(): TagList;
|
367
367
|
get modifierList(): ModifierList;
|
368
368
|
get functionKeyword(): Keyword<KeywordKind.Function>;
|
@@ -370,7 +370,7 @@ export declare class PackageMethodDeclaration extends BaseNode {
|
|
370
370
|
get typeParameterClause(): TypeParameterClause | undefined;
|
371
371
|
get parameterClause(): ParameterClause;
|
372
372
|
get returnTypeAnnotation(): TypeAnnotation | undefined;
|
373
|
-
get block():
|
373
|
+
get block(): FunctionBlock | undefined;
|
374
374
|
protected get thisAsNode(): Node;
|
375
375
|
constructor(green: green.PackageMethodDeclaration, rangeStart: number, parent: PackageMemberDeclarationParent);
|
376
376
|
private createChildren;
|
@@ -502,13 +502,13 @@ export declare class PackageVariableGetterDeclaration extends BaseNode {
|
|
502
502
|
readonly green: green.PackageVariableGetterDeclaration;
|
503
503
|
readonly parent: PackageMemberDeclarationParent;
|
504
504
|
private _children;
|
505
|
-
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Get>, Identifier, TypeAnnotation,
|
505
|
+
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Get>, Identifier, TypeAnnotation, FunctionBlock | undefined];
|
506
506
|
get tagList(): TagList;
|
507
507
|
get modifierList(): ModifierList;
|
508
508
|
get getKeyword(): Keyword<KeywordKind.Get>;
|
509
509
|
get name(): Identifier;
|
510
510
|
get typeAnnotation(): TypeAnnotation;
|
511
|
-
get block():
|
511
|
+
get block(): FunctionBlock | undefined;
|
512
512
|
protected get thisAsNode(): Node;
|
513
513
|
constructor(green: green.PackageVariableGetterDeclaration, rangeStart: number, parent: PackageMemberDeclarationParent);
|
514
514
|
private createChildren;
|
@@ -518,12 +518,12 @@ export declare class PackageVariableSetterDeclaration extends BaseNode {
|
|
518
518
|
readonly green: green.PackageVariableSetterDeclaration;
|
519
519
|
readonly parent: PackageMemberDeclarationParent;
|
520
520
|
private _children;
|
521
|
-
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Set>, Identifier,
|
521
|
+
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Set>, Identifier, FunctionBlock | undefined];
|
522
522
|
get tagList(): TagList;
|
523
523
|
get modifierList(): ModifierList;
|
524
524
|
get setKeyword(): Keyword<KeywordKind.Set>;
|
525
525
|
get name(): Identifier;
|
526
|
-
get block():
|
526
|
+
get block(): FunctionBlock | undefined;
|
527
527
|
protected get thisAsNode(): Node;
|
528
528
|
constructor(green: green.PackageVariableSetterDeclaration, rangeStart: number, parent: PackageMemberDeclarationParent);
|
529
529
|
private createChildren;
|
@@ -635,12 +635,12 @@ export declare class TypeConstructorDeclaration extends BaseNode {
|
|
635
635
|
readonly green: green.TypeConstructorDeclaration;
|
636
636
|
readonly parent: TypeMemberDeclarationParent;
|
637
637
|
private _children;
|
638
|
-
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Creation>, ParameterClause,
|
638
|
+
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Creation>, ParameterClause, FunctionBlock | undefined];
|
639
639
|
get tagList(): TagList;
|
640
640
|
get modifierList(): ModifierList;
|
641
641
|
get creationKeyword(): Keyword<KeywordKind.Creation>;
|
642
642
|
get parameterClause(): ParameterClause;
|
643
|
-
get block():
|
643
|
+
get block(): FunctionBlock | undefined;
|
644
644
|
protected get thisAsNode(): Node;
|
645
645
|
constructor(green: green.TypeConstructorDeclaration, rangeStart: number, parent: TypeMemberDeclarationParent);
|
646
646
|
private createChildren;
|
@@ -650,12 +650,12 @@ export declare class TypeDestructorDeclaration extends BaseNode {
|
|
650
650
|
readonly green: green.TypeDestructorDeclaration;
|
651
651
|
readonly parent: TypeMemberDeclarationParent;
|
652
652
|
private _children;
|
653
|
-
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Destruction>, ParameterClause,
|
653
|
+
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Destruction>, ParameterClause, FunctionBlock | undefined];
|
654
654
|
get tagList(): TagList;
|
655
655
|
get modifierList(): ModifierList;
|
656
656
|
get destructionKeyword(): Keyword<KeywordKind.Destruction>;
|
657
657
|
get parameterClause(): ParameterClause;
|
658
|
-
get block():
|
658
|
+
get block(): FunctionBlock | undefined;
|
659
659
|
protected get thisAsNode(): Node;
|
660
660
|
constructor(green: green.TypeDestructorDeclaration, rangeStart: number, parent: TypeMemberDeclarationParent);
|
661
661
|
private createChildren;
|
@@ -665,13 +665,13 @@ export declare class TypeIndexedGetterDeclaration extends BaseNode {
|
|
665
665
|
readonly green: green.TypeIndexedGetterDeclaration;
|
666
666
|
readonly parent: TypeMemberDeclarationParent;
|
667
667
|
private _children;
|
668
|
-
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Get>, TypeIndexerParameterClause, TypeAnnotation,
|
668
|
+
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Get>, TypeIndexerParameterClause, TypeAnnotation, FunctionBlock | undefined];
|
669
669
|
get tagList(): TagList;
|
670
670
|
get modifierList(): ModifierList;
|
671
671
|
get getKeyword(): Keyword<KeywordKind.Get>;
|
672
672
|
get parameterClause(): TypeIndexerParameterClause;
|
673
673
|
get typeAnnotation(): TypeAnnotation;
|
674
|
-
get block():
|
674
|
+
get block(): FunctionBlock | undefined;
|
675
675
|
protected get thisAsNode(): Node;
|
676
676
|
constructor(green: green.TypeIndexedGetterDeclaration, rangeStart: number, parent: TypeMemberDeclarationParent);
|
677
677
|
private createChildren;
|
@@ -681,12 +681,12 @@ export declare class TypeIndexedSetterDeclaration extends BaseNode {
|
|
681
681
|
readonly green: green.TypeIndexedSetterDeclaration;
|
682
682
|
readonly parent: TypeMemberDeclarationParent;
|
683
683
|
private _children;
|
684
|
-
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Set>, TypeIndexerParameterClause,
|
684
|
+
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Set>, TypeIndexerParameterClause, FunctionBlock | undefined];
|
685
685
|
get tagList(): TagList;
|
686
686
|
get modifierList(): ModifierList;
|
687
687
|
get setKeyword(): Keyword<KeywordKind.Set>;
|
688
688
|
get parameterClause(): TypeIndexerParameterClause;
|
689
|
-
get block():
|
689
|
+
get block(): FunctionBlock | undefined;
|
690
690
|
protected get thisAsNode(): Node;
|
691
691
|
constructor(green: green.TypeIndexedSetterDeclaration, rangeStart: number, parent: TypeMemberDeclarationParent);
|
692
692
|
private createChildren;
|
@@ -710,13 +710,13 @@ export declare class TypeDereferencedVariableGetterDeclaration extends BaseNode
|
|
710
710
|
readonly green: green.TypeDereferencedVariableGetterDeclaration;
|
711
711
|
readonly parent: TypeMemberDeclarationParent;
|
712
712
|
private _children;
|
713
|
-
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Get>, Token<green.TokenKind.Caret>, TypeAnnotation,
|
713
|
+
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Get>, Token<green.TokenKind.Caret>, TypeAnnotation, FunctionBlock | undefined];
|
714
714
|
get tagList(): TagList;
|
715
715
|
get modifierList(): ModifierList;
|
716
716
|
get getKeyword(): Keyword<KeywordKind.Get>;
|
717
717
|
get caretToken(): Token<TokenKind.Caret>;
|
718
718
|
get typeAnnotation(): TypeAnnotation;
|
719
|
-
get block():
|
719
|
+
get block(): FunctionBlock | undefined;
|
720
720
|
protected get thisAsNode(): Node;
|
721
721
|
constructor(green: green.TypeDereferencedVariableGetterDeclaration, rangeStart: number, parent: TypeMemberDeclarationParent);
|
722
722
|
private createChildren;
|
@@ -726,12 +726,12 @@ export declare class TypeDereferencedVariableSetterDeclaration extends BaseNode
|
|
726
726
|
readonly green: green.TypeDereferencedVariableSetterDeclaration;
|
727
727
|
readonly parent: TypeMemberDeclarationParent;
|
728
728
|
private _children;
|
729
|
-
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Set>, Token<green.TokenKind.Caret>,
|
729
|
+
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Set>, Token<green.TokenKind.Caret>, FunctionBlock | undefined];
|
730
730
|
get tagList(): TagList;
|
731
731
|
get modifierList(): ModifierList;
|
732
732
|
get setKeyword(): Keyword<KeywordKind.Set>;
|
733
733
|
get caretToken(): Token<TokenKind.Caret>;
|
734
|
-
get block():
|
734
|
+
get block(): FunctionBlock | undefined;
|
735
735
|
protected get thisAsNode(): Node;
|
736
736
|
constructor(green: green.TypeDereferencedVariableSetterDeclaration, rangeStart: number, parent: TypeMemberDeclarationParent);
|
737
737
|
private createChildren;
|
@@ -741,7 +741,7 @@ export declare class TypeMethodDeclaration extends BaseNode {
|
|
741
741
|
readonly green: green.TypeMethodDeclaration;
|
742
742
|
readonly parent: TypeMemberDeclarationParent;
|
743
743
|
private _children;
|
744
|
-
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Function>, Identifier, TypeParameterClause | undefined, ParameterClause, TypeAnnotation | undefined,
|
744
|
+
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Function>, Identifier, TypeParameterClause | undefined, ParameterClause, TypeAnnotation | undefined, FunctionBlock | undefined];
|
745
745
|
get tagList(): TagList;
|
746
746
|
get modifierList(): ModifierList;
|
747
747
|
get functionKeyword(): Keyword<KeywordKind.Function>;
|
@@ -749,7 +749,7 @@ export declare class TypeMethodDeclaration extends BaseNode {
|
|
749
749
|
get typeParameterClause(): TypeParameterClause | undefined;
|
750
750
|
get parameterClause(): ParameterClause;
|
751
751
|
get returnTypeAnnotation(): TypeAnnotation | undefined;
|
752
|
-
get block():
|
752
|
+
get block(): FunctionBlock | undefined;
|
753
753
|
protected get thisAsNode(): Node;
|
754
754
|
constructor(green: green.TypeMethodDeclaration, rangeStart: number, parent: TypeMemberDeclarationParent);
|
755
755
|
private createChildren;
|
@@ -759,14 +759,14 @@ export declare class OperatorDeclaration extends BaseNode {
|
|
759
759
|
readonly green: green.OperatorDeclaration;
|
760
760
|
readonly parent: TypeMemberDeclarationParent;
|
761
761
|
private _children;
|
762
|
-
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Function>, Identifier, ParameterClause, TypeAnnotation | undefined,
|
762
|
+
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Function>, Identifier, ParameterClause, TypeAnnotation | undefined, FunctionBlock | undefined];
|
763
763
|
get tagList(): TagList;
|
764
764
|
get modifierList(): ModifierList;
|
765
765
|
get functionKeyword(): Keyword<KeywordKind.Function>;
|
766
766
|
get name(): Identifier;
|
767
767
|
get parameterClause(): ParameterClause;
|
768
768
|
get returnTypeAnnotation(): TypeAnnotation | undefined;
|
769
|
-
get block():
|
769
|
+
get block(): FunctionBlock | undefined;
|
770
770
|
get operatorKind(): OperatorKind;
|
771
771
|
protected get thisAsNode(): Node;
|
772
772
|
constructor(green: green.OperatorDeclaration, rangeStart: number, parent: TypeMemberDeclarationParent);
|
@@ -793,13 +793,13 @@ export declare class TypeVariableGetterDeclaration extends BaseNode {
|
|
793
793
|
readonly green: green.TypeVariableGetterDeclaration;
|
794
794
|
readonly parent: TypeMemberDeclarationParent;
|
795
795
|
private _children;
|
796
|
-
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Get>, Identifier, TypeAnnotation,
|
796
|
+
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Get>, Identifier, TypeAnnotation, FunctionBlock | undefined];
|
797
797
|
get tagList(): TagList;
|
798
798
|
get modifierList(): ModifierList;
|
799
799
|
get getKeyword(): Keyword<KeywordKind.Get>;
|
800
800
|
get name(): Identifier;
|
801
801
|
get typeAnnotation(): TypeAnnotation;
|
802
|
-
get block():
|
802
|
+
get block(): FunctionBlock | undefined;
|
803
803
|
protected get thisAsNode(): Node;
|
804
804
|
constructor(green: green.TypeVariableGetterDeclaration, rangeStart: number, parent: TypeMemberDeclarationParent);
|
805
805
|
private createChildren;
|
@@ -809,12 +809,12 @@ export declare class TypeVariableSetterDeclaration extends BaseNode {
|
|
809
809
|
readonly green: green.TypeVariableSetterDeclaration;
|
810
810
|
readonly parent: TypeMemberDeclarationParent;
|
811
811
|
private _children;
|
812
|
-
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Set>, Identifier,
|
812
|
+
get children(): readonly [TagList, ModifierList, Keyword<green.KeywordKind.Set>, Identifier, FunctionBlock | undefined];
|
813
813
|
get tagList(): TagList;
|
814
814
|
get modifierList(): ModifierList;
|
815
815
|
get setKeyword(): Keyword<KeywordKind.Set>;
|
816
816
|
get name(): Identifier;
|
817
|
-
get block():
|
817
|
+
get block(): FunctionBlock | undefined;
|
818
818
|
protected get thisAsNode(): Node;
|
819
819
|
constructor(green: green.TypeVariableSetterDeclaration, rangeStart: number, parent: TypeMemberDeclarationParent);
|
820
820
|
private createChildren;
|
@@ -837,14 +837,14 @@ export declare class NestedMethodDeclaration extends BaseNode {
|
|
837
837
|
readonly green: green.NestedMethodDeclaration;
|
838
838
|
readonly parent: NestedMethodDeclarationParent;
|
839
839
|
private _children;
|
840
|
-
get children(): readonly [Keyword<green.KeywordKind.Async> | undefined, Keyword<green.KeywordKind.Function>, Identifier, TypeParameterClause | undefined, ParameterClause, TypeAnnotation | undefined,
|
840
|
+
get children(): readonly [Keyword<green.KeywordKind.Async> | undefined, Keyword<green.KeywordKind.Function>, Identifier, TypeParameterClause | undefined, ParameterClause, TypeAnnotation | undefined, FunctionBlock];
|
841
841
|
get asyncKeyword(): Keyword<KeywordKind.Async> | undefined;
|
842
842
|
get functionKeyword(): Keyword<KeywordKind.Function>;
|
843
843
|
get name(): Identifier;
|
844
844
|
get typeParameterClause(): TypeParameterClause | undefined;
|
845
845
|
get parameterClause(): ParameterClause;
|
846
846
|
get returnTypeAnnotation(): TypeAnnotation | undefined;
|
847
|
-
get block():
|
847
|
+
get block(): FunctionBlock;
|
848
848
|
protected get thisAsNode(): Node;
|
849
849
|
constructor(green: green.NestedMethodDeclaration, rangeStart: number, parent: NestedMethodDeclarationParent);
|
850
850
|
private createChildren;
|
@@ -878,7 +878,7 @@ export declare class EnumerationVariableDeclaration extends BaseNode {
|
|
878
878
|
private createChildren;
|
879
879
|
}
|
880
880
|
export type Expression = ArrayLiteral | AsExpression | AssertionExpression | AssumptionExpression | BinaryExpression | MethodBlockLiteral | CallExpression | IdentifierExpression | AutotypeCallExpression | IndexedAccessExpression | InvalidExpression | IsExpression | MethodLiteral | ParenthesizedExpression | WhenTernaryExpression | PrefixUnaryExpression | PropertyAccessExpression | ReferenceExpression | DereferenceExpression | TextTemplateLiteral | GenericSpecializationExpression | DefaultMatchExpression | TokenExpression | KeywordExpression | ObjectExpression | BaseExpression;
|
881
|
-
export type ExpressionParent = ArrayLiteralElementList | AsExpression | AssertionExpression | AssumptionExpression | AssignmentStatement | BinaryExpression | Argument | CallExpression | DisposeStatement | ErrorStatement | ExpressionStatement | ForStatement | PackageVariableDeclaration | IfStatement | IndexedAccessExpression | IsExpression | LocalVariableDeclaration | MatchExpressionList | ParameterDeclaration | ParenthesizedExpression | WhenTernaryExpression | PrefixUnaryExpression | PropertyAccessExpression | ReferenceExpression | DereferenceExpression | LoopStatement | ReturnStatement | TextTemplateSpan | TypeVariableDeclaration | SwitchStatement | VariantDeclaration | WhileStatement | YieldStatement | GenericSpecializationExpression | ElseIfClause | TextTemplateLiteralTranslation;
|
881
|
+
export type ExpressionParent = ArrayLiteralElementList | AsExpression | AssertionExpression | AssumptionExpression | AssignmentStatement | BinaryExpression | Argument | CallExpression | DisposeStatement | ErrorStatement | ImportantStatement | ExpressionStatement | ForStatement | PackageVariableDeclaration | IfStatement | IndexedAccessExpression | IsExpression | LocalVariableDeclaration | MatchExpressionList | ParameterDeclaration | ParenthesizedExpression | WhenTernaryExpression | PrefixUnaryExpression | PropertyAccessExpression | ReferenceExpression | DereferenceExpression | LoopStatement | ReturnStatement | TextTemplateSpan | TypeVariableDeclaration | SwitchStatement | VariantDeclaration | WhileStatement | YieldStatement | GenericSpecializationExpression | ElseIfClause | TextTemplateLiteralTranslation | FunctionBlock;
|
882
882
|
export declare class ArrayLiteral extends BaseNode {
|
883
883
|
readonly kind = NodeKind.ArrayLiteral;
|
884
884
|
readonly green: green.ArrayLiteral;
|
@@ -962,8 +962,8 @@ export declare class MethodBlockLiteral extends BaseNode {
|
|
962
962
|
readonly green: green.MethodBlockLiteral;
|
963
963
|
readonly parent: ExpressionParent;
|
964
964
|
private _children;
|
965
|
-
get children(): readonly [
|
966
|
-
get block():
|
965
|
+
get children(): readonly [FunctionBlock];
|
966
|
+
get block(): FunctionBlock;
|
967
967
|
protected get thisAsNode(): Node;
|
968
968
|
constructor(green: green.MethodBlockLiteral, rangeStart: number, parent: ExpressionParent);
|
969
969
|
private createChildren;
|
@@ -1050,12 +1050,12 @@ export declare class MethodLiteral extends BaseNode {
|
|
1050
1050
|
readonly green: green.MethodLiteral;
|
1051
1051
|
readonly parent: ExpressionParent;
|
1052
1052
|
private _children;
|
1053
|
-
get children(): readonly [Keyword<green.KeywordKind.Async> | undefined, Keyword<green.KeywordKind.Function>, ParameterClause, TypeAnnotation | undefined,
|
1053
|
+
get children(): readonly [Keyword<green.KeywordKind.Async> | undefined, Keyword<green.KeywordKind.Function>, ParameterClause, TypeAnnotation | undefined, FunctionBlock];
|
1054
1054
|
get asyncKeyword(): Keyword<KeywordKind.Async> | undefined;
|
1055
1055
|
get functionKeyword(): Keyword<KeywordKind.Function>;
|
1056
1056
|
get parameterClause(): ParameterClause;
|
1057
1057
|
get returnTypeAnnotation(): TypeAnnotation | undefined;
|
1058
|
-
get block():
|
1058
|
+
get block(): FunctionBlock;
|
1059
1059
|
protected get thisAsNode(): Node;
|
1060
1060
|
constructor(green: green.MethodLiteral, rangeStart: number, parent: ExpressionParent);
|
1061
1061
|
private createChildren;
|
@@ -1261,7 +1261,7 @@ export declare class DefaultMatchExpression extends BaseNode {
|
|
1261
1261
|
constructor(green: green.DefaultMatchExpression, rangeStart: number, parent: ExpressionParent);
|
1262
1262
|
private createChildren;
|
1263
1263
|
}
|
1264
|
-
export type Statement = RunStatement | TryStatement | EmptyStatement | IfStatement | ForStatement | WhileStatement | LoopStatement | ReturnStatement | ErrorStatement | LocalVariableDeclarationStatement | AssignmentStatement | YieldStatement | InvalidStatement | ExpressionStatement | SwitchStatement | BreakLoopStatement | ContinueLoopStatement | NestedMethodDeclarationStatement | DisposeStatement;
|
1264
|
+
export type Statement = RunStatement | TryStatement | EmptyStatement | IfStatement | ForStatement | WhileStatement | LoopStatement | ReturnStatement | ErrorStatement | LocalVariableDeclarationStatement | AssignmentStatement | YieldStatement | InvalidStatement | ImportantStatement | ExpressionStatement | SwitchStatement | BreakLoopStatement | ContinueLoopStatement | NestedMethodDeclarationStatement | DisposeStatement;
|
1265
1265
|
export type StatementParent = StatementList;
|
1266
1266
|
export declare class AssignmentStatement extends BaseNode {
|
1267
1267
|
readonly kind = NodeKind.AssignmentStatement;
|
@@ -1278,7 +1278,7 @@ export declare class AssignmentStatement extends BaseNode {
|
|
1278
1278
|
}
|
1279
1279
|
export type AssignmentStatementOperator = Token<TokenKind.Equals> | Token<TokenKind.PlusEquals> | Token<TokenKind.MinusEquals> | Token<TokenKind.AsteriskEquals> | Token<TokenKind.SlashEquals> | Token<TokenKind.BackslashEquals>;
|
1280
1280
|
export type StatementListElement = Statement | Semicolon;
|
1281
|
-
export type StatementListParent = StatementBlock;
|
1281
|
+
export type StatementListParent = FunctionBlock | StatementBlock;
|
1282
1282
|
export declare class StatementList extends BaseNode {
|
1283
1283
|
readonly kind = NodeKind.StatementList;
|
1284
1284
|
readonly green: green.StatementList;
|
@@ -1291,7 +1291,7 @@ export declare class StatementList extends BaseNode {
|
|
1291
1291
|
constructor(green: green.StatementList, rangeStart: number, parent: StatementListParent);
|
1292
1292
|
private createChildren;
|
1293
1293
|
}
|
1294
|
-
export type StatementBlockParent =
|
1294
|
+
export type StatementBlockParent = IfStatement | ElseIfClause | ElseClause | RunStatement | TryStatement | CatchClause | FinallyClause | ForStatement | LoopStatement | CaseClause | WhileStatement;
|
1295
1295
|
export declare class StatementBlock extends BaseNode {
|
1296
1296
|
readonly kind = NodeKind.StatementBlock;
|
1297
1297
|
readonly green: green.StatementBlock;
|
@@ -1305,6 +1305,21 @@ export declare class StatementBlock extends BaseNode {
|
|
1305
1305
|
constructor(green: green.StatementBlock, rangeStart: number, parent: StatementBlockParent);
|
1306
1306
|
private createChildren;
|
1307
1307
|
}
|
1308
|
+
export type FunctionBlockParent = PackageVariableGetterDeclaration | PackageVariableSetterDeclaration | PackageMethodDeclaration | TypeVariableGetterDeclaration | TypeVariableSetterDeclaration | TypeIndexedGetterDeclaration | TypeIndexedSetterDeclaration | TypeDereferencedVariableGetterDeclaration | TypeDereferencedVariableSetterDeclaration | TypeMethodDeclaration | OperatorDeclaration | NestedMethodDeclaration | MethodLiteral | MethodBlockLiteral | PackageConstructorDeclaration | PackageEntryPointDeclaration | TypeConstructorDeclaration | TypeDestructorDeclaration;
|
1309
|
+
export type ExpressionOrStatementList = Expression | StatementList;
|
1310
|
+
export declare class FunctionBlock extends BaseNode {
|
1311
|
+
readonly kind = NodeKind.FunctionBlock;
|
1312
|
+
readonly green: green.FunctionBlock;
|
1313
|
+
readonly parent: FunctionBlockParent;
|
1314
|
+
private _children;
|
1315
|
+
get children(): readonly [Token<green.TokenKind.OpenBrace>, ExpressionOrStatementList, Token<green.TokenKind.CloseBrace>];
|
1316
|
+
get openBraceToken(): Token<TokenKind.OpenBrace>;
|
1317
|
+
get expressionOrStatementList(): ExpressionOrStatementList;
|
1318
|
+
get closeBraceToken(): Token<TokenKind.CloseBrace>;
|
1319
|
+
protected get thisAsNode(): Node;
|
1320
|
+
constructor(green: green.FunctionBlock, rangeStart: number, parent: FunctionBlockParent);
|
1321
|
+
private createChildren;
|
1322
|
+
}
|
1308
1323
|
export declare class BreakLoopStatement extends BaseNode {
|
1309
1324
|
readonly kind = NodeKind.BreakLoopStatement;
|
1310
1325
|
readonly green: green.BreakLoopStatement;
|
@@ -1431,6 +1446,19 @@ export declare class ErrorStatement extends BaseNode {
|
|
1431
1446
|
constructor(green: green.ErrorStatement, rangeStart: number, parent: ErrorStatementParent);
|
1432
1447
|
private createChildren;
|
1433
1448
|
}
|
1449
|
+
export type ImportantStatementParent = StatementParent;
|
1450
|
+
export declare class ImportantStatement extends BaseNode {
|
1451
|
+
readonly kind = NodeKind.ImportantStatement;
|
1452
|
+
readonly green: green.ImportantStatement;
|
1453
|
+
readonly parent: ImportantStatementParent;
|
1454
|
+
private _children;
|
1455
|
+
get children(): readonly [Keyword<green.KeywordKind.Important>, Expression];
|
1456
|
+
get importantKeyword(): Keyword<KeywordKind.Important>;
|
1457
|
+
get expression(): Expression;
|
1458
|
+
protected get thisAsNode(): Node;
|
1459
|
+
constructor(green: green.ImportantStatement, rangeStart: number, parent: ImportantStatementParent);
|
1460
|
+
private createChildren;
|
1461
|
+
}
|
1434
1462
|
export type ExpressionStatementParent = StatementParent;
|
1435
1463
|
export declare class ExpressionStatement extends BaseNode {
|
1436
1464
|
readonly kind = NodeKind.ExpressionStatement;
|
@@ -2154,4 +2182,4 @@ export declare class TypeAnnotation extends BaseNode {
|
|
2154
2182
|
constructor(green: green.TypeAnnotation, rangeStart: number, parent: TypeAnnotationParent);
|
2155
2183
|
private createChildren;
|
2156
2184
|
}
|
2157
|
-
export type Node = SourceFile | PackageMemberDeclarationList | Keyword | PackageImportDirectiveList | SinglePackageImportDirective | PackageGroupImportDirective | PackageImportList | PackageImport | PackagePath | NamedTypeSpecifier | UnionTypeSpecifier | UnionTypeSpecifierTypeList | ParenthesizedTypeSpecifier | NullableTypeSpecifier | AnonymousTypeSpecifier | InvalidTypeSpecifier | AnonymousMethodTypeDeclaration | AnonymousStructuredTypeDeclaration | AnonymousVariantTypeDeclaration | TopLevelTranslationList | TranslationsDeclaration | PackageAliasTypeDeclaration | AliasTypeDeclarationBody | PackageMemberGroupDeclaration | PackageConstructorDeclaration | PackageEntryPointDeclaration | PackageMethodDeclaration | PackageMethodTypeDeclaration | MethodTypeDeclarationBody | BaseTypeList | TypeMemberDeclarationList | TypeMemberDeclarationBlock | PackageStructuredTypeDeclaration | StructuredTypeDeclarationBody | PackageVariableDeclaration | PackageVariableGetterDeclaration | PackageVariableSetterDeclaration | PackageVariantTypeDeclaration | VariantTypeDeclarationBody | TypeExtensionDeclaration | ExtendedTypeClauseCommaList | ExtendedTypeClause | InvalidPackageMemberDeclaration | TypeMemberGroupDeclaration | TypeConstructorDeclaration | TypeDestructorDeclaration | TypeIndexedGetterDeclaration | TypeIndexedSetterDeclaration | TypeIndexerParameterClause | TypeDereferencedVariableGetterDeclaration | TypeDereferencedVariableSetterDeclaration | TypeMethodDeclaration | OperatorDeclaration | TypeVariableDeclaration | TypeVariableGetterDeclaration | TypeVariableSetterDeclaration | InvalidTypeMemberDeclaration | NestedMethodDeclaration | LocalVariableDeclaration | EnumerationVariableDeclaration | ArrayLiteral | ArrayLiteralElementList | AssertionExpression | AssumptionExpression | AsExpression | BinaryExpression | MethodBlockLiteral | ArgumentList | CallExpression | AutotypeCallExpression | IndexedAccessExpression | InvalidExpression | IsExpression | MethodLiteral | ParenthesizedExpression | WhenTernaryExpression | PrefixUnaryExpression | PropertyAccessExpression | ReferenceExpression | DereferenceExpression | TextTemplateLiteral | TextTemplateSpanList | TextTemplateSpan | TokenExpression | KeywordExpression | ObjectExpression | BaseExpression | IdentifierExpression | GenericSpecializationExpression | DefaultMatchExpression | AssignmentStatement | StatementList | StatementBlock | BreakLoopStatement | ContinueLoopStatement | DisposeStatement | RunStatement | TryStatement | CatchClause | ErrorVariableDeclaration | FinallyClause | EmptyStatement | ErrorStatement | ExpressionStatement | EnumerationVariableList | ForStatement | IfStatement | ElseIfClauseList | ElseIfClause | ElseClause | InvalidStatement | NestedMethodDeclarationStatement | LocalVariableDeclarationStatement | LoopStatement | ReturnStatement | CaseClauseList | SwitchStatement | MatchExpressionList | CaseClause | WhileStatement | YieldStatement | TranslationParameterList | TranslationParameterClause | ConstructorTranslation | IndexerTranslationParameterClause | IndexerTranslation | TranslationTypeParameterList | TranslationTypeParameterClause | PackageMethodTranslation | TypeMethodTranslation | MethodTypeTranslation | PackageImportTranslation | QualifiedName | PackageVariableTranslation | TypeVariableOrVariantTranslation | TypeMemberTranslationList | TypeTranslation | TextLiteralTranslation | TextTemplateLiteralTranslation | VariantDeclaration | TypeParameterDeclaration | ParameterDeclaration | Argument | TagList | Tag | ModifierList | Modifier | ParameterClause | ParameterList | TypeArgumentClause | TypeArgumentList | TypeParameterClause | TypeParameterList | TypeAnnotation | Token;
|
2185
|
+
export type Node = SourceFile | PackageMemberDeclarationList | Keyword | PackageImportDirectiveList | SinglePackageImportDirective | PackageGroupImportDirective | PackageImportList | PackageImport | PackagePath | NamedTypeSpecifier | UnionTypeSpecifier | UnionTypeSpecifierTypeList | ParenthesizedTypeSpecifier | NullableTypeSpecifier | AnonymousTypeSpecifier | InvalidTypeSpecifier | AnonymousMethodTypeDeclaration | AnonymousStructuredTypeDeclaration | AnonymousVariantTypeDeclaration | TopLevelTranslationList | TranslationsDeclaration | PackageAliasTypeDeclaration | AliasTypeDeclarationBody | PackageMemberGroupDeclaration | PackageConstructorDeclaration | PackageEntryPointDeclaration | PackageMethodDeclaration | PackageMethodTypeDeclaration | MethodTypeDeclarationBody | BaseTypeList | TypeMemberDeclarationList | TypeMemberDeclarationBlock | PackageStructuredTypeDeclaration | StructuredTypeDeclarationBody | PackageVariableDeclaration | PackageVariableGetterDeclaration | PackageVariableSetterDeclaration | PackageVariantTypeDeclaration | VariantTypeDeclarationBody | TypeExtensionDeclaration | ExtendedTypeClauseCommaList | ExtendedTypeClause | InvalidPackageMemberDeclaration | TypeMemberGroupDeclaration | TypeConstructorDeclaration | TypeDestructorDeclaration | TypeIndexedGetterDeclaration | TypeIndexedSetterDeclaration | TypeIndexerParameterClause | TypeDereferencedVariableGetterDeclaration | TypeDereferencedVariableSetterDeclaration | TypeMethodDeclaration | OperatorDeclaration | TypeVariableDeclaration | TypeVariableGetterDeclaration | TypeVariableSetterDeclaration | InvalidTypeMemberDeclaration | NestedMethodDeclaration | LocalVariableDeclaration | EnumerationVariableDeclaration | ArrayLiteral | ArrayLiteralElementList | AssertionExpression | AssumptionExpression | AsExpression | BinaryExpression | MethodBlockLiteral | ArgumentList | CallExpression | AutotypeCallExpression | IndexedAccessExpression | InvalidExpression | IsExpression | MethodLiteral | ParenthesizedExpression | WhenTernaryExpression | PrefixUnaryExpression | PropertyAccessExpression | ReferenceExpression | DereferenceExpression | TextTemplateLiteral | TextTemplateSpanList | TextTemplateSpan | TokenExpression | KeywordExpression | ObjectExpression | BaseExpression | IdentifierExpression | GenericSpecializationExpression | DefaultMatchExpression | AssignmentStatement | StatementList | StatementBlock | FunctionBlock | BreakLoopStatement | ContinueLoopStatement | DisposeStatement | RunStatement | TryStatement | CatchClause | ErrorVariableDeclaration | FinallyClause | EmptyStatement | ErrorStatement | ImportantStatement | ExpressionStatement | EnumerationVariableList | ForStatement | IfStatement | ElseIfClauseList | ElseIfClause | ElseClause | InvalidStatement | NestedMethodDeclarationStatement | LocalVariableDeclarationStatement | LoopStatement | ReturnStatement | CaseClauseList | SwitchStatement | MatchExpressionList | CaseClause | WhileStatement | YieldStatement | TranslationParameterList | TranslationParameterClause | ConstructorTranslation | IndexerTranslationParameterClause | IndexerTranslation | TranslationTypeParameterList | TranslationTypeParameterClause | PackageMethodTranslation | TypeMethodTranslation | MethodTypeTranslation | PackageImportTranslation | QualifiedName | PackageVariableTranslation | TypeVariableOrVariantTranslation | TypeMemberTranslationList | TypeTranslation | TextLiteralTranslation | TextTemplateLiteralTranslation | VariantDeclaration | TypeParameterDeclaration | ParameterDeclaration | Argument | TagList | Tag | ModifierList | Modifier | ParameterClause | ParameterList | TypeArgumentClause | TypeArgumentList | TypeParameterClause | TypeParameterList | TypeAnnotation | Token;
|
@@ -86,6 +86,7 @@ export declare class Constructor implements ITypeMember {
|
|
86
86
|
getEntity(): ConstructorEntity;
|
87
87
|
getSubstitutions(): Substitutions;
|
88
88
|
isHidden(): EntityHidingLevel | undefined;
|
89
|
+
isStatic(): boolean;
|
89
90
|
equals(other: TypeMember): boolean;
|
90
91
|
}
|
91
92
|
export declare class Destructor implements ITypeMember {
|
@@ -98,6 +99,7 @@ export declare class Destructor implements ITypeMember {
|
|
98
99
|
getEntity(): DestructorEntity;
|
99
100
|
getSubstitutions(): Substitutions;
|
100
101
|
isHidden(): EntityHidingLevel | undefined;
|
102
|
+
isStatic(): boolean;
|
101
103
|
applySubstitutions(substitutions: Substitutions): Destructor;
|
102
104
|
equals(other: TypeMember): boolean;
|
103
105
|
}
|
@@ -112,6 +114,7 @@ export declare class Indexer implements ITypeMember {
|
|
112
114
|
getEntity(): IndexerEntity;
|
113
115
|
getSubstitutions(): Substitutions;
|
114
116
|
isHidden(): EntityHidingLevel | undefined;
|
117
|
+
isStatic(): boolean;
|
115
118
|
applySubstitutions(substitutions: Substitutions): Indexer;
|
116
119
|
equals(other: TypeMember): boolean;
|
117
120
|
}
|
@@ -124,11 +127,13 @@ export declare class DereferenceOperator implements ITypeMember {
|
|
124
127
|
getEntity(): DereferenceOperatorEntity;
|
125
128
|
getSubstitutions(): Substitutions;
|
126
129
|
isHidden(): EntityHidingLevel | undefined;
|
130
|
+
isStatic(): boolean;
|
127
131
|
applySubstitutions(substitutions: Substitutions): DereferenceOperator;
|
128
132
|
equals(other: TypeMember): boolean;
|
129
133
|
}
|
130
134
|
export interface ITypeMember {
|
131
135
|
isHidden(): EntityHidingLevel | undefined;
|
136
|
+
isStatic(): boolean;
|
132
137
|
getSubstitutions(): Substitutions;
|
133
138
|
equals(other: TypeMember): boolean;
|
134
139
|
}
|