@openrewrite/rewrite 0.24.0 → 0.25.0
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/LICENSE.md +87 -0
- package/dist/src/core/parser.js +17 -7
- package/dist/src/core/parser.js.map +1 -1
- package/dist/src/core/tree.d.ts +1 -1
- package/dist/src/core/tree.d.ts.map +1 -1
- package/dist/src/java/markers.d.ts +2 -2
- package/dist/src/java/markers.d.ts.map +1 -1
- package/dist/src/java/remote/receiver.js +17 -7
- package/dist/src/java/remote/receiver.js.map +1 -1
- package/dist/src/java/remote/sender.js +17 -7
- package/dist/src/java/remote/sender.js.map +1 -1
- package/dist/src/java/tree/support_types.d.ts +1 -1
- package/dist/src/java/tree/support_types.d.ts.map +1 -1
- package/dist/src/java/tree/tree.d.ts +70 -70
- package/dist/src/java/tree/tree.d.ts.map +1 -1
- package/dist/src/java/tree/tree.js +17 -7
- package/dist/src/java/tree/tree.js.map +1 -1
- package/dist/src/java/visitor.js +17 -7
- package/dist/src/java/visitor.js.map +1 -1
- package/dist/src/javascript/extensions.js +17 -7
- package/dist/src/javascript/extensions.js.map +1 -1
- package/dist/src/javascript/parser.d.ts +5 -3
- package/dist/src/javascript/parser.d.ts.map +1 -1
- package/dist/src/javascript/parser.js +67 -21
- package/dist/src/javascript/parser.js.map +1 -1
- package/dist/src/javascript/parserUtils.d.ts +1 -1
- package/dist/src/javascript/parserUtils.js +17 -7
- package/dist/src/javascript/parserUtils.js.map +1 -1
- package/dist/src/javascript/projectParser.js +17 -7
- package/dist/src/javascript/projectParser.js.map +1 -1
- package/dist/src/javascript/remote/receiver.d.ts.map +1 -1
- package/dist/src/javascript/remote/receiver.js +71 -14
- package/dist/src/javascript/remote/receiver.js.map +1 -1
- package/dist/src/javascript/remote/remote_extensions.js +17 -7
- package/dist/src/javascript/remote/remote_extensions.js.map +1 -1
- package/dist/src/javascript/remote/sender.d.ts.map +1 -1
- package/dist/src/javascript/remote/sender.js +56 -11
- package/dist/src/javascript/remote/sender.js.map +1 -1
- package/dist/src/javascript/tree/extensions.js +17 -7
- package/dist/src/javascript/tree/extensions.js.map +1 -1
- package/dist/src/javascript/tree/support_types.d.ts +21 -7
- package/dist/src/javascript/tree/support_types.d.ts.map +1 -1
- package/dist/src/javascript/tree/support_types.js +31 -7
- package/dist/src/javascript/tree/support_types.js.map +1 -1
- package/dist/src/javascript/tree/tree.d.ts +288 -77
- package/dist/src/javascript/tree/tree.d.ts.map +1 -1
- package/dist/src/javascript/tree/tree.js +348 -44
- package/dist/src/javascript/tree/tree.js.map +1 -1
- package/dist/src/javascript/typeMapping.js +17 -7
- package/dist/src/javascript/typeMapping.js.map +1 -1
- package/dist/src/javascript/visitor.d.ts +5 -1
- package/dist/src/javascript/visitor.d.ts.map +1 -1
- package/dist/src/javascript/visitor.js +71 -10
- package/dist/src/javascript/visitor.js.map +1 -1
- package/dist/src/json/tree.d.ts +1 -1
- package/dist/src/json/tree.d.ts.map +1 -1
- package/dist/src/json/visitor.js +17 -7
- package/dist/src/json/visitor.js.map +1 -1
- package/dist/src/yaml/tree/support_types.d.ts +1 -1
- package/dist/src/yaml/tree/support_types.d.ts.map +1 -1
- package/dist/src/yaml/tree/tree.d.ts +11 -11
- package/package.json +1 -1
- package/LICENSE +0 -201
|
@@ -4,7 +4,7 @@ import { Checksum, Cursor, FileAttributes, Markers, PrintOutputCapture, SourceFi
|
|
|
4
4
|
declare const AnnotatedType_base: ((abstract new (...args: any[]) => {
|
|
5
5
|
readonly prefix: Space;
|
|
6
6
|
withPrefix(prefix: Space): J;
|
|
7
|
-
readonly id:
|
|
7
|
+
readonly id: UUID;
|
|
8
8
|
withId(id: UUID): J;
|
|
9
9
|
readonly markers: Markers;
|
|
10
10
|
withMarkers(markers: Markers): J;
|
|
@@ -46,7 +46,7 @@ export declare class AnnotatedType extends AnnotatedType_base implements Express
|
|
|
46
46
|
declare const Annotation_base: ((abstract new (...args: any[]) => {
|
|
47
47
|
readonly prefix: Space;
|
|
48
48
|
withPrefix(prefix: Space): J;
|
|
49
|
-
readonly id:
|
|
49
|
+
readonly id: UUID;
|
|
50
50
|
withId(id: UUID): J;
|
|
51
51
|
readonly markers: Markers;
|
|
52
52
|
withMarkers(markers: Markers): J;
|
|
@@ -92,7 +92,7 @@ export declare class Annotation extends Annotation_base implements Expression {
|
|
|
92
92
|
declare const ArrayAccess_base: ((abstract new (...args: any[]) => {
|
|
93
93
|
readonly prefix: Space;
|
|
94
94
|
withPrefix(prefix: Space): J;
|
|
95
|
-
readonly id:
|
|
95
|
+
readonly id: UUID;
|
|
96
96
|
withId(id: UUID): J;
|
|
97
97
|
readonly markers: Markers;
|
|
98
98
|
withMarkers(markers: Markers): J;
|
|
@@ -135,7 +135,7 @@ export declare class ArrayAccess extends ArrayAccess_base implements Expression,
|
|
|
135
135
|
declare const ArrayType_base: ((abstract new (...args: any[]) => {
|
|
136
136
|
readonly prefix: Space;
|
|
137
137
|
withPrefix(prefix: Space): J;
|
|
138
|
-
readonly id:
|
|
138
|
+
readonly id: UUID;
|
|
139
139
|
withId(id: UUID): J;
|
|
140
140
|
readonly markers: Markers;
|
|
141
141
|
withMarkers(markers: Markers): J;
|
|
@@ -181,7 +181,7 @@ export declare class ArrayType extends ArrayType_base implements TypeTree, Expre
|
|
|
181
181
|
declare const Assert_base: ((abstract new (...args: any[]) => {
|
|
182
182
|
readonly prefix: Space;
|
|
183
183
|
withPrefix(prefix: Space): J;
|
|
184
|
-
readonly id:
|
|
184
|
+
readonly id: UUID;
|
|
185
185
|
withId(id: UUID): J;
|
|
186
186
|
readonly markers: Markers;
|
|
187
187
|
withMarkers(markers: Markers): J;
|
|
@@ -221,7 +221,7 @@ export declare class Assert extends Assert_base implements Statement {
|
|
|
221
221
|
declare const Assignment_base: ((abstract new (...args: any[]) => {
|
|
222
222
|
readonly prefix: Space;
|
|
223
223
|
withPrefix(prefix: Space): J;
|
|
224
|
-
readonly id:
|
|
224
|
+
readonly id: UUID;
|
|
225
225
|
withId(id: UUID): J;
|
|
226
226
|
readonly markers: Markers;
|
|
227
227
|
withMarkers(markers: Markers): J;
|
|
@@ -268,7 +268,7 @@ export declare class Assignment extends Assignment_base implements Statement, Ex
|
|
|
268
268
|
declare const AssignmentOperation_base: ((abstract new (...args: any[]) => {
|
|
269
269
|
readonly prefix: Space;
|
|
270
270
|
withPrefix(prefix: Space): J;
|
|
271
|
-
readonly id:
|
|
271
|
+
readonly id: UUID;
|
|
272
272
|
withId(id: UUID): J;
|
|
273
273
|
readonly markers: Markers;
|
|
274
274
|
withMarkers(markers: Markers): J;
|
|
@@ -336,7 +336,7 @@ export declare namespace AssignmentOperation {
|
|
|
336
336
|
declare const Binary_base: ((abstract new (...args: any[]) => {
|
|
337
337
|
readonly prefix: Space;
|
|
338
338
|
withPrefix(prefix: Space): J;
|
|
339
|
-
readonly id:
|
|
339
|
+
readonly id: UUID;
|
|
340
340
|
withId(id: UUID): J;
|
|
341
341
|
readonly markers: Markers;
|
|
342
342
|
withMarkers(markers: Markers): J;
|
|
@@ -409,7 +409,7 @@ export declare namespace Binary {
|
|
|
409
409
|
declare const Block_base: ((abstract new (...args: any[]) => {
|
|
410
410
|
readonly prefix: Space;
|
|
411
411
|
withPrefix(prefix: Space): J;
|
|
412
|
-
readonly id:
|
|
412
|
+
readonly id: UUID;
|
|
413
413
|
withId(id: UUID): J;
|
|
414
414
|
readonly markers: Markers;
|
|
415
415
|
withMarkers(markers: Markers): J;
|
|
@@ -458,7 +458,7 @@ export declare class Block extends Block_base implements Statement {
|
|
|
458
458
|
declare const Break_base: ((abstract new (...args: any[]) => {
|
|
459
459
|
readonly prefix: Space;
|
|
460
460
|
withPrefix(prefix: Space): J;
|
|
461
|
-
readonly id:
|
|
461
|
+
readonly id: UUID;
|
|
462
462
|
withId(id: UUID): J;
|
|
463
463
|
readonly markers: Markers;
|
|
464
464
|
withMarkers(markers: Markers): J;
|
|
@@ -495,7 +495,7 @@ export declare class Break extends Break_base implements Statement {
|
|
|
495
495
|
declare const Case_base: ((abstract new (...args: any[]) => {
|
|
496
496
|
readonly prefix: Space;
|
|
497
497
|
withPrefix(prefix: Space): J;
|
|
498
|
-
readonly id:
|
|
498
|
+
readonly id: UUID;
|
|
499
499
|
withId(id: UUID): J;
|
|
500
500
|
readonly markers: Markers;
|
|
501
501
|
withMarkers(markers: Markers): J;
|
|
@@ -555,7 +555,7 @@ export declare namespace Case {
|
|
|
555
555
|
declare const ClassDeclaration_base: ((abstract new (...args: any[]) => {
|
|
556
556
|
readonly prefix: Space;
|
|
557
557
|
withPrefix(prefix: Space): J;
|
|
558
|
-
readonly id:
|
|
558
|
+
readonly id: UUID;
|
|
559
559
|
withId(id: UUID): J;
|
|
560
560
|
readonly markers: Markers;
|
|
561
561
|
withMarkers(markers: Markers): J;
|
|
@@ -636,7 +636,7 @@ export declare namespace ClassDeclaration {
|
|
|
636
636
|
const Kind_base: ((abstract new (...args: any[]) => {
|
|
637
637
|
readonly prefix: Space;
|
|
638
638
|
withPrefix(prefix: Space): J;
|
|
639
|
-
readonly id:
|
|
639
|
+
readonly id: UUID;
|
|
640
640
|
withId(id: UUID): J;
|
|
641
641
|
readonly markers: Markers;
|
|
642
642
|
withMarkers(markers: Markers): J;
|
|
@@ -700,7 +700,7 @@ declare const CompilationUnit_base: ((abstract new (...args: any[]) => {
|
|
|
700
700
|
printAll(): string;
|
|
701
701
|
print<P>(cursor: Cursor, capture: PrintOutputCapture<P>): string;
|
|
702
702
|
printer<P>(cursor: Cursor): TreeVisitor<any, PrintOutputCapture<P>>;
|
|
703
|
-
readonly id:
|
|
703
|
+
readonly id: UUID;
|
|
704
704
|
withId(id: UUID): Tree;
|
|
705
705
|
readonly markers: Markers;
|
|
706
706
|
withMarkers(markers: Markers): Tree;
|
|
@@ -712,7 +712,7 @@ declare const CompilationUnit_base: ((abstract new (...args: any[]) => {
|
|
|
712
712
|
}) & ((abstract new (...args: any[]) => {
|
|
713
713
|
readonly prefix: Space;
|
|
714
714
|
withPrefix(prefix: Space): J;
|
|
715
|
-
readonly id:
|
|
715
|
+
readonly id: UUID;
|
|
716
716
|
withId(id: UUID): J;
|
|
717
717
|
readonly markers: Markers;
|
|
718
718
|
withMarkers(markers: Markers): J;
|
|
@@ -780,7 +780,7 @@ export declare class CompilationUnit extends CompilationUnit_base implements Jav
|
|
|
780
780
|
declare const Continue_base: ((abstract new (...args: any[]) => {
|
|
781
781
|
readonly prefix: Space;
|
|
782
782
|
withPrefix(prefix: Space): J;
|
|
783
|
-
readonly id:
|
|
783
|
+
readonly id: UUID;
|
|
784
784
|
withId(id: UUID): J;
|
|
785
785
|
readonly markers: Markers;
|
|
786
786
|
withMarkers(markers: Markers): J;
|
|
@@ -817,7 +817,7 @@ export declare class Continue extends Continue_base implements Statement {
|
|
|
817
817
|
declare const DoWhileLoop_base: ((abstract new (...args: any[]) => {
|
|
818
818
|
readonly prefix: Space;
|
|
819
819
|
withPrefix(prefix: Space): J;
|
|
820
|
-
readonly id:
|
|
820
|
+
readonly id: UUID;
|
|
821
821
|
withId(id: UUID): J;
|
|
822
822
|
readonly markers: Markers;
|
|
823
823
|
withMarkers(markers: Markers): J;
|
|
@@ -863,7 +863,7 @@ export declare class DoWhileLoop extends DoWhileLoop_base implements Loop {
|
|
|
863
863
|
declare const Empty_base: ((abstract new (...args: any[]) => {
|
|
864
864
|
readonly prefix: Space;
|
|
865
865
|
withPrefix(prefix: Space): J;
|
|
866
|
-
readonly id:
|
|
866
|
+
readonly id: UUID;
|
|
867
867
|
withId(id: UUID): J;
|
|
868
868
|
readonly markers: Markers;
|
|
869
869
|
withMarkers(markers: Markers): J;
|
|
@@ -899,7 +899,7 @@ export declare class Empty extends Empty_base implements Statement, Expression,
|
|
|
899
899
|
declare const EnumValue_base: ((abstract new (...args: any[]) => {
|
|
900
900
|
readonly prefix: Space;
|
|
901
901
|
withPrefix(prefix: Space): J;
|
|
902
|
-
readonly id:
|
|
902
|
+
readonly id: UUID;
|
|
903
903
|
withId(id: UUID): J;
|
|
904
904
|
readonly markers: Markers;
|
|
905
905
|
withMarkers(markers: Markers): J;
|
|
@@ -942,7 +942,7 @@ export declare class EnumValue extends EnumValue_base {
|
|
|
942
942
|
declare const EnumValueSet_base: ((abstract new (...args: any[]) => {
|
|
943
943
|
readonly prefix: Space;
|
|
944
944
|
withPrefix(prefix: Space): J;
|
|
945
|
-
readonly id:
|
|
945
|
+
readonly id: UUID;
|
|
946
946
|
withId(id: UUID): J;
|
|
947
947
|
readonly markers: Markers;
|
|
948
948
|
withMarkers(markers: Markers): J;
|
|
@@ -986,7 +986,7 @@ export declare class EnumValueSet extends EnumValueSet_base implements Statement
|
|
|
986
986
|
declare const FieldAccess_base: ((abstract new (...args: any[]) => {
|
|
987
987
|
readonly prefix: Space;
|
|
988
988
|
withPrefix(prefix: Space): J;
|
|
989
|
-
readonly id:
|
|
989
|
+
readonly id: UUID;
|
|
990
990
|
withId(id: UUID): J;
|
|
991
991
|
readonly markers: Markers;
|
|
992
992
|
withMarkers(markers: Markers): J;
|
|
@@ -1033,7 +1033,7 @@ export declare class FieldAccess extends FieldAccess_base implements TypeTree, E
|
|
|
1033
1033
|
declare const ForEachLoop_base: ((abstract new (...args: any[]) => {
|
|
1034
1034
|
readonly prefix: Space;
|
|
1035
1035
|
withPrefix(prefix: Space): J;
|
|
1036
|
-
readonly id:
|
|
1036
|
+
readonly id: UUID;
|
|
1037
1037
|
withId(id: UUID): J;
|
|
1038
1038
|
readonly markers: Markers;
|
|
1039
1039
|
withMarkers(markers: Markers): J;
|
|
@@ -1078,7 +1078,7 @@ export declare namespace ForEachLoop {
|
|
|
1078
1078
|
const Control_base: ((abstract new (...args: any[]) => {
|
|
1079
1079
|
readonly prefix: Space;
|
|
1080
1080
|
withPrefix(prefix: Space): J;
|
|
1081
|
-
readonly id:
|
|
1081
|
+
readonly id: UUID;
|
|
1082
1082
|
withId(id: UUID): J;
|
|
1083
1083
|
readonly markers: Markers;
|
|
1084
1084
|
withMarkers(markers: Markers): J;
|
|
@@ -1126,7 +1126,7 @@ export declare namespace ForEachLoop {
|
|
|
1126
1126
|
declare const ForLoop_base: ((abstract new (...args: any[]) => {
|
|
1127
1127
|
readonly prefix: Space;
|
|
1128
1128
|
withPrefix(prefix: Space): J;
|
|
1129
|
-
readonly id:
|
|
1129
|
+
readonly id: UUID;
|
|
1130
1130
|
withId(id: UUID): J;
|
|
1131
1131
|
readonly markers: Markers;
|
|
1132
1132
|
withMarkers(markers: Markers): J;
|
|
@@ -1171,7 +1171,7 @@ export declare namespace ForLoop {
|
|
|
1171
1171
|
const Control_base_1: ((abstract new (...args: any[]) => {
|
|
1172
1172
|
readonly prefix: Space;
|
|
1173
1173
|
withPrefix(prefix: Space): J;
|
|
1174
|
-
readonly id:
|
|
1174
|
+
readonly id: UUID;
|
|
1175
1175
|
withId(id: UUID): J;
|
|
1176
1176
|
readonly markers: Markers;
|
|
1177
1177
|
withMarkers(markers: Markers): J;
|
|
@@ -1224,7 +1224,7 @@ export declare namespace ForLoop {
|
|
|
1224
1224
|
declare const ParenthesizedTypeTree_base: ((abstract new (...args: any[]) => {
|
|
1225
1225
|
readonly prefix: Space;
|
|
1226
1226
|
withPrefix(prefix: Space): J;
|
|
1227
|
-
readonly id:
|
|
1227
|
+
readonly id: UUID;
|
|
1228
1228
|
withId(id: UUID): J;
|
|
1229
1229
|
readonly markers: Markers;
|
|
1230
1230
|
withMarkers(markers: Markers): J;
|
|
@@ -1266,7 +1266,7 @@ export declare class ParenthesizedTypeTree extends ParenthesizedTypeTree_base im
|
|
|
1266
1266
|
declare const Identifier_base: ((abstract new (...args: any[]) => {
|
|
1267
1267
|
readonly prefix: Space;
|
|
1268
1268
|
withPrefix(prefix: Space): J;
|
|
1269
|
-
readonly id:
|
|
1269
|
+
readonly id: UUID;
|
|
1270
1270
|
withId(id: UUID): J;
|
|
1271
1271
|
readonly markers: Markers;
|
|
1272
1272
|
withMarkers(markers: Markers): J;
|
|
@@ -1312,7 +1312,7 @@ export declare class Identifier extends Identifier_base implements TypeTree, Exp
|
|
|
1312
1312
|
declare const If_base: ((abstract new (...args: any[]) => {
|
|
1313
1313
|
readonly prefix: Space;
|
|
1314
1314
|
withPrefix(prefix: Space): J;
|
|
1315
|
-
readonly id:
|
|
1315
|
+
readonly id: UUID;
|
|
1316
1316
|
withId(id: UUID): J;
|
|
1317
1317
|
readonly markers: Markers;
|
|
1318
1318
|
withMarkers(markers: Markers): J;
|
|
@@ -1360,7 +1360,7 @@ export declare namespace If {
|
|
|
1360
1360
|
const Else_base: ((abstract new (...args: any[]) => {
|
|
1361
1361
|
readonly prefix: Space;
|
|
1362
1362
|
withPrefix(prefix: Space): J;
|
|
1363
|
-
readonly id:
|
|
1363
|
+
readonly id: UUID;
|
|
1364
1364
|
withId(id: UUID): J;
|
|
1365
1365
|
readonly markers: Markers;
|
|
1366
1366
|
withMarkers(markers: Markers): J;
|
|
@@ -1403,7 +1403,7 @@ export declare namespace If {
|
|
|
1403
1403
|
declare const Import_base: ((abstract new (...args: any[]) => {
|
|
1404
1404
|
readonly prefix: Space;
|
|
1405
1405
|
withPrefix(prefix: Space): J;
|
|
1406
|
-
readonly id:
|
|
1406
|
+
readonly id: UUID;
|
|
1407
1407
|
withId(id: UUID): J;
|
|
1408
1408
|
readonly markers: Markers;
|
|
1409
1409
|
withMarkers(markers: Markers): J;
|
|
@@ -1452,7 +1452,7 @@ export declare class Import extends Import_base implements Statement {
|
|
|
1452
1452
|
declare const InstanceOf_base: ((abstract new (...args: any[]) => {
|
|
1453
1453
|
readonly prefix: Space;
|
|
1454
1454
|
withPrefix(prefix: Space): J;
|
|
1455
|
-
readonly id:
|
|
1455
|
+
readonly id: UUID;
|
|
1456
1456
|
withId(id: UUID): J;
|
|
1457
1457
|
readonly markers: Markers;
|
|
1458
1458
|
withMarkers(markers: Markers): J;
|
|
@@ -1502,7 +1502,7 @@ export declare class InstanceOf extends InstanceOf_base implements Expression, T
|
|
|
1502
1502
|
declare const IntersectionType_base: ((abstract new (...args: any[]) => {
|
|
1503
1503
|
readonly prefix: Space;
|
|
1504
1504
|
withPrefix(prefix: Space): J;
|
|
1505
|
-
readonly id:
|
|
1505
|
+
readonly id: UUID;
|
|
1506
1506
|
withId(id: UUID): J;
|
|
1507
1507
|
readonly markers: Markers;
|
|
1508
1508
|
withMarkers(markers: Markers): J;
|
|
@@ -1545,7 +1545,7 @@ export declare class IntersectionType extends IntersectionType_base implements T
|
|
|
1545
1545
|
declare const Label_base: ((abstract new (...args: any[]) => {
|
|
1546
1546
|
readonly prefix: Space;
|
|
1547
1547
|
withPrefix(prefix: Space): J;
|
|
1548
|
-
readonly id:
|
|
1548
|
+
readonly id: UUID;
|
|
1549
1549
|
withId(id: UUID): J;
|
|
1550
1550
|
readonly markers: Markers;
|
|
1551
1551
|
withMarkers(markers: Markers): J;
|
|
@@ -1589,7 +1589,7 @@ export declare class Label extends Label_base implements Statement {
|
|
|
1589
1589
|
declare const Lambda_base: ((abstract new (...args: any[]) => {
|
|
1590
1590
|
readonly prefix: Space;
|
|
1591
1591
|
withPrefix(prefix: Space): J;
|
|
1592
|
-
readonly id:
|
|
1592
|
+
readonly id: UUID;
|
|
1593
1593
|
withId(id: UUID): J;
|
|
1594
1594
|
readonly markers: Markers;
|
|
1595
1595
|
withMarkers(markers: Markers): J;
|
|
@@ -1636,7 +1636,7 @@ export declare namespace Lambda {
|
|
|
1636
1636
|
const Parameters_base: ((abstract new (...args: any[]) => {
|
|
1637
1637
|
readonly prefix: Space;
|
|
1638
1638
|
withPrefix(prefix: Space): J;
|
|
1639
|
-
readonly id:
|
|
1639
|
+
readonly id: UUID;
|
|
1640
1640
|
withId(id: UUID): J;
|
|
1641
1641
|
readonly markers: Markers;
|
|
1642
1642
|
withMarkers(markers: Markers): J;
|
|
@@ -1682,7 +1682,7 @@ export declare namespace Lambda {
|
|
|
1682
1682
|
declare const Literal_base: ((abstract new (...args: any[]) => {
|
|
1683
1683
|
readonly prefix: Space;
|
|
1684
1684
|
withPrefix(prefix: Space): J;
|
|
1685
|
-
readonly id:
|
|
1685
|
+
readonly id: UUID;
|
|
1686
1686
|
withId(id: UUID): J;
|
|
1687
1687
|
readonly markers: Markers;
|
|
1688
1688
|
withMarkers(markers: Markers): J;
|
|
@@ -1739,7 +1739,7 @@ export declare namespace Literal {
|
|
|
1739
1739
|
declare const MemberReference_base: ((abstract new (...args: any[]) => {
|
|
1740
1740
|
readonly prefix: Space;
|
|
1741
1741
|
withPrefix(prefix: Space): J;
|
|
1742
|
-
readonly id:
|
|
1742
|
+
readonly id: UUID;
|
|
1743
1743
|
withId(id: UUID): J;
|
|
1744
1744
|
readonly markers: Markers;
|
|
1745
1745
|
withMarkers(markers: Markers): J;
|
|
@@ -1799,7 +1799,7 @@ export declare class MemberReference extends MemberReference_base implements Typ
|
|
|
1799
1799
|
declare const MethodDeclaration_base: ((abstract new (...args: any[]) => {
|
|
1800
1800
|
readonly prefix: Space;
|
|
1801
1801
|
withPrefix(prefix: Space): J;
|
|
1802
|
-
readonly id:
|
|
1802
|
+
readonly id: UUID;
|
|
1803
1803
|
withId(id: UUID): J;
|
|
1804
1804
|
readonly markers: Markers;
|
|
1805
1805
|
withMarkers(markers: Markers): J;
|
|
@@ -1896,7 +1896,7 @@ export declare namespace MethodDeclaration {
|
|
|
1896
1896
|
declare const MethodInvocation_base: ((abstract new (...args: any[]) => {
|
|
1897
1897
|
readonly prefix: Space;
|
|
1898
1898
|
withPrefix(prefix: Space): J;
|
|
1899
|
-
readonly id:
|
|
1899
|
+
readonly id: UUID;
|
|
1900
1900
|
withId(id: UUID): J;
|
|
1901
1901
|
readonly markers: Markers;
|
|
1902
1902
|
withMarkers(markers: Markers): J;
|
|
@@ -1955,7 +1955,7 @@ export declare class MethodInvocation extends MethodInvocation_base implements S
|
|
|
1955
1955
|
declare const Modifier_base: ((abstract new (...args: any[]) => {
|
|
1956
1956
|
readonly prefix: Space;
|
|
1957
1957
|
withPrefix(prefix: Space): J;
|
|
1958
|
-
readonly id:
|
|
1958
|
+
readonly id: UUID;
|
|
1959
1959
|
withId(id: UUID): J;
|
|
1960
1960
|
readonly markers: Markers;
|
|
1961
1961
|
withMarkers(markers: Markers): J;
|
|
@@ -2020,7 +2020,7 @@ export declare namespace Modifier {
|
|
|
2020
2020
|
declare const MultiCatch_base: ((abstract new (...args: any[]) => {
|
|
2021
2021
|
readonly prefix: Space;
|
|
2022
2022
|
withPrefix(prefix: Space): J;
|
|
2023
|
-
readonly id:
|
|
2023
|
+
readonly id: UUID;
|
|
2024
2024
|
withId(id: UUID): J;
|
|
2025
2025
|
readonly markers: Markers;
|
|
2026
2026
|
withMarkers(markers: Markers): J;
|
|
@@ -2063,7 +2063,7 @@ export declare class MultiCatch extends MultiCatch_base implements TypeTree {
|
|
|
2063
2063
|
declare const NewArray_base: ((abstract new (...args: any[]) => {
|
|
2064
2064
|
readonly prefix: Space;
|
|
2065
2065
|
withPrefix(prefix: Space): J;
|
|
2066
|
-
readonly id:
|
|
2066
|
+
readonly id: UUID;
|
|
2067
2067
|
withId(id: UUID): J;
|
|
2068
2068
|
readonly markers: Markers;
|
|
2069
2069
|
withMarkers(markers: Markers): J;
|
|
@@ -2113,7 +2113,7 @@ export declare class NewArray extends NewArray_base implements Expression, Typed
|
|
|
2113
2113
|
declare const ArrayDimension_base: ((abstract new (...args: any[]) => {
|
|
2114
2114
|
readonly prefix: Space;
|
|
2115
2115
|
withPrefix(prefix: Space): J;
|
|
2116
|
-
readonly id:
|
|
2116
|
+
readonly id: UUID;
|
|
2117
2117
|
withId(id: UUID): J;
|
|
2118
2118
|
readonly markers: Markers;
|
|
2119
2119
|
withMarkers(markers: Markers): J;
|
|
@@ -2154,7 +2154,7 @@ export declare class ArrayDimension extends ArrayDimension_base {
|
|
|
2154
2154
|
declare const NewClass_base: ((abstract new (...args: any[]) => {
|
|
2155
2155
|
readonly prefix: Space;
|
|
2156
2156
|
withPrefix(prefix: Space): J;
|
|
2157
|
-
readonly id:
|
|
2157
|
+
readonly id: UUID;
|
|
2158
2158
|
withId(id: UUID): J;
|
|
2159
2159
|
readonly markers: Markers;
|
|
2160
2160
|
withMarkers(markers: Markers): J;
|
|
@@ -2214,7 +2214,7 @@ export declare class NewClass extends NewClass_base implements Statement, TypedT
|
|
|
2214
2214
|
declare const NullableType_base: ((abstract new (...args: any[]) => {
|
|
2215
2215
|
readonly prefix: Space;
|
|
2216
2216
|
withPrefix(prefix: Space): J;
|
|
2217
|
-
readonly id:
|
|
2217
|
+
readonly id: UUID;
|
|
2218
2218
|
withId(id: UUID): J;
|
|
2219
2219
|
readonly markers: Markers;
|
|
2220
2220
|
withMarkers(markers: Markers): J;
|
|
@@ -2260,7 +2260,7 @@ export declare class NullableType extends NullableType_base implements TypeTree,
|
|
|
2260
2260
|
declare const Package_base: ((abstract new (...args: any[]) => {
|
|
2261
2261
|
readonly prefix: Space;
|
|
2262
2262
|
withPrefix(prefix: Space): J;
|
|
2263
|
-
readonly id:
|
|
2263
|
+
readonly id: UUID;
|
|
2264
2264
|
withId(id: UUID): J;
|
|
2265
2265
|
readonly markers: Markers;
|
|
2266
2266
|
withMarkers(markers: Markers): J;
|
|
@@ -2300,7 +2300,7 @@ export declare class Package extends Package_base implements Statement {
|
|
|
2300
2300
|
declare const ParameterizedType_base: ((abstract new (...args: any[]) => {
|
|
2301
2301
|
readonly prefix: Space;
|
|
2302
2302
|
withPrefix(prefix: Space): J;
|
|
2303
|
-
readonly id:
|
|
2303
|
+
readonly id: UUID;
|
|
2304
2304
|
withId(id: UUID): J;
|
|
2305
2305
|
readonly markers: Markers;
|
|
2306
2306
|
withMarkers(markers: Markers): J;
|
|
@@ -2347,7 +2347,7 @@ export declare class ParameterizedType extends ParameterizedType_base implements
|
|
|
2347
2347
|
declare const Parentheses_base: ((abstract new (...args: any[]) => {
|
|
2348
2348
|
readonly prefix: Space;
|
|
2349
2349
|
withPrefix(prefix: Space): J;
|
|
2350
|
-
readonly id:
|
|
2350
|
+
readonly id: UUID;
|
|
2351
2351
|
withId(id: UUID): J;
|
|
2352
2352
|
readonly markers: Markers;
|
|
2353
2353
|
withMarkers(markers: Markers): J;
|
|
@@ -2390,7 +2390,7 @@ export declare class Parentheses<J2 extends J> extends Parentheses_base implemen
|
|
|
2390
2390
|
declare const ControlParentheses_base: ((abstract new (...args: any[]) => {
|
|
2391
2391
|
readonly prefix: Space;
|
|
2392
2392
|
withPrefix(prefix: Space): J;
|
|
2393
|
-
readonly id:
|
|
2393
|
+
readonly id: UUID;
|
|
2394
2394
|
withId(id: UUID): J;
|
|
2395
2395
|
readonly markers: Markers;
|
|
2396
2396
|
withMarkers(markers: Markers): J;
|
|
@@ -2433,7 +2433,7 @@ export declare class ControlParentheses<J2 extends J> extends ControlParentheses
|
|
|
2433
2433
|
declare const Primitive_base: ((abstract new (...args: any[]) => {
|
|
2434
2434
|
readonly prefix: Space;
|
|
2435
2435
|
withPrefix(prefix: Space): J;
|
|
2436
|
-
readonly id:
|
|
2436
|
+
readonly id: UUID;
|
|
2437
2437
|
withId(id: UUID): J;
|
|
2438
2438
|
readonly markers: Markers;
|
|
2439
2439
|
withMarkers(markers: Markers): J;
|
|
@@ -2470,7 +2470,7 @@ export declare class Primitive extends Primitive_base implements TypeTree, Expre
|
|
|
2470
2470
|
declare const Return_base: ((abstract new (...args: any[]) => {
|
|
2471
2471
|
readonly prefix: Space;
|
|
2472
2472
|
withPrefix(prefix: Space): J;
|
|
2473
|
-
readonly id:
|
|
2473
|
+
readonly id: UUID;
|
|
2474
2474
|
withId(id: UUID): J;
|
|
2475
2475
|
readonly markers: Markers;
|
|
2476
2476
|
withMarkers(markers: Markers): J;
|
|
@@ -2507,7 +2507,7 @@ export declare class Return extends Return_base implements Statement {
|
|
|
2507
2507
|
declare const Switch_base: ((abstract new (...args: any[]) => {
|
|
2508
2508
|
readonly prefix: Space;
|
|
2509
2509
|
withPrefix(prefix: Space): J;
|
|
2510
|
-
readonly id:
|
|
2510
|
+
readonly id: UUID;
|
|
2511
2511
|
withId(id: UUID): J;
|
|
2512
2512
|
readonly markers: Markers;
|
|
2513
2513
|
withMarkers(markers: Markers): J;
|
|
@@ -2547,7 +2547,7 @@ export declare class Switch extends Switch_base implements Statement {
|
|
|
2547
2547
|
declare const SwitchExpression_base: ((abstract new (...args: any[]) => {
|
|
2548
2548
|
readonly prefix: Space;
|
|
2549
2549
|
withPrefix(prefix: Space): J;
|
|
2550
|
-
readonly id:
|
|
2550
|
+
readonly id: UUID;
|
|
2551
2551
|
withId(id: UUID): J;
|
|
2552
2552
|
readonly markers: Markers;
|
|
2553
2553
|
withMarkers(markers: Markers): J;
|
|
@@ -2589,7 +2589,7 @@ export declare class SwitchExpression extends SwitchExpression_base implements E
|
|
|
2589
2589
|
declare const Synchronized_base: ((abstract new (...args: any[]) => {
|
|
2590
2590
|
readonly prefix: Space;
|
|
2591
2591
|
withPrefix(prefix: Space): J;
|
|
2592
|
-
readonly id:
|
|
2592
|
+
readonly id: UUID;
|
|
2593
2593
|
withId(id: UUID): J;
|
|
2594
2594
|
readonly markers: Markers;
|
|
2595
2595
|
withMarkers(markers: Markers): J;
|
|
@@ -2629,7 +2629,7 @@ export declare class Synchronized extends Synchronized_base implements Statement
|
|
|
2629
2629
|
declare const Ternary_base: ((abstract new (...args: any[]) => {
|
|
2630
2630
|
readonly prefix: Space;
|
|
2631
2631
|
withPrefix(prefix: Space): J;
|
|
2632
|
-
readonly id:
|
|
2632
|
+
readonly id: UUID;
|
|
2633
2633
|
withId(id: UUID): J;
|
|
2634
2634
|
readonly markers: Markers;
|
|
2635
2635
|
withMarkers(markers: Markers): J;
|
|
@@ -2681,7 +2681,7 @@ export declare class Ternary extends Ternary_base implements Expression, Stateme
|
|
|
2681
2681
|
declare const Throw_base: ((abstract new (...args: any[]) => {
|
|
2682
2682
|
readonly prefix: Space;
|
|
2683
2683
|
withPrefix(prefix: Space): J;
|
|
2684
|
-
readonly id:
|
|
2684
|
+
readonly id: UUID;
|
|
2685
2685
|
withId(id: UUID): J;
|
|
2686
2686
|
readonly markers: Markers;
|
|
2687
2687
|
withMarkers(markers: Markers): J;
|
|
@@ -2718,7 +2718,7 @@ export declare class Throw extends Throw_base implements Statement {
|
|
|
2718
2718
|
declare const Try_base: ((abstract new (...args: any[]) => {
|
|
2719
2719
|
readonly prefix: Space;
|
|
2720
2720
|
withPrefix(prefix: Space): J;
|
|
2721
|
-
readonly id:
|
|
2721
|
+
readonly id: UUID;
|
|
2722
2722
|
withId(id: UUID): J;
|
|
2723
2723
|
readonly markers: Markers;
|
|
2724
2724
|
withMarkers(markers: Markers): J;
|
|
@@ -2771,7 +2771,7 @@ export declare namespace Try {
|
|
|
2771
2771
|
const Resource_base: ((abstract new (...args: any[]) => {
|
|
2772
2772
|
readonly prefix: Space;
|
|
2773
2773
|
withPrefix(prefix: Space): J;
|
|
2774
|
-
readonly id:
|
|
2774
|
+
readonly id: UUID;
|
|
2775
2775
|
withId(id: UUID): J;
|
|
2776
2776
|
readonly markers: Markers;
|
|
2777
2777
|
withMarkers(markers: Markers): J;
|
|
@@ -2811,7 +2811,7 @@ export declare namespace Try {
|
|
|
2811
2811
|
const Catch_base: ((abstract new (...args: any[]) => {
|
|
2812
2812
|
readonly prefix: Space;
|
|
2813
2813
|
withPrefix(prefix: Space): J;
|
|
2814
|
-
readonly id:
|
|
2814
|
+
readonly id: UUID;
|
|
2815
2815
|
withId(id: UUID): J;
|
|
2816
2816
|
readonly markers: Markers;
|
|
2817
2817
|
withMarkers(markers: Markers): J;
|
|
@@ -2853,7 +2853,7 @@ export declare namespace Try {
|
|
|
2853
2853
|
declare const TypeCast_base: ((abstract new (...args: any[]) => {
|
|
2854
2854
|
readonly prefix: Space;
|
|
2855
2855
|
withPrefix(prefix: Space): J;
|
|
2856
|
-
readonly id:
|
|
2856
|
+
readonly id: UUID;
|
|
2857
2857
|
withId(id: UUID): J;
|
|
2858
2858
|
readonly markers: Markers;
|
|
2859
2859
|
withMarkers(markers: Markers): J;
|
|
@@ -2895,7 +2895,7 @@ export declare class TypeCast extends TypeCast_base implements Expression, Typed
|
|
|
2895
2895
|
declare const TypeParameter_base: ((abstract new (...args: any[]) => {
|
|
2896
2896
|
readonly prefix: Space;
|
|
2897
2897
|
withPrefix(prefix: Space): J;
|
|
2898
|
-
readonly id:
|
|
2898
|
+
readonly id: UUID;
|
|
2899
2899
|
withId(id: UUID): J;
|
|
2900
2900
|
readonly markers: Markers;
|
|
2901
2901
|
withMarkers(markers: Markers): J;
|
|
@@ -2945,7 +2945,7 @@ export declare class TypeParameter extends TypeParameter_base {
|
|
|
2945
2945
|
declare const TypeParameters_base: ((abstract new (...args: any[]) => {
|
|
2946
2946
|
readonly prefix: Space;
|
|
2947
2947
|
withPrefix(prefix: Space): J;
|
|
2948
|
-
readonly id:
|
|
2948
|
+
readonly id: UUID;
|
|
2949
2949
|
withId(id: UUID): J;
|
|
2950
2950
|
readonly markers: Markers;
|
|
2951
2951
|
withMarkers(markers: Markers): J;
|
|
@@ -2989,7 +2989,7 @@ export declare class TypeParameters extends TypeParameters_base {
|
|
|
2989
2989
|
declare const Unary_base: ((abstract new (...args: any[]) => {
|
|
2990
2990
|
readonly prefix: Space;
|
|
2991
2991
|
withPrefix(prefix: Space): J;
|
|
2992
|
-
readonly id:
|
|
2992
|
+
readonly id: UUID;
|
|
2993
2993
|
withId(id: UUID): J;
|
|
2994
2994
|
readonly markers: Markers;
|
|
2995
2995
|
withMarkers(markers: Markers): J;
|
|
@@ -3048,7 +3048,7 @@ export declare namespace Unary {
|
|
|
3048
3048
|
declare const VariableDeclarations_base: ((abstract new (...args: any[]) => {
|
|
3049
3049
|
readonly prefix: Space;
|
|
3050
3050
|
withPrefix(prefix: Space): J;
|
|
3051
|
-
readonly id:
|
|
3051
|
+
readonly id: UUID;
|
|
3052
3052
|
withId(id: UUID): J;
|
|
3053
3053
|
readonly markers: Markers;
|
|
3054
3054
|
withMarkers(markers: Markers): J;
|
|
@@ -3107,7 +3107,7 @@ export declare namespace VariableDeclarations {
|
|
|
3107
3107
|
const NamedVariable_base: ((abstract new (...args: any[]) => {
|
|
3108
3108
|
readonly prefix: Space;
|
|
3109
3109
|
withPrefix(prefix: Space): J;
|
|
3110
|
-
readonly id:
|
|
3110
|
+
readonly id: UUID;
|
|
3111
3111
|
withId(id: UUID): J;
|
|
3112
3112
|
readonly markers: Markers;
|
|
3113
3113
|
withMarkers(markers: Markers): J;
|
|
@@ -3161,7 +3161,7 @@ export declare namespace VariableDeclarations {
|
|
|
3161
3161
|
declare const WhileLoop_base: ((abstract new (...args: any[]) => {
|
|
3162
3162
|
readonly prefix: Space;
|
|
3163
3163
|
withPrefix(prefix: Space): J;
|
|
3164
|
-
readonly id:
|
|
3164
|
+
readonly id: UUID;
|
|
3165
3165
|
withId(id: UUID): J;
|
|
3166
3166
|
readonly markers: Markers;
|
|
3167
3167
|
withMarkers(markers: Markers): J;
|
|
@@ -3205,7 +3205,7 @@ export declare class WhileLoop extends WhileLoop_base implements Loop {
|
|
|
3205
3205
|
declare const Wildcard_base: ((abstract new (...args: any[]) => {
|
|
3206
3206
|
readonly prefix: Space;
|
|
3207
3207
|
withPrefix(prefix: Space): J;
|
|
3208
|
-
readonly id:
|
|
3208
|
+
readonly id: UUID;
|
|
3209
3209
|
withId(id: UUID): J;
|
|
3210
3210
|
readonly markers: Markers;
|
|
3211
3211
|
withMarkers(markers: Markers): J;
|
|
@@ -3257,7 +3257,7 @@ export declare namespace Wildcard {
|
|
|
3257
3257
|
declare const Yield_base: ((abstract new (...args: any[]) => {
|
|
3258
3258
|
readonly prefix: Space;
|
|
3259
3259
|
withPrefix(prefix: Space): J;
|
|
3260
|
-
readonly id:
|
|
3260
|
+
readonly id: UUID;
|
|
3261
3261
|
withId(id: UUID): J;
|
|
3262
3262
|
readonly markers: Markers;
|
|
3263
3263
|
withMarkers(markers: Markers): J;
|
|
@@ -3297,7 +3297,7 @@ export declare class Yield extends Yield_base implements Statement {
|
|
|
3297
3297
|
declare const Unknown_base: ((abstract new (...args: any[]) => {
|
|
3298
3298
|
readonly prefix: Space;
|
|
3299
3299
|
withPrefix(prefix: Space): J;
|
|
3300
|
-
readonly id:
|
|
3300
|
+
readonly id: UUID;
|
|
3301
3301
|
withId(id: UUID): J;
|
|
3302
3302
|
readonly markers: Markers;
|
|
3303
3303
|
withMarkers(markers: Markers): J;
|
|
@@ -3337,7 +3337,7 @@ export declare namespace Unknown {
|
|
|
3337
3337
|
const Source_base: ((abstract new (...args: any[]) => {
|
|
3338
3338
|
readonly prefix: Space;
|
|
3339
3339
|
withPrefix(prefix: Space): J;
|
|
3340
|
-
readonly id:
|
|
3340
|
+
readonly id: UUID;
|
|
3341
3341
|
withId(id: UUID): J;
|
|
3342
3342
|
readonly markers: Markers;
|
|
3343
3343
|
withMarkers(markers: Markers): J;
|