erg_compiler 0.6.53

Centimetre: the Erg compiler
Documentation
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
.PyCF_ALLOW_TOP_LEVEL_AWAIT: Nat
.PyCF_ONLY_AST: Nat
.PyCF_OPTIMIZED_AST: Nat
.PyCF_TYPE_COMMENTS: Nat

.NodeVisitor: ClassType
.NodeVisitor.
    visit: (self: NodeVisitor, node: .AST) -> Obj
    generic_visit: (self: NodeVisitor, node: .AST) -> Obj
    visit_Constant: (self: NodeVisitor, node: .Constant) -> Obj
.NodeTransformer: ClassType
.NodeTransformer <: NodeVisitor

.AST: ClassType
.Stmt = 'stmt': ClassType
.Stmt <: AST
.Expr = 'expr': ClassType
.Expr <: Stmt
.ExprContext = 'expr_context': ClassType
.ExprContext <: AST
.Module = 'module': ClassType
.Module <: AST
.Module.
    body: [Stmt; _]
    type_ignores: [TypeIgnore; _]

.Constant: ClassType
.Constant <: Expr
.Constant.
    value: Obj
    kind: Str or NoneType

.FormattedValue: ClassType
.FormattedValue <: Expr
.FormattedValue.
    value: Expr
    conversion: Int
    format_spec: Expr or NoneType

.JoinedStr: ClassType
.JoinedStr <: Expr
.JoinedStr.
    values: [Expr; _]

.List: ClassType
.List <: Expr
.List.
    elts: [Expr; _]
    ctx: ExprContext

.Tuple: ClassType
.Tuple <: Expr
.Tuple.
    elts: [Expr; _]
    ctx: ExprContext

.Set: ClassType
.Set <: Expr
.Set.
    elts: [Expr; _]

.Dict: ClassType
.Dict <: Expr
.Dict.
    keys: [Expr; _]
    values: [Expr; _]

.Name: ClassType
.Name <: Expr
.Name.
    id: Str
    ctx: ExprContext

.Load: ClassType
.Load <: ExprContext
.Store: ClassType
.Store <: ExprContext
.Del: ClassType
.Del <: ExprContext
.Starred: ClassType
.Starred <: Expr
.Starred.
    value: Expr
    ctx: ExprContext
.UnaryOp: ClassType
.UnaryOp <: Expr
.UnaryOp.
    op: Unaryop
    operand: Expr

.Unaryop = 'unaryop': ClassType
.UAdd: ClassType
.UAdd <: Unaryop
.USub: ClassType
.USub <: Unaryop
.Not: ClassType
.Not <: Unaryop
.Invert: ClassType
.Invert <: Unaryop
.Operator = 'operator': ClassType
.BinOp: ClassType
.BinOp <: Expr
.BinOp.
    left: Expr
    op: Operator
    right: Expr

.Add: ClassType
.Add <: Operator
.Sub: ClassType
.Sub <: Operator
.Mult: ClassType
.Mult <: Operator
.Div: ClassType
.Div <: Operator
.FloorDiv: ClassType
.FloorDiv <: Operator
.Mod: ClassType
.Mod <: Operator
.Pow: ClassType
.Pow <: Operator
.LShift: ClassType
.LShift <: Operator
.RShift: ClassType
.RShift <: Operator
.BitOr: ClassType
.BitOr <: Operator
.BitXor: ClassType
.BitXor <: Operator
.BitAnd: ClassType
.BitAnd <: Operator
.MatMult: ClassType
.MatMult <: Operator
.BoolOp: ClassType
.BoolOp <: Expr
.BoolOp.
    op: Boolop
    values: [Expr; _]

.Boolop = 'boolop': ClassType
.Boolop <: AST
.And: ClassType
.And <: Boolop
.Or: ClassType
.Or <: Boolop
.Compare: ClassType
.Compare <: Expr
.Compare.
    left: Expr
    ops: [Cmpop; _]
    comparators: [Expr; _]

.Cmpop = 'cmpop': ClassType
.Cmpop <: AST
.Eq: ClassType
.Eq <: Cmpop
.NotEq: ClassType
.NotEq <: Cmpop
.Lt: ClassType
.Lt <: Cmpop
.LtE: ClassType
.LtE <: Cmpop
.Gt: ClassType
.Gt <: Cmpop
.GtE: ClassType
.GtE <: Cmpop
.Is: ClassType
.Is <: Cmpop
.IsNot: ClassType
.IsNot <: Cmpop
.In: ClassType
.In <: Cmpop
.NotIn: ClassType
.NotIn <: Cmpop

