Home | History | Annotate | Download | only in Chapter3

Lines Matching refs:Stream

8 let rec main_loop stream =
9 match Stream.peek stream with
14 Stream.junk stream;
15 main_loop stream
21 let e = Parser.parse_definition stream in
25 let e = Parser.parse_extern stream in
30 let e = Parser.parse_toplevel stream in
33 with Stream.Error s | Codegen.Error s ->
35 Stream.junk stream;
39 main_loop stream