hide debug parser
This commit is contained in:
parent
06ab5bb3c1
commit
7e4d3a3790
1 changed files with 1 additions and 1 deletions
2
main.ml
2
main.ml
|
@ -10,7 +10,7 @@ let () =
|
||||||
try
|
try
|
||||||
let parsed = Parser.prog Lexer.token buf in
|
let parsed = Parser.prog Lexer.token buf in
|
||||||
close_in f;
|
close_in f;
|
||||||
Test.debug_parser Stdlib.stderr parsed;
|
(* Test.debug_parser Stdlib.stderr parsed; *)
|
||||||
let ast = Semantics.analyze parsed in
|
let ast = Semantics.analyze parsed in
|
||||||
(* Test.debug_semantics Stdlib.stderr ast; *)
|
(* Test.debug_semantics Stdlib.stderr ast; *)
|
||||||
let asm = Compiler.compile ast in
|
let asm = Compiler.compile ast in
|
||||||
|
|
Reference in a new issue