Browse Source

fix signature

Simon Krajewski 3 years ago
parent
commit
6b1f8b8218
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/macro/macroApi.ml

+ 1 - 1
src/macro/macroApi.ml

@@ -19,7 +19,7 @@ type 'value compiler_api = {
 	after_generate : (unit -> unit) -> unit;
 	after_generate : (unit -> unit) -> unit;
 	on_type_not_found : (string -> 'value) -> unit;
 	on_type_not_found : (string -> 'value) -> unit;
 	parse_string : string -> Globals.pos -> bool -> Ast.expr;
 	parse_string : string -> Globals.pos -> bool -> Ast.expr;
-	parse : 'a . ((Ast.token * Globals.pos) Stdlib__stream.t -> 'a) -> string -> 'a;
+	parse : 'a . ((Ast.token * Globals.pos) Stream.t -> 'a) -> string -> 'a;
 	type_expr : Ast.expr -> Type.texpr;
 	type_expr : Ast.expr -> Type.texpr;
 	resolve_type  : Ast.complex_type -> Globals.pos -> t;
 	resolve_type  : Ast.complex_type -> Globals.pos -> t;
 	store_typed_expr : Type.texpr -> Ast.expr;
 	store_typed_expr : Type.texpr -> Ast.expr;