~npalix/coccinelle/upstream

« back to all changes in this revision

Viewing changes to bundles/stdcompat/stdcompat-current/interfaces/3.07/genlex.mli

  • Committer: Thierry Martinez
  • Date: 2019-08-20 13:37:04 UTC
  • Revision ID: git-v1:0214afad4a32c95349c2c5a38e37cea407c455d0
Update bundles

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
type token =
 
2
  | Kwd of string 
 
3
  | Ident of string 
 
4
  | Int of int 
 
5
  | Float of float 
 
6
  | String of string 
 
7
  | Char of char 
 
8
val make_lexer : string list -> char Stream.t -> token Stream.t