ligo/src/parser/ligodity/ParToken.mly
Christian Rinderknecht af8d1083b7 Eased the translation from Ligodity AST to Liquidity AST.
More precisely,

  * I commented out the operator "@" on lists in Ligodity (it can
    be implemented as a function, as a workaround).

  * I removed the parallel "let" construct (hence the "and" keyword).

  * I renamed the type "field_assignment" into "field_assign", in
    order to match Pascaligo AST.

  * The reading of the command-line options is now done by
    calling the function [EvalOpt.read], instead of an ugly
    side-effect when loading the binary of the module. Options
    are now found in a record of type [EvalOpt.options].

  * I added support in the Ligodity lexer for #include CPP
    directives.
2019-05-15 16:05:03 +02:00

76 lines
859 B
OCaml

%{
%}
(* Tokens (mirroring those defined in module Token) *)
%token MINUS
%token PLUS
%token SLASH
%token TIMES
%token LPAR
%token RPAR
%token LBRACKET
%token RBRACKET
%token LBRACE
%token RBRACE
%token ARROW
%token CONS
%token CAT
(*%token APPEND*)
%token DOT
%token COMMA
%token SEMI
%token COLON
%token VBAR
%token WILD
%token EQ
%token NE
%token LT
%token GT
%token LE
%token GE
%token BOOL_OR
%token BOOL_AND
%token <string> Ident
%token <string> Constr
%token <string> Str
%token <string * Z.t> Int
%token <string * Z.t> Mtz
%token <string * Z.t> Nat
(*%token And*)
%token Begin
%token Else
%token End
%token False
%token Fun
%token If
%token In
%token Let
%token List
%token Map
%token Match
%token Mod
%token Not
%token Of
%token Or
%token Set
%token Then
%token True
%token Type
%token With
%token LetEntry
%token MatchNat
%token EOF
%%