https://gitlab.com/nomadic-labs/mi-cho-coq
Raw File
Tip revision: cc4240cf602a5d0da4420436e8e0807f6e98806a authored by Raphaƫl Cauderlier on 31 May 2021, 22:19:06 UTC
Merge branch 'rafoo@transparent_set_remove' into 'dev'
Tip revision: cc4240c
micheline_syntax.v
Require Import String ZArith.
Require Import location.

Inductive annotation := Mk_annot : location * location * string -> annotation.

Inductive micheline : Set :=
| SEQ (_ : list loc_micheline)
| PRIM (_ : location * location * string)
       (_ : list annotation) (_ : list loc_micheline)
| STR (_ : string)
| BYTES (_ : string)
| NUMBER (_ : Z)
with
  loc_micheline : Set :=
| Mk_loc_micheline : location * location * micheline -> loc_micheline.
back to top