summaryrefslogtreecommitdiff
path: root/parser.sig
blob: 72def5f26b83ebba6503847d6cb5dfed4ff14186 (plain)
1
2
3
4
5
6
7
8
9
10
11
signature PARSER = sig

  structure P: PPC

  type ctx
  type def

  val createCtx: string -> string list -> ctx
  val parseDef: ctx -> (def * ctx) option
  val printDef: def -> unit
end