rustleaf 0.1.0

A simple programming language interpreter written in Rust
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
# Program
Status: 🟢
Assertions: 4

```rustleaf
fn add(x, y) { x + y }
fn multiply(a, b) { a * b }

var sum = add(5, 3);
var product = multiply(4, 6);

assert(sum == 8);
assert(product == 24);
assert(add(10, -2) == 8);
assert(multiply(0, 100) == 0);
```

# Output
```
parse_program: starting
parse_program: parsing statement at position 0 (Fn)
parse_statement: starting at position 0 (Fn)
consume_token: position 0 consumed Fn
consume_token: position 1 consumed Ident
consume_token: position 2 consumed LeftParen
consume_token: position 3 consumed Ident
consume_token: position 4 consumed Comma
consume_token: position 5 consumed Ident
consume_token: position 6 consumed RightParen
consume_token: position 7 consumed LeftBrace
parse_statement: starting at position 8 (Ident(x))
consume_token: position 8 consumed Ident
parse_statement: falling back to expression statement
parse_expression: starting at position 8 (Ident(x))
consume_token: position 8 consumed Ident
parse_primary: success - parsed identifier (x)
consume_token: position 9 consumed Plus
consume_token: position 10 consumed Ident
parse_primary: success - parsed identifier (y)
parse_expression: success - parsed precedence expression
parse_statement: failed - Expected Semicolon, found RightBrace at position 11
parse_expression: starting at position 8 (Ident(x))
consume_token: position 8 consumed Ident
parse_primary: success - parsed identifier (x)
consume_token: position 9 consumed Plus
consume_token: position 10 consumed Ident
parse_primary: success - parsed identifier (y)
parse_expression: success - parsed precedence expression
consume_token: position 11 consumed RightBrace
parse_statement: success - parsed function declaration
parse_program: parsing statement at position 12 (Fn)
parse_statement: starting at position 12 (Fn)
consume_token: position 12 consumed Fn
consume_token: position 13 consumed Ident
consume_token: position 14 consumed LeftParen
consume_token: position 15 consumed Ident
consume_token: position 16 consumed Comma
consume_token: position 17 consumed Ident
consume_token: position 18 consumed RightParen
consume_token: position 19 consumed LeftBrace
parse_statement: starting at position 20 (Ident(a))
consume_token: position 20 consumed Ident
parse_statement: falling back to expression statement
parse_expression: starting at position 20 (Ident(a))
consume_token: position 20 consumed Ident
parse_primary: success - parsed identifier (a)
consume_token: position 21 consumed Star
consume_token: position 22 consumed Ident
parse_primary: success - parsed identifier (b)
parse_expression: success - parsed precedence expression
parse_statement: failed - Expected Semicolon, found RightBrace at position 23
parse_expression: starting at position 20 (Ident(a))
consume_token: position 20 consumed Ident
parse_primary: success - parsed identifier (a)
consume_token: position 21 consumed Star
consume_token: position 22 consumed Ident
parse_primary: success - parsed identifier (b)
parse_expression: success - parsed precedence expression
consume_token: position 23 consumed RightBrace
parse_statement: success - parsed function declaration
parse_program: parsing statement at position 24 (Var)
parse_statement: starting at position 24 (Var)
consume_token: position 24 consumed Var
consume_token: position 25 consumed Ident
consume_token: position 26 consumed Equal
parse_expression: starting at position 27 (Ident(add))
consume_token: position 27 consumed Ident
parse_primary: success - parsed identifier (add)
consume_token: position 28 consumed LeftParen
parse_expression: starting at position 29 (Int(5))
consume_token: position 29 consumed Int
parse_primary: success - parsed numeric/string literal
parse_expression: success - parsed precedence expression
consume_token: position 30 consumed Comma
parse_expression: starting at position 31 (Int(3))
consume_token: position 31 consumed Int
parse_primary: success - parsed numeric/string literal
parse_expression: success - parsed precedence expression
consume_token: position 32 consumed RightParen
parse_expression: success - parsed precedence expression
consume_token: position 33 consumed Semicolon
parse_statement: success - parsed var declaration
parse_program: parsing statement at position 34 (Var)
parse_statement: starting at position 34 (Var)
consume_token: position 34 consumed Var
consume_token: position 35 consumed Ident
consume_token: position 36 consumed Equal
parse_expression: starting at position 37 (Ident(multiply))
consume_token: position 37 consumed Ident
parse_primary: success - parsed identifier (multiply)
consume_token: position 38 consumed LeftParen
parse_expression: starting at position 39 (Int(4))
consume_token: position 39 consumed Int
parse_primary: success - parsed numeric/string literal
parse_expression: success - parsed precedence expression
consume_token: position 40 consumed Comma
parse_expression: starting at position 41 (Int(6))
consume_token: position 41 consumed Int
parse_primary: success - parsed numeric/string literal
parse_expression: success - parsed precedence expression
consume_token: position 42 consumed RightParen
parse_expression: success - parsed precedence expression
consume_token: position 43 consumed Semicolon
parse_statement: success - parsed var declaration
parse_program: parsing statement at position 44 (Ident(assert))
parse_statement: starting at position 44 (Ident(assert))
consume_token: position 44 consumed Ident
parse_statement: falling back to expression statement
parse_expression: starting at position 44 (Ident(assert))
consume_token: position 44 consumed Ident
parse_primary: success - parsed identifier (assert)
consume_token: position 45 consumed LeftParen
parse_expression: starting at position 46 (Ident(sum))
consume_token: position 46 consumed Ident
parse_primary: success - parsed identifier (sum)
consume_token: position 47 consumed EqualEqual
consume_token: position 48 consumed Int
parse_primary: success - parsed numeric/string literal
parse_expression: success - parsed precedence expression
consume_token: position 49 consumed RightParen
parse_expression: success - parsed precedence expression
consume_token: position 50 consumed Semicolon
parse_program: parsing statement at position 51 (Ident(assert))
parse_statement: starting at position 51 (Ident(assert))
consume_token: position 51 consumed Ident
parse_statement: falling back to expression statement
parse_expression: starting at position 51 (Ident(assert))
consume_token: position 51 consumed Ident
parse_primary: success - parsed identifier (assert)
consume_token: position 52 consumed LeftParen
parse_expression: starting at position 53 (Ident(product))
consume_token: position 53 consumed Ident
parse_primary: success - parsed identifier (product)
consume_token: position 54 consumed EqualEqual
consume_token: position 55 consumed Int
parse_primary: success - parsed numeric/string literal
parse_expression: success - parsed precedence expression
consume_token: position 56 consumed RightParen
parse_expression: success - parsed precedence expression
consume_token: position 57 consumed Semicolon
parse_program: parsing statement at position 58 (Ident(assert))
parse_statement: starting at position 58 (Ident(assert))
consume_token: position 58 consumed Ident
parse_statement: falling back to expression statement
parse_expression: starting at position 58 (Ident(assert))
consume_token: position 58 consumed Ident
parse_primary: success - parsed identifier (assert)
consume_token: position 59 consumed LeftParen
parse_expression: starting at position 60 (Ident(add))
consume_token: position 60 consumed Ident
parse_primary: success - parsed identifier (add)
consume_token: position 61 consumed LeftParen
parse_expression: starting at position 62 (Int(10))
consume_token: position 62 consumed Int
parse_primary: success - parsed numeric/string literal
parse_expression: success - parsed precedence expression
consume_token: position 63 consumed Comma
parse_expression: starting at position 64 (Minus)
consume_token: position 64 consumed Minus
consume_token: position 65 consumed Int
parse_primary: success - parsed numeric/string literal
parse_expression: success - parsed precedence expression
consume_token: position 66 consumed RightParen
consume_token: position 67 consumed EqualEqual
consume_token: position 68 consumed Int
parse_primary: success - parsed numeric/string literal
parse_expression: success - parsed precedence expression
consume_token: position 69 consumed RightParen
parse_expression: success - parsed precedence expression
consume_token: position 70 consumed Semicolon
parse_program: parsing statement at position 71 (Ident(assert))
parse_statement: starting at position 71 (Ident(assert))
consume_token: position 71 consumed Ident
parse_statement: falling back to expression statement
parse_expression: starting at position 71 (Ident(assert))
consume_token: position 71 consumed Ident
parse_primary: success - parsed identifier (assert)
consume_token: position 72 consumed LeftParen
parse_expression: starting at position 73 (Ident(multiply))
consume_token: position 73 consumed Ident
parse_primary: success - parsed identifier (multiply)
consume_token: position 74 consumed LeftParen
parse_expression: starting at position 75 (Int(0))
consume_token: position 75 consumed Int
parse_primary: success - parsed numeric/string literal
parse_expression: success - parsed precedence expression
consume_token: position 76 consumed Comma
parse_expression: starting at position 77 (Int(100))
consume_token: position 77 consumed Int
parse_primary: success - parsed numeric/string literal
parse_expression: success - parsed precedence expression
consume_token: position 78 consumed RightParen
consume_token: position 79 consumed EqualEqual
consume_token: position 80 consumed Int
parse_primary: success - parsed numeric/string literal
parse_expression: success - parsed precedence expression
consume_token: position 81 consumed RightParen
parse_expression: success - parsed precedence expression
consume_token: position 82 consumed Semicolon
parse_program: parsed 8 statements
```

