
I removed AST.mli from CameLIGO (for maintenance's sake). I removed useless functions. I renamed unlexer.ml to Unlexer.ml I added a cleaning rule for my Makefile in Makefile.cfg
28 lines
790 B
OCaml
28 lines
790 B
OCaml
(* This module exports checks on scoping, called from the parser. *)
|
|
|
|
type t =
|
|
Reserved_name of AST.variable
|
|
| Duplicate_parameter of AST.variable
|
|
| Duplicate_variant of AST.variable
|
|
| Non_linear_pattern of AST.variable
|
|
| Duplicate_field of AST.variable
|
|
|
|
type error = t
|
|
|
|
exception Error of t
|
|
|
|
module Ord :
|
|
sig
|
|
type t = AST.variable
|
|
val compare : t -> t -> int
|
|
end
|
|
|
|
module VarSet : Set.S with type elt = Ord.t
|
|
|
|
val check_reserved_name : AST.variable -> AST.variable
|
|
val check_reserved_names : VarSet.t -> VarSet.t
|
|
val check_pattern : AST.pattern -> unit
|
|
val check_variants : AST.variant Region.reg list -> unit
|
|
val check_parameters : AST.param_decl list -> unit
|
|
val check_fields : AST.field_decl Region.reg list -> unit
|