From 9e555a31210ba9b943e20fe3197b8c250a32ac7a Mon Sep 17 00:00:00 2001 From: Ulf Norell Date: Tue, 14 May 2019 09:42:27 +0200 Subject: [PATCH] Fix type definition --- src/aeso_syntax.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aeso_syntax.erl b/src/aeso_syntax.erl index b3cc3ce..ddb95e5 100644 --- a/src/aeso_syntax.erl +++ b/src/aeso_syntax.erl @@ -25,7 +25,7 @@ -type ann_origin() :: system | user. -type ann_format() :: '?:' | hex | infix | prefix | elif. --type ann() :: [{line, ann_line()} | {col, ann_col()} | {format, ann_format()} | {origin, ann_origin()}]. +-type ann() :: [{line, ann_line()} | {col, ann_col()} | {format, ann_format()} | {origin, ann_origin()} | stateful | private]. -type name() :: string(). -type id() :: {id, ann(), name()}.