.Call: ClassType
.Call <: Expr
.Call.
    func: Expr
    args: [Expr; _]
    keywords: [Keyword; _]

.Keyword = 'keyword': ClassType
.Keyword <: AST
.Keyword.
    arg: Str or NoneType
    value: Expr

.IfExp: ClassType
.IfExp <: Expr
.IfExp.
    test: Expr
    body: Expr
    orelse: Expr

.Attribute: ClassType
.Attribute <: Expr
.Attribute.
    value: Expr
    attr: Str
    ctx: ExprContext

.NamedExpr: ClassType
.NamedExpr <: Expr
.NamedExpr.
    target: Expr
    value: Expr

.Subscript: ClassType
.Subscript <: Expr
.Subscript.
    value: Expr
    slice: Expr
    ctx: ExprContext

.Slice: ClassType
.Slice <: Expr
.Slice.
    lower: Expr or NoneType
    upper: Expr or NoneType
    step: Expr or NoneType

.ListComp: ClassType
.ListComp <: Expr
.ListComp.
    elt: Expr
    generators: [Comprehension; _]

.SetComp: ClassType
.SetComp <: Expr
.SetComp.
    elt: Expr
    generators: [Comprehension; _]

.GeneratorExp: ClassType
.GeneratorExp <: Expr
.GeneratorExp.
    elt: Expr
    generators: [Comprehension; _]

.DictComp: ClassType
.DictComp <: Expr
.DictComp.
    key: Expr
    value: Expr
    generators: [Comprehension; _]

.Lambda: ClassType
.Lambda <: Expr
.Lambda.
    args: Arguments
    body: Expr

.Comprehension = 'comprehension': ClassType
.Comprehension <: AST
.Comprehension.
    target: Expr
    iter: Expr
    ifs: [Expr; _]
    is_async: Bool

.FunctionDef: ClassType
.FunctionDef <: Stmt
.FunctionDef.
    name: Str
    args: Arguments
    body: [Stmt; _]
    decorator_list: [Expr; _]
    returns: Expr or NoneType
    type_comment: Str or NoneType

.AsyncFunctionDef: ClassType
.AsyncFunctionDef <: Stmt
.AsyncFunctionDef.
    name: Str
    args: Arguments
    body: [Stmt; _]
    decorator_list: [Expr; _]
    returns: Expr or NoneType
    type_comment: Str or NoneType

.ClassDef: ClassType
.ClassDef <: Stmt
.ClassDef.
    name: Str
    bases: [Expr; _]
    keywords: [Keyword; _]
    body: [Stmt; _]
    decorator_list: [Expr; _]

.Return: ClassType
.Return <: Stmt
.Return.
    value: Expr or NoneType

.Delete: ClassType
.Delete <: Stmt
.Delete.
    targets: [Expr; _]

.Assign: ClassType
.Assign <: Stmt
.Assign.
    targets: [Expr; _]
    value: Expr
    type_comment: Str or NoneType

.TypeAlias: ClassType
.TypeAlias <: Stmt
.TypeAlias.
    name: Str
    type_params: [TypeParam; _]

.AugAssign: ClassType
.AugAssign <: Stmt
.AugAssign.
    target: Expr
    op: Operator
    value: Expr

.AnnAssign: ClassType
.AnnAssign <: Stmt
.AnnAssign.
    target: Expr
    annotation: Expr
    value: Expr or NoneType
    simple: Int

.For: ClassType
.For <: Stmt
.For.
    target: Expr
    iter: Expr
    body: [Stmt; _]
    orelse: [Stmt; _]

.AsyncFor: ClassType
.AsyncFor <: Stmt

.While: ClassType
.While <: Stmt
.While.
    test: Expr
    body: [Stmt; _]
    orelse: [Stmt; _]

.If: ClassType
.If <: Stmt
.If.
    test: Expr
    body: [Stmt; _]
    orelse: [Stmt; _]

.With: ClassType
.With <: Stmt
.With.
    items: [WithItem; _]
    body: [Stmt; _]
    type_comment: Str or NoneType

.AsyncWith: ClassType
.AsyncWith <: Stmt
.AsyncWith.
    items: [WithItem; _]
    body: [Stmt; _]
    type_comment: Str or NoneType

.Match: ClassType
.Match <: Stmt
.Match.
    subject: Expr
    cases: [MatchCase; _]

.Raise: ClassType
.Raise <: Stmt
.Raise.
    exc: Expr or NoneType
    cause: Expr or NoneType

