| File lib/ocaml/pkg-lib/lua-ml/luaparser.cmi_pretty | GODI Package godi-lua-ml |
| Library lua-ml |
| luaparser.cmi_pretty | luaparser.mli | Sources |
type token = Luaparser.token = EOF | COMMA | LBRA | RBRA | LT | GT | COLON | SEMI | HAT | STAR | SLASH | LPAR | RPAR | GETS | PLUS | MINUS | DOT | LSQ | RSQ | WRONGTOKEN | NIL | IF | THEN | ELSE | ELSEIF | WHILE | DO | REPEAT | UNTIL | CASE | GLOBMATCH | OF | END | RETURN | LOCAL | FUNCTION | DOTS | ARROW | NUMBER of float | STRING of string | NAME of string | DEBUG_PRAGMA of int | AND | OR | EQ | NE | LE | GE | CONC | UNARY | NOT module type S = sig type chunk val chunks : (Lexing.lexbuf -> token) -> Lexing.lexbuf -> chunk list end module type MAKER = functor (Ast : Luaast.S) -> sig type chunk = Ast.chunk val chunks : (Lexing.lexbuf -> token) -> Lexing.lexbuf -> chunk list end module MakeStandard : functor (Ast : Luaast.S) -> sig type chunk = Ast.chunk val chunks : (Lexing.lexbuf -> token) -> Lexing.lexbuf -> chunk list end