summaryrefslogtreecommitdiff
path: root/src/parse_ast.ml
diff options
context:
space:
mode:
authorJon French2018-12-27 12:19:44 +0000
committerJon French2018-12-27 12:19:44 +0000
commitfbcc27ca1bd3801beac0338e657b933d6a9c8f95 (patch)
tree36c9a6e0978d4b3e101273c254b6b67702c58159 /src/parse_ast.ml
parent13169ab85604d926e5dae44202622ec445697793 (diff)
refactor val-spec AST to store externs as an assoc-list rather than a function (preparing for marshalling)
Diffstat (limited to 'src/parse_ast.ml')
-rw-r--r--src/parse_ast.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse_ast.ml b/src/parse_ast.ml
index 3317c196..db8f9939 100644
--- a/src/parse_ast.ml
+++ b/src/parse_ast.ml
@@ -488,7 +488,7 @@ type_def_aux = (* Type definition body *)
type
val_spec_aux = (* Value type specification *)
- VS_val_spec of typschm * id * (string -> string option) * bool
+ VS_val_spec of typschm * id * (string * string) list * bool
type