.Try: ClassType
.Try <: Stmt
.Try.
    body: [Stmt; _]
    handlers: [ExceptHandler; _]
    orelse: [Stmt; _]
    finalbody: [Stmt; _]

.TryStar: ClassType
.TryStar <: Stmt
.TryStar.
    body: [Stmt; _]
    handlers: [ExceptHandler; _]
    orelse: [Stmt; _]
    finalbody: [Stmt; _]

.Assert: ClassType
.Assert <: Stmt
.Assert.
    test: Expr
    msg: Expr or NoneType

.Import: ClassType
.Import <: Stmt
.Import.
    names: [Alias; _]

.ImportFrom: ClassType
.ImportFrom <: Stmt
.ImportFrom.
    module: Str or NoneType
    names: [Alias; _]
    level: Int or NoneType

.Global: ClassType
.Global <: Stmt
.Nonlocal: ClassType
.Nonlocal <: Stmt
.Pass: ClassType
.Pass <: Stmt
.Break: ClassType
.Break <: Stmt
.Continue: ClassType
.Continue <: Stmt

.Pattern = 'pattern': ClassType
.Pattern <: AST
.MatchValue: ClassType
.MatchValue <: Pattern
.MatchValue.
    value: Expr
.MatchSingleton: ClassType
.MatchSingleton <: Pattern
.MatchSingleton.
    value: Obj
.MatchSequence: ClassType
.MatchSequence <: Pattern
.MatchSequence.
    patterns: [Pattern; _]
.MatchMapping: ClassType
.MatchMapping <: Pattern
.MatchMapping.
    keys: [Expr; _]
    patterns: [Pattern; _]
    rest: Str
.MatchClass: ClassType
.MatchClass <: Pattern
.MatchClass.
    cls: Expr
    patterns: [Pattern; _]
    kwd_attrs: [Str; _]
    kwd_patterns: [Pattern; _]
.MatchStar: ClassType
.MatchStar <: Pattern
.MatchStar.
    name: Str or NoneType
.MatchAs: ClassType
.MatchAs <: Pattern
.MatchAs.
    name: Str or NoneType
    pattern: Pattern or NoneType
.MatchOr: ClassType
.MatchOr <: Pattern
.MatchOr.
    patterns: [Pattern; _]

.ExceptHandler: ClassType
.ExceptHandler <: AST
.ExceptHandler.
    type: Expr or NoneType
    name: Str or NoneType
    body: [Stmt; _]

.WithItem = 'withitem': ClassType
.WithItem <: AST
.WithItem.
    context_expr: Expr
    optional_vars: Expr or NoneType

.MatchCase: ClassType
.MatchCase <: AST
.MatchCase.
    pattern: Pattern
    guard: Expr or NoneType
    body: [Stmt; _]

.TypeIgnore: ClassType
.TypeIgnore <: AST
.TypeIgnore.
    lineno: Int
    tag: Str

.TypeParam = 'type_param': ClassType
.TypeParam <: AST

.TypeVar: ClassType
.TypeVar <: TypeParam
.TypeVar.
    name: Str
    bound: Expr or NoneType
    default_value: Expr or NoneType

.ParamSpec: ClassType
.ParamSpec <: TypeParam
.ParamSpec.
    name: Str
    default_value: Expr or NoneType

.TypeVarTuple: ClassType
.TypeVarTuple <: TypeParam
.TypeVarTuple.
    name: Str
    default_value: Expr or NoneType

.Arguments = 'arguments': ClassType
.Arguments <: AST
.Arguments.
    posonlyargs: [Arg; _]
    args: [Arg; _]
    vararg: Arg or NoneType
    kwonlyargs: [Arg; _]
    kw_defaults: [Expr or NoneType; _]
    kwarg: Arg or NoneType
    defaults: [Expr or NoneType; _]

.Arg = 'arg': ClassType
.Arg <: AST
.Arg.
    arg: Str
    annotation: Expr or NoneType
    type_comment: Str or NoneType

.Alias = 'alias': ClassType
.Alias <: AST
.Alias.
    name: Str
    asname: Str or NoneType


.dump: (
    node: .AST,
    annotate_fields := Bool,
    include_attributes := Bool,
    indent := Int,
    show_empty := Bool,
) -> Str
.parse: (source: Str, filename := Str, mode := Str) -> .AST
.unparse: (ast_obj: .AST) -> Str
.literal_eval: (node_or_string: .AST or Str) -> Obj
.get_docstring: (node: .AST) -> Str