# Result
```rust
Ok(
    Unit,
)
```

# Lex
```rust
Ok(
    [
        0: Token(Fn),
        1: Token(Ident, "add"),
        2: Token(LeftParen),
        3: Token(Ident, "x"),
        4: Token(Comma),
        5: Token(Ident, "y"),
        6: Token(RightParen),
        7: Token(LeftBrace),
        8: Token(Ident, "x"),
        9: Token(Plus),
        10: Token(Ident, "y"),
        11: Token(RightBrace),
        12: Token(Fn),
        13: Token(Ident, "multiply"),
        14: Token(LeftParen),
        15: Token(Ident, "a"),
        16: Token(Comma),
        17: Token(Ident, "b"),
        18: Token(RightParen),
        19: Token(LeftBrace),
        20: Token(Ident, "a"),
        21: Token(Star),
        22: Token(Ident, "b"),
        23: Token(RightBrace),
        24: Token(Var),
        25: Token(Ident, "sum"),
        26: Token(Equal),
        27: Token(Ident, "add"),
        28: Token(LeftParen),
        29: Token(Int, "5"),
        30: Token(Comma),
        31: Token(Int, "3"),
        32: Token(RightParen),
        33: Token(Semicolon),
        34: Token(Var),
        35: Token(Ident, "product"),
        36: Token(Equal),
        37: Token(Ident, "multiply"),
        38: Token(LeftParen),
        39: Token(Int, "4"),
        40: Token(Comma),
        41: Token(Int, "6"),
        42: Token(RightParen),
        43: Token(Semicolon),
        44: Token(Ident, "assert"),
        45: Token(LeftParen),
        46: Token(Ident, "sum"),
        47: Token(EqualEqual),
        48: Token(Int, "8"),
        49: Token(RightParen),
        50: Token(Semicolon),
        51: Token(Ident, "assert"),
        52: Token(LeftParen),
        53: Token(Ident, "product"),
        54: Token(EqualEqual),
        55: Token(Int, "24"),
        56: Token(RightParen),
        57: Token(Semicolon),
        58: Token(Ident, "assert"),
        59: Token(LeftParen),
        60: Token(Ident, "add"),
        61: Token(LeftParen),
        62: Token(Int, "10"),
        63: Token(Comma),
        64: Token(Minus),
        65: Token(Int, "2"),
        66: Token(RightParen),
        67: Token(EqualEqual),
        68: Token(Int, "8"),
        69: Token(RightParen),
        70: Token(Semicolon),
        71: Token(Ident, "assert"),
        72: Token(LeftParen),
        73: Token(Ident, "multiply"),
        74: Token(LeftParen),
        75: Token(Int, "0"),
        76: Token(Comma),
        77: Token(Int, "100"),
        78: Token(RightParen),
        79: Token(EqualEqual),
        80: Token(Int, "0"),
        81: Token(RightParen),
        82: Token(Semicolon),
        83: Token(Eof)
    ],
)
```

