1. module type ParserLoopApi = sig
  2. val input_needed : 'a context -> 'a recover_checkpoint -> 'a I.checkpoint -> 'a
  3. end
  4. module ParserLoop (M : ParserLoopApi) = struct
  5. let loop : 'a . 'a context -> 'a recover_checkpoint -> 'a I.checkpoint -> 'a =
  6. fun ctx recover checkpoint -> match checkpoint with
  7. | I.InputNeeded _ -> M.input_needed ctx recover checkpoint
  8. | _ -> assert false
  9. end
  10. module CompilationParserLoop = ParserLoop(struct
  11. let input_needed ctx recover checkpoint =
  12. (* Is it possible to access loop here? *)
  13. loop ctx recover checkpoint;
  14. end)