summaryrefslogtreecommitdiff
path: root/src/LlbcAst.ml
diff options
context:
space:
mode:
Diffstat (limited to 'src/LlbcAst.ml')
-rw-r--r--src/LlbcAst.ml5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/LlbcAst.ml b/src/LlbcAst.ml
index d35cd5d8..4324586d 100644
--- a/src/LlbcAst.ml
+++ b/src/LlbcAst.ml
@@ -1,10 +1,8 @@
-open Identifiers
open Names
open Types
open Values
open Expressions
-
-module FunDeclId = IdGen ()
+open FunIdentifier
type var = {
index : VarId.id; (** Unique variable identifier *)
@@ -178,5 +176,6 @@ type fun_decl = {
name : fun_name;
signature : fun_sig;
body : fun_body option;
+ is_global : bool;
}
[@@deriving show]