Home | History | Annotate | Download | only in Chapter6

Lines Matching refs:Stream

9 let rec main_loop the_fpm the_execution_engine stream =
10 match Stream.peek stream with
15 Stream.junk stream;
16 main_loop the_fpm the_execution_engine stream
22 let e = Parser.parse_definition stream in
26 let e = Parser.parse_extern stream in
31 let e = Parser.parse_toplevel stream in
43 with Stream.Error s | Codegen.Error s ->
45 Stream.junk stream;
49 main_loop the_fpm the_execution_engine stream