forked from ballerina-platform/nballerina
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathast.bal
570 lines (471 loc) · 12.7 KB
/
ast.bal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
import wso2/nballerina.types as t;
import wso2/nballerina.comm.diagnostic as d;
public type Position d:Position;
type PositionFields record {|
Position startPos;
Position endPos;
|};
public type ModulePart record {|
ImportDecl[] importDecls;
SourceFile file;
int partIndex;
ModuleLevelDefn[] defns;
|};
public type ModuleLevelDefn FunctionDefn|ConstDefn|TypeDefn;
public type Visibility "public"?;
public type ImportDecl record {|
*PositionFields;
string? org;
[string, string...] names;
string? prefix;
Position namePos;
int partIndex;
|};
public type FunctionDefnBase record {|
*PositionFields;
FunctionTypeDesc typeDesc;
FunctionParam[] params;
StmtBlock body;
// This is filled in during analysis
t:FunctionSignature? signature = ();
|};
public type FunctionDefn record {|
*FunctionDefnBase;
readonly string name;
Position namePos;
Visibility vis;
ModulePart part;
|};
public type Function FunctionDefn|AnonFunction;
public type FunctionParam record {|
*PositionFields;
string name;
Position namePos;
TypeDesc td;
boolean isRest = false;
|};
public type ResolvedConst readonly & [t:SemType, t:SingleValue];
public type ConstDefn record {|
*PositionFields;
readonly string name;
ModulePart part;
SubsetBuiltinTypeDesc? td;
Visibility vis;
Expr expr;
Position namePos;
ResolvedConst|false? resolved = ();
|};
public type Stmt VarDeclStmt|AssignStmt|CallStmt|ReturnStmt|IfElseStmt|MatchStmt|WhileStmt|ForeachStmt|BreakContinueStmt|CompoundAssignStmt|PanicStmt;
public type CallExpr FunctionCallExpr|MethodCallExpr|CheckingCallExpr;
public type Expr GroupingExpr|NumericLiteralExpr|LiteralExpr|VarRefExpr|CompoundExpr|FunctionCallExpr|MethodCallExpr|ExplicitAnonymousFunctionExpr;
public type CompoundExpr BinaryExpr|UnaryExpr|CheckingExpr|FunctionCallExpr|MethodCallExpr|TypeCastExpr|TypeTestExpr|ConstructorExpr|MemberAccessExpr|FieldAccessExpr;
public type ConstructorExpr ListConstructorExpr|MappingConstructorExpr|ErrorConstructorExpr;
public type ExtendedLiteralExpr LiteralExpr|NumericLiteralExpr|SimpleConstNegateExpr;
public type SimpleConstExpr ExtendedLiteralExpr|VarRefExpr;
// L-value expression
public type LExpr VarRefExpr|MemberAccessLExpr|FieldAccessLExpr;
public const WILDCARD = ();
public type StmtBlock record {|
*PositionFields;
Stmt[] stmts;
Position closeBracePos;
|};
public type CallStmt record {|
*PositionFields;
CallExpr callExpr;
|};
public type AssignStmt record {|
*PositionFields;
Position opPos;
LExpr|WILDCARD lValue;
Expr expr;
|};
public type CompoundAssignStmt record {|
*PositionFields;
LExpr lValue;
Expr expr;
BinaryArithmeticOp|BinaryBitwiseOp op;
Position opPos;
|};
public type ReturnStmt record {|
*PositionFields;
Position kwPos;
Expr? returnExpr;
|};
public type PanicStmt record {|
*PositionFields;
Position kwPos;
Expr panicExpr;
|};
public type IfElseStmt record {|
*PositionFields;
Expr condition;
StmtBlock ifTrue;
StmtBlock|IfElseStmt? ifFalse;
|};
public type MatchStmt record {|
*PositionFields;
Expr expr;
MatchClause[] clauses;
|};
public type MatchClause record {|
*PositionFields;
MatchPattern[] patterns;
StmtBlock block;
Position opPos;
|};
public type MatchPattern SimpleConstExpr|WildcardMatchPattern;
const WILDCARD_MATCH_PATTERN = "_";
public type WildcardMatchPattern record {|
*PositionFields;
WILDCARD_MATCH_PATTERN pattern = WILDCARD_MATCH_PATTERN;
|};
public type WhileStmt record {|
*PositionFields;
Expr condition;
StmtBlock body;
|};
public type ForeachStmt record {|
*PositionFields;
Position kwPos;
// name and position of the variable
Position namePos;
string name;
RangeExpr range;
StmtBlock body;
|};
public type BreakContinue "break"|"continue";
public type BreakContinueStmt record {|
*PositionFields;
BreakContinue breakContinue;
|};
public type VarDeclStmt record {|
*PositionFields;
Position opPos;
TypeDesc td;
string|WILDCARD name;
Position namePos;
Expr initExpr;
boolean isFinal;
|};
public type GroupingExpr record {|
*PositionFields;
Expr expr;
|};
public type BinaryArithmeticOp "+" | "-" | "*" | "/" | "%";
public type BitwiseShiftOp "<<" | ">>" | ">>>";
public type BinaryBitwiseOp "|" | "^" | "&" | BitwiseShiftOp;
public type BinaryLogicalOp "&&" | "||";
public type BinaryRelationalOp "<" | ">" | "<=" | ">=";
public type BinaryEqualityOp "==" | "!=" | "===" | "!==";
public type RangeOp "..." | "..<";
type CompoundAssignOp "+=" | "-=" | "/=" | "*=" | "&=" | "|=" | "^=" | "<<=" | ">>=" | ">>>=";
public type BinaryExprOp BinaryArithmeticOp|BinaryRelationalOp|BinaryEqualityOp;
const NegateOp = "-";
public type UnaryExprOp NegateOp | "!" | "~";
public type BinaryExpr BinaryRelationalExpr|BinaryEqualityExpr|BinaryArithmeticExpr|BinaryBitwiseExpr|BinaryLogicalExpr;
// We use different operator names so things work better with match statements
public type BinaryExprBase record {|
*PositionFields;
Position opPos;
Expr left;
Expr right;
|};
public type BinaryEqualityExpr record {|
*BinaryExprBase;
BinaryEqualityOp equalityOp;
|};
public type BinaryRelationalExpr record {|
*BinaryExprBase;
BinaryRelationalOp relationalOp;
|};
public type BinaryArithmeticExpr record {|
*BinaryExprBase;
BinaryArithmeticOp arithmeticOp;
|};
public type BinaryBitwiseExpr record {|
*BinaryExprBase;
BinaryBitwiseOp bitwiseOp;
|};
public type BinaryLogicalExpr record {|
*BinaryExprBase;
BinaryLogicalOp logicalOp;
|};
public type UnaryExpr record {|
*PositionFields;
Position opPos;
UnaryExprOp op;
Expr operand;
|};
public type SimpleConstNegateExpr record {|
*UnaryExpr;
// JBUG #33369 should be able to do `"-" op = "-";`
NegateOp op = "-";
NumericLiteralExpr|LiteralExpr operand;
|};
public type ErrorConstructorExpr record {|
*PositionFields;
Position kwPos;
Expr message;
|};
public type FunctionCallExpr record {|
*PositionFields;
Position openParenPos;
Position closeParenPos;
Position qNamePos;
string? prefix = ();
string funcName;
Expr[] args;
|};
public type MethodCallExpr record {|
*PositionFields;
Position opPos; // position of .
Position openParenPos;
Position closeParenPos;
Position namePos;
string methodName;
Expr target;
Expr[] args;
|};
public type AnonFunction record {|
*FunctionDefnBase;
|};
public type ExplicitAnonymousFunctionExpr record {|
*PositionFields;
AnonFunction func;
|};
public type CheckingKeyword "check"|"checkpanic";
public type CheckingExpr record {|
// JBUG #32617 can't include PositionFields
// *PositionFields
Position startPos;
Position endPos;
Position kwPos;
CheckingKeyword checkingKeyword;
Expr operand;
|};
public type CheckingCallExpr record {|
// JBUG #32617 can't include CheckingExpr
// *CheckingExpr;
// *PositionFields
Position startPos;
Position endPos;
Position kwPos;
CheckingKeyword checkingKeyword;
CallExpr operand;
|};
public type ListConstructorExpr record {|
*PositionFields;
Position opPos;
Expr[] members;
|};
public type MappingConstructorExpr record {|
*PositionFields;
Position opPos;
Field[] fields;
|};
public type Field record {|
*PositionFields;
Position colonPos;
boolean isIdentifier;
string name;
Expr value;
|};
public type MemberAccessExpr record {|
*PositionFields;
Position opPos;
Expr container;
Expr index;
|};
// JBUG #32617 gets a bad, sad if this uses *MemberAccessExpr and overrides container
public type MemberAccessLExpr record {|
*PositionFields;
Position opPos;
LExpr container;
Expr index;
|};
public type FieldAccessExpr record {|
*PositionFields;
Position opPos;
Expr container;
string fieldName;
|};
public type FieldAccessLExpr record {|
*PositionFields;
Position opPos;
LExpr container;
string fieldName;
|};
public type RangeExpr record {|
*PositionFields;
Position opPos;
Expr lower;
Expr upper;
|};
public type VarRefExpr record {|
*PositionFields;
string? prefix;
string name;
Position qNamePos;
|};
public type TypeCastExpr record {|
*PositionFields;
TypeDesc td;
Expr operand;
Position opPos;
|};
public type TypeTestExpr record {|
*PositionFields;
TypeDesc td;
// Use `left` here so this is distinguishable from TypeCastExpr and LiteralExpr
Expr left;
boolean negated;
Position kwPos;
|};
// Non-numeric literals
public type LiteralExpr record {|
*PositionFields;
string|boolean|() value;
|};
public type NumericLiteralExpr IntLiteralExpr|FpLiteralExpr;
public type IntLiteralBase 10|16;
// The public type of value represented by an int-literal
// depends on the contextually expected public type, which
// we do not know at parse time.
public type IntLiteralExpr record {|
*PositionFields;
IntLiteralBase base;
string digits;
|};
public const FLOAT_TYPE_SUFFIX = "f";
public const DECIMAL_TYPE_SUFFIX = "d";
public type FpTypeSuffix FLOAT_TYPE_SUFFIX|DECIMAL_TYPE_SUFFIX;
public type FpLiteralExpr record {|
// This is the literal without the public type suffix
*PositionFields;
string untypedLiteral;
FpTypeSuffix? typeSuffix;
|};
// Types
public type TypeDefn record {|
*PositionFields;
readonly string name;
ModulePart part;
Visibility vis;
TypeDesc td;
Position namePos;
t:SemType? semType = ();
int cycleDepth = -1;
|};
public type TypeDesc BuiltinTypeDesc|BinaryTypeDesc|ConstructorTypeDesc|TypeDescRef|SingletonTypeDesc|UnaryTypeDesc;
public type ConstructorTypeDesc TupleTypeDesc|ArrayTypeDesc|MappingTypeDesc|FunctionTypeDesc|ErrorTypeDesc|XmlSequenceTypeDesc|TableTypeDesc|ObjectTypeDesc;
public type TupleTypeDesc record {|
*PositionFields;
TypeDesc[] members;
TypeDesc? rest;
t:ListDefinition? defn = ();
|};
public type ArrayTypeDesc record {|
*PositionFields;
TypeDesc member;
SimpleConstExpr?[] dimensions = [];
t:ListDefinition? defn = ();
|};
public type FieldDesc record {|
*PositionFields;
string name;
TypeDesc typeDesc;
boolean ro = false;
boolean opt = false;
|};
public const INCLUSIVE_RECORD_TYPE_DESC = true;
public type MappingTypeDesc record {|
*PositionFields;
FieldDesc[]? fields;
TypeDesc|INCLUSIVE_RECORD_TYPE_DESC? rest;
t:MappingDefinition? defn = ();
|};
public type FunctionTypeDesc record {|
// XXX need to handle rest public type
*PositionFields;
FunctionTypeParam[] params;
TypeDesc? ret;
t:FunctionDefinition? defn = ();
|};
public type FunctionTypeParam record {|
*PositionFields;
string? name;
Position? namePos;
TypeDesc td;
boolean isRest = false;
|};
public type ErrorTypeDesc record {|
*PositionFields;
TypeDesc detail;
|};
public type BinaryTypeOp "|" | "&";
public type BinaryTypeDesc record {|
*PositionFields;
BinaryTypeOp op;
Position[] opPos;
TypeDesc[] tds;
|};
public type UnaryTypeOp "!"|"("|"?";
public type UnaryTypeDesc record {|
*PositionFields;
UnaryTypeOp op;
Position opPos;
TypeDesc td;
|};
public type XmlSequenceTypeDesc record {|
*PositionFields;
Position pos;
TypeDesc constituent;
|};
public type TableTypeDesc record {|
*PositionFields;
TypeDesc row;
|};
public type ObjectTypeDesc record {|
*PositionFields;
MemberDesc[] members;
t:ObjectDefinition? defn = ();
|};
public type MemberDesc FieldMemberDesc|MethodMemberDesc;
public type MemberDescBase record {|
*PositionFields;
Position namePos;
string name;
"field"|"method" kind;
TypeDesc td;
|};
public type FieldMemberDesc record {|
*MemberDescBase;
"field" kind = "field";
|};
public type MethodMemberDesc record {|
*MemberDescBase;
"method" kind = "method";
FunctionTypeDesc td;
|};
public type TypeDescRef record {|
*PositionFields;
string? prefix = ();
string typeName;
Position qNamePos;
|};
public type SingletonTypeDesc record {|
*PositionFields;
ExtendedLiteralExpr valueExpr;
|};
public type SubsetBuiltinTypeName "any"|"anydata"|"boolean"|"byte"|"int"|"decimal"|"float"|"string"|"error"|"function";
public type BuiltinTypeName SubsetBuiltinTypeName|"handle"|"json"|"never"|"readonly"|"typedesc"|"xml"|"null";
public type BuiltinTypeDesc readonly & record {|
*PositionFields;
BuiltinTypeName builtinTypeName;
|};
// This is used for ConstDefinitions
public type SubsetBuiltinTypeDesc readonly & record {|
*PositionFields;
SubsetBuiltinTypeName builtinTypeName;
|};