mlox/lib
Moritz Gmeiner 6206ee4a00 moved mutable part of state inside mutable field
since only `tokens` is actually mutable we can make that field mutable,
and hence not have to deal with `state ref`s, and only have a single
mutating function, i.e. `advance`.
2024-08-27 18:01:34 +02:00
..
dune added release profile and bytecode target for main 2024-08-27 17:14:42 +02:00
environment.ml global and local variables with scope 2024-08-26 01:58:03 +02:00
error.ml moved for loop to separate Stmt and added continue 2024-08-27 17:15:35 +02:00
expr.ml added If, And, Or 2024-08-26 17:26:59 +02:00
interpreter.ml moved for loop to separate Stmt and added continue 2024-08-27 17:15:35 +02:00
lexer.ml moved for loop to separate Stmt and added continue 2024-08-27 17:15:35 +02:00
lexer.mli moved for loop to separate Stmt and added continue 2024-08-27 17:15:35 +02:00
lox.ml implemented while and for loops 2024-08-27 01:57:47 +02:00
parser.ml moved mutable part of state inside mutable field 2024-08-27 18:01:34 +02:00
stmt.ml moved for loop to separate Stmt and added continue 2024-08-27 17:15:35 +02:00
value.ml added If, And, Or 2024-08-26 17:26:59 +02:00