# Parse
```rust
Ok(
    Program(
        [
            FnDecl {
                name: "add",
                params: [
                    Parameter {
                        name: "x",
                        default: None,
                        kind: Regular,
                    },
                    Parameter {
                        name: "y",
                        default: None,
                        kind: Regular,
                    },
                ],
                body: Block {
                    statements: [],
                    final_expr: Some(
                        Add(
                            Identifier(
                                "x",
                            ),
                            Identifier(
                                "y",
                            ),
                        ),
                    ),
                },
                is_pub: false,
            },
            FnDecl {
                name: "multiply",
                params: [
                    Parameter {
                        name: "a",
                        default: None,
                        kind: Regular,
                    },
                    Parameter {
                        name: "b",
                        default: None,
                        kind: Regular,
                    },
                ],
                body: Block {
                    statements: [],
                    final_expr: Some(
                        Mul(
                            Identifier(
                                "a",
                            ),
                            Identifier(
                                "b",
                            ),
                        ),
                    ),
                },
                is_pub: false,
            },
            VarDecl {
                pattern: Variable(
                    "sum",
                ),
                value: Some(
                    FunctionCall(
                        Identifier(
                            "add",
                        ),
                        [
                            Literal(
                                Int(
                                    5,
                                ),
                            ),
                            Literal(
                                Int(
                                    3,
                                ),
                            ),
                        ],
                    ),
                ),
            },
            VarDecl {
                pattern: Variable(
                    "product",
                ),
                value: Some(
                    FunctionCall(
                        Identifier(
                            "multiply",
                        ),
                        [
                            Literal(
                                Int(
                                    4,
                                ),
                            ),
                            Literal(
                                Int(
                                    6,
                                ),
                            ),
                        ],
                    ),
                ),
            },
            Expression(
                FunctionCall(
                    Identifier(
                        "assert",
                    ),
                    [
                        Eq(
                            Identifier(
                                "sum",
                            ),
                            Literal(
                                Int(
                                    8,
                                ),
                            ),
                        ),
                    ],
                ),
            ),
            Expression(
                FunctionCall(
                    Identifier(
                        "assert",
                    ),
                    [
                        Eq(
                            Identifier(
                                "product",
                            ),
                            Literal(
                                Int(
                                    24,
                                ),
                            ),
                        ),
                    ],
                ),
            ),
            Expression(
                FunctionCall(
                    Identifier(
                        "assert",
                    ),
                    [
                        Eq(
                            FunctionCall(
                                Identifier(
                                    "add",
                                ),
                                [
                                    Literal(
                                        Int(
                                            10,
                                        ),
                                    ),
                                    Neg(
                                        Literal(
                                            Int(
                                                2,
                                            ),
                                        ),
                                    ),
                                ],
                            ),
                            Literal(
                                Int(
                                    8,
                                ),
                            ),
                        ),
                    ],
                ),
            ),
            Expression(
                FunctionCall(
                    Identifier(
                        "assert",
                    ),
                    [
                        Eq(
                            FunctionCall(
                                Identifier(
                                    "multiply",
                                ),
                                [
                                    Literal(
                                        Int(
                                            0,
                                        ),
                                    ),
                                    Literal(
                                        Int(
                                            100,
                                        ),
                                    ),
                                ],
                            ),
                            Literal(
                                Int(
                                    0,
                                ),
                            ),
                        ),
                    ],
                ),
            ),
        ],
    ),
)
```

# Eval
```rust
Ok(
    RustValue(<unknown>),
)
```