- Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathast.model.boo
571 lines (445 loc) · 11.4 KB
/
ast.model.boo
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
"""
The classes in this module model the entire AST for the language.
The actual AST classes and supporting modules are generated
by a boo script.
"""
namespace Boo.Ast
classCompileUnit(Node):
Modules as ModuleCollection
[Flags]
enum TypeMemberModifiers:
None =0
Private =1
Internal =2
Protected =4
Public =8
Transient =16
Static =32
Final =64
Virtual =128
Override =256
Abstract =512
Partial =1024
New =2048
VisibilityMask =15
enum MethodImplementationFlags:
None =0
Runtime =1
enum ParameterModifiers:
None =0
Val =0
Ref =1
[Flags]
enum ExceptionHandlerFlags:
None =0
Anonymous =1
Untyped =2
Filter =4
[Flags]
enum GenericParameterConstraints:
None =0
ValueType =1
ReferenceType =2
Constructable =4
Covariant =8
Contravariant =16
abstract classTypeMember(Node, INodeWithAttributes):
Modifiers as TypeMemberModifiers
Name asstring
Attributes as AttributeCollection
classTypeMemberStatement(Statement):
TypeMember as TypeMember
classExplicitMemberInfo(Node):
InterfaceType as SimpleTypeReference
[collection(TypeMember)]
classTypeMemberCollection:
pass
abstract classTypeReference(Node):
IsPointer asbool
classSimpleTypeReference(TypeReference):
Name asstring
classArrayTypeReference(TypeReference):
ElementType as TypeReference
Rank as IntegerLiteralExpression
classCallableTypeReference(TypeReference, INodeWithParameters):
Parameters as ParameterDeclarationCollection
ReturnType as TypeReference
classGenericTypeReference(SimpleTypeReference):
GenericArguments as TypeReferenceCollection
classGenericTypeDefinitionReference(SimpleTypeReference):
GenericPlaceholders asint
[collection(TypeReference)]
classTypeReferenceCollection:
pass
classCallableDefinition(TypeMember, INodeWithParameters, INodeWithGenericParameters):
Parameters as ParameterDeclarationCollection
GenericParameters as GenericParameterDeclarationCollection
ReturnType as TypeReference
ReturnTypeAttributes as AttributeCollection
abstract classTypeDefinition(TypeMember, INodeWithGenericParameters):
Members as TypeMemberCollection
BaseTypes as TypeReferenceCollection
GenericParameters as GenericParameterDeclarationCollection
[collection(TypeDefinition)]
classTypeDefinitionCollection:
pass
classNamespaceDeclaration(Node):
Name asstring
classImport(Node):
Expression as Expression
AssemblyReference as ReferenceExpression
Alias as ReferenceExpression
[collection(Import)]
classImportCollection:
pass
classModule(TypeDefinition):
Namespace as NamespaceDeclaration
Imports as ImportCollection
[auto]
Globals as Block
AssemblyAttributes as AttributeCollection
[collection(Module)]
classModuleCollection:
pass
classClassDefinition(TypeDefinition):
pass
classStructDefinition(TypeDefinition):
pass
classInterfaceDefinition(TypeDefinition):
pass
classEnumDefinition(TypeDefinition):
pass
classEnumMember(TypeMember):
Initializer as Expression
classField(TypeMember):
Type as TypeReference
Initializer as Expression
IsVolatile asbool
classProperty(TypeMember, INodeWithParameters, IExplicitMember):
Parameters as ParameterDeclarationCollection
Getter as Method
Setter as Method
Type as TypeReference
ExplicitInfo as ExplicitMemberInfo
classEvent(TypeMember):
Add as Method
Remove as Method
Raise as Method
Type as TypeReference
classLocal(Node):
Name asstring
[collection(Local)]
classLocalCollection:
pass
classBlockExpression(Expression, INodeWithParameters, INodeWithBody):
Parameters as ParameterDeclarationCollection
ReturnType as TypeReference
[auto]
Body as Block
classMethod(CallableDefinition, IExplicitMember, INodeWithBody):
[auto]
Body as Block
Locals as LocalCollection
ImplementationFlags as MethodImplementationFlags
ExplicitInfo as ExplicitMemberInfo
classConstructor(Method):
pass
classDestructor(Method):
pass
classParameterDeclaration(Node, INodeWithAttributes):
Name asstring
Type as TypeReference
Modifiers as ParameterModifiers
Attributes as AttributeCollection
[collection(ParameterDeclaration)]
classParameterDeclarationCollection:
pass
classGenericParameterDeclaration(Node):
Name asstring
BaseTypes as TypeReferenceCollection
Constraints as GenericParameterConstraints
[collection(GenericParameterDeclaration)]
classGenericParameterDeclarationCollection:
pass
classDeclaration(Node):
Name asstring
Type as TypeReference
[collection(Declaration)]
classDeclarationCollection:
pass
classAttribute(Node, INodeWithArguments):
Name asstring
Arguments as ExpressionCollection
NamedArguments as ExpressionPairCollection
[collection(Attribute)]
classAttributeCollection:
pass
enum StatementModifierType:
None
If
Unless
While
classStatementModifier(Node):
Type as StatementModifierType
Condition as Expression
abstract classStatement(Node):
Modifier as StatementModifier
classGotoStatement(Statement):
Label as ReferenceExpression
classLabelStatement(Statement):
Name asstring
classBlock(Statement):
Statements as StatementCollection
[collection(Statement)]
classStatementCollection:
pass
classDeclarationStatement(Statement):
Declaration as Declaration
Initializer as Expression
classMacroStatement(Statement, INodeWithBody):
Name asstring
Arguments as ExpressionCollection
[auto]
Body as Block
classTryStatement(Statement):
[auto]
ProtectedBlock as Block
ExceptionHandlers as ExceptionHandlerCollection
FailureBlock as Block
EnsureBlock as Block
classExceptionHandler(Node):
Declaration as Declaration
FilterCondition as Expression
Flags as ExceptionHandlerFlags
[auto]
Block as Block
[collection(ExceptionHandler)]
classExceptionHandlerCollection:
pass
abstract classConditionalStatement(Statement):
Condition as Expression
classIfStatement(ConditionalStatement):
TrueBlock as Block
FalseBlock as Block
classUnlessStatement(ConditionalStatement):
[auto]
Block as Block
classForStatement(Statement):
Declarations as DeclarationCollection
Iterator as Expression
[auto]
Block as Block
OrBlock as Block
ThenBlock as Block
classWhileStatement(ConditionalStatement):
[auto]
Block as Block
OrBlock as Block
ThenBlock as Block
classBreakStatement(Statement):
pass
classContinueStatement(Statement):
pass
classReturnStatement(Statement):
Expression as Expression
classYieldStatement(Statement):
Expression as Expression
classRaiseStatement(Statement):
Exception as Expression
classUnpackStatement(Statement):
Declarations as DeclarationCollection
Expression as Expression
classExpressionStatement(Statement):
[LexicalInfo]
Expression as Expression
abstract classExpression(Node):
pass
[collection(Expression)]
classExpressionCollection:
pass
[ignore]
classOmittedExpression(Expression):
pass
classExpressionPair(Node):
First as Expression
Second as Expression
[collection(ExpressionPair)]
classExpressionPairCollection:
pass
classMethodInvocationExpression(Expression, INodeWithArguments):
Target as Expression
Arguments as ExpressionCollection
NamedArguments as ExpressionPairCollection
enum BinaryOperatorType:
None
Addition
Subtraction
Multiply
Division
Modulus
Exponentiation
LessThan
LessThanOrEqual
GreaterThan
GreaterThanOrEqual
Equality
Inequality
Match
NotMatch
Assign
InPlaceAddition
InPlaceSubtraction
InPlaceMultiply
InPlaceDivision
InPlaceModulus
InPlaceBitwiseAnd
InPlaceBitwiseOr
ReferenceEquality
ReferenceInequality
TypeTest
Member
NotMember
Or
And
BitwiseOr
BitwiseAnd
ExclusiveOr
InPlaceExclusiveOr
ShiftLeft
InPlaceShiftLeft
ShiftRight
InPlaceShiftRight
#values are ready to be used as mask if/when BinaryOperatorType
#is changed as in patch attached to BOO-1123 (breaking change)
enum BinaryOperatorKind:
Arithmetic = 0xF
Comparison = 0xFF0
TypeComparison = 0xF00
Assignment = 0xFF000
InPlaceAssignment = 0xF0000
Logical = 0x0F00000
Bitwise = 0xF000000
enum UnaryOperatorType:
None
UnaryNegation
Increment
Decrement
PostIncrement
PostDecrement
LogicalNot
Explode
OnesComplement
AddressOf
Indirection
SafeAccess
classUnaryExpression(Expression):
Operator as UnaryOperatorType
Operand as Expression
classBinaryExpression(Expression):
Operator as BinaryOperatorType
Left as Expression
Right as Expression
classConditionalExpression(Expression):
Condition as Expression
TrueValue as Expression
FalseValue as Expression
classReferenceExpression(Expression):
Name asstring
classMemberReferenceExpression(ReferenceExpression):
Target as Expression
classGenericReferenceExpression(Expression):
Target as Expression
GenericArguments as TypeReferenceCollection
abstract classLiteralExpression(Expression):
pass
classQuasiquoteExpression(LiteralExpression):
Node as Node
classStringLiteralExpression(LiteralExpression):
Value asstring
classCharLiteralExpression(StringLiteralExpression):
pass
classTimeSpanLiteralExpression(LiteralExpression):
Value as System.TimeSpan
classIntegerLiteralExpression(LiteralExpression):
Value aslong
IsLong asbool
classDoubleLiteralExpression(LiteralExpression):
Value asdouble
IsSingle asbool
classNullLiteralExpression(LiteralExpression):
pass
classSelfLiteralExpression(LiteralExpression):
pass
classSuperLiteralExpression(LiteralExpression):
pass
classBoolLiteralExpression(LiteralExpression):
Value asbool
classRELiteralExpression(LiteralExpression):
Value asstring
classSpliceExpression(Expression):
Expression as Expression
classSpliceTypeReference(TypeReference):
Expression as Expression
classSpliceMemberReferenceExpression(Expression):
Target as Expression
NameExpression as Expression
classSpliceTypeMember(TypeMember):
TypeMember as TypeMember
NameExpression as Expression
classSpliceTypeDefinitionBody(TypeMember):
Expression as Expression
classSpliceParameterDeclaration(ParameterDeclaration):
ParameterDeclaration as ParameterDeclaration
NameExpression as Expression
classExpressionInterpolationExpression(Expression):
Expressions as ExpressionCollection
classHashLiteralExpression(LiteralExpression):
Items as ExpressionPairCollection
classListLiteralExpression(LiteralExpression):
Items as ExpressionCollection
classCollectionInitializationExpression(Expression):
Collection as Expression
Initializer as Expression
classArrayLiteralExpression(ListLiteralExpression):
Type as ArrayTypeReference
classGeneratorExpression(Expression):
Expression as Expression
Declarations as DeclarationCollection
Iterator as Expression
Filter as StatementModifier
classExtendedGeneratorExpression(Expression):
Items as GeneratorExpressionCollection
[collection(GeneratorExpression)]
classGeneratorExpressionCollection:
pass
classSlice(Node):
Begin as Expression
End as Expression
Step as Expression
[collection(Slice)]
classSliceCollection:
pass
classSlicingExpression(Expression):
Target as Expression
Indices as SliceCollection
classTryCastExpression(Expression):
Target as Expression
Type as TypeReference
classCastExpression(Expression):
Target as Expression
Type as TypeReference
classTypeofExpression(Expression):
Type as TypeReference
classAsyncBlockExpression(BlockExpression):
Block as BlockExpression
classAwaitExpression(Expression):
BaseExpression as Expression
classCustomStatement(Statement):
pass
classCustomExpression(Expression):
pass
classStatementTypeMember(TypeMember):
"""
Allow for macros and initializing statements inside type definition bodies.
"""
Statement as Statement