-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove the Typed module #1258
Merged
Merged
Remove the Typed module #1258
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -187,7 +187,6 @@ subgraph cluster_lib { | |
"Expr"; | ||
"Xliteral"; | ||
"Ty"; | ||
"Typed"; | ||
"Commands"; | ||
"Errors"; | ||
"Fpa_rounding"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -761,55 +761,139 @@ let handle_patt_var id (DE.{ term_descr; _ } as term) = | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"Expected a variable in a case match but got %a" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
DE.Term.print term | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(** Helper function to translate patterns in a pattern-matching from a Dolmen | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Term.t to an Alt-Ergo Expr.t *) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let mk_pattern DE.{ term_descr; _ } = | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
match term_descr with | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| App ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{ term_descr = | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Cst ({ builtin = B.Constructor { adt; case; }; _ } as cst); _ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, _, pargs | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) -> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let vnames = | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
begin match DT.definition adt with | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Some (Adt { cases; _ }) -> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let { DE.dstrs; _ } = cases.(case) in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array.fold_right ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
fun v acc -> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
match v with | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Some dstr -> dstr :: acc | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| _ -> assert false | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) dstrs [] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| _ -> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Fmt.failwith | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"Expected a constructor for an algebraic data type but got\ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
something else for the definition of: %a" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
DE.Ty.Const.print adt | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
module Match = struct | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type pat = | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Var of Var.t | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Constr of DE.term_cst * (Var.t * DE.term_cst * Ty.t) list | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(** Helper function to translate patterns in a pattern-matching from a Dolmen | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Term.t to an Alt-Ergo Expr.t *) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let mk_pat DE.{ term_descr; _ } = | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
match term_descr with | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| App ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{ term_descr = | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Cst ({ builtin = B.Constructor { adt; case; }; _ } as cst); _ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, _, pargs | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) -> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let vnames = | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
begin match DT.definition adt with | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Some (Adt { cases; _ }) -> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let { DE.dstrs; _ } = cases.(case) in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array.fold_right ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
fun v acc -> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
match v with | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Some dstr -> dstr :: acc | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| _ -> assert false | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) dstrs [] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| _ -> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Fmt.failwith | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"Expected a constructor for an algebraic data type but got\ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
something else for the definition of: %a" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
DE.Ty.Const.print adt | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let rev_args = | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
List.fold_left2 ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
fun acc rn arg -> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let v, n, ty = handle_patt_var rn arg in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(v, n, ty) :: acc | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) [] vnames pargs | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Constr (cst, List.rev rev_args) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Cst ({ builtin = B.Constructor _; _ } as cst) -> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Constr (cst, []) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Var ({ builtin = B.Base; path; _ } as t_v) -> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(* Should the type be passed as an argument | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
instead of re-evaluating it here? *) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let v = Var.of_string (get_basename path) in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let sy = Sy.var v in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Cache.store_sy t_v sy; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(* Adding the matched variable to the store *) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Var v | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| _ -> assert false | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let rec compile mk_destr mk_tester e cases accu = | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
match cases with | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [] -> accu | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| (Var x, p) :: _ -> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
E.apply_subst (Var.Map.singleton x e, Ty.esubst) p | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| (Constr (name, args), p) :: l -> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let _then = | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
List.fold_left | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(fun acc (var, destr, ty) -> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let destr = mk_destr destr in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let d = E.mk_term destr [e] ty in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
E.mk_let var d acc | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) p args | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
match l with | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[] -> _then | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| _ -> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let _else = compile mk_destr mk_tester e l accu in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let cond = mk_tester name e in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
E.mk_ite cond _then _else | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(* (* TO BE REMOVED *) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let debug_compile_match e cases res = | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if Options.get_debug_adt () then begin | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Printer.print_dbg ~flushed:false ~module_name:"Expr" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"compilation of: match %a with@ " print e; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let p_list_vars fmt l = | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
match l with | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[] -> () | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [e,_,_] -> Var.print fmt e | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| (e,_,_) :: l -> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Format.fprintf fmt "(%a" Var.print e; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
List.iter (fun (e,_,_) -> Format.fprintf fmt ", %a" Var.print e) l; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Format.fprintf fmt ")" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
List.iter | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(fun (p, v) -> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
match p with | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Typed.Constr {name; args} -> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Printer.print_dbg ~flushed:false ~header:false | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"| %a %a -> %a@ " | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
DE.Term.Const.print name | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
p_list_vars args | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
print v; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Typed.Var x -> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Printer.print_dbg ~flushed:false ~header:false | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"| %a -> %a@ " Var.print x print v; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
)cases; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Printer.print_dbg ~header:false | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"end@ result is: %a" print res; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
end *) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let make e cases = | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let ty = E.type_info e in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let mk_destr = | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
match ty with | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Ty.Tadt _ -> (fun hs -> Sy.destruct hs) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Ty.Trecord _ -> (fun hs -> Sy.Op (Sy.Access hs)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| _ -> assert false | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let rev_args = | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
List.fold_left2 ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
fun acc rn arg -> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let v, n, ty = handle_patt_var rn arg in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(v, n, ty) :: acc | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) [] vnames pargs | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let mk_tester = | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
match ty with | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Ty.Tadt _ -> E.mk_tester | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Ty.Trecord _ -> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(* no need to test for records *) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(fun _e _name -> assert false) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| _ -> assert false | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let args = List.rev rev_args in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Typed.Constr {name = cst; args} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let res = compile mk_destr mk_tester e cases e in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(* debug_compile_match e cases res; *) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
res | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[@ocaml.ppwarning "TODO: introduce a let if e is a big expr"] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[@ocaml.ppwarning "TODO: add other elim schemes"] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[@ocaml.ppwarning "TODO: add a match construct in expr"] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Cst ({ builtin = B.Constructor _; _ } as cst) -> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Typed.Constr {name = cst; args = []} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Var ({ builtin = B.Base; path; _ } as t_v) -> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(* Should the type be passed as an argument | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
instead of re-evaluating it here? *) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let v = Var.of_string (get_basename path) in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let sy = Sy.var v in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Cache.store_sy t_v sy; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(* Adding the matched variable to the store *) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Typed.Var v | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| _ -> assert false | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let arith_ty = function | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| `Int -> Ty.Tint | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -1367,12 +1451,12 @@ let rec mk_expr | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let pats = | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
List.rev_map ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
fun (p, t) -> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let patt = mk_pattern p in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let patt = Match.mk_pat p in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let e = aux_mk_expr t in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
patt, e | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) (List.rev pats) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
E.mk_match e pats | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Match.make e pats | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Binder ((Let_par ls | Let_seq ls) as let_binder, body) -> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let lsbis = | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: if using local modules for actual implementation work there is an abstraction boundary that should be ideally documented and at least typed.