Christopher League pushed to branch master at Stefan / Typer
Commits: ed90728e by Christopher League at 2017-06-19T09:44:09-04:00 src/lparse: allow btl_folder to be read from environment
We can now use the environment variable `TYPER_BUILTINS` to specify the folder in which to find `builtins.typer` and `pervasive.typer`. Having this setting as a ref cell wasn't really helping, because it's used at the top level to bind `default_ectx`; once you hit `parse_args()` in `main`, it's too late to change it. So specifying as a command-line argument will require more changes.
- - - - -
1 changed file:
- src/lparse.ml
Changes:
===================================== src/lparse.ml ===================================== --- a/src/lparse.ml +++ b/src/lparse.ml @@ -61,7 +61,9 @@ let make_var name index loc = let dloc = dummy_location
let _parsing_internals = ref false -let btl_folder = ref "./btl/" +let btl_folder = + try Sys.getenv "TYPER_BUILTINS" + with Not_found -> "./btl"
let warning = msg_warning "LPARSE" let error = msg_error "LPARSE" @@ -1327,18 +1329,18 @@ let default_ectx (* read base file *) let lctx = dynamic_bind _parsing_internals true (fun () - -> read_file (!btl_folder ^ "builtins.typer") + -> read_file (btl_folder ^ "/builtins.typer") lctx) in let _ = register_predefs lctx in
(* Does not work, not sure why let files = ["list.typer"; "quote.typer"; "type.typer"] in let lctx = List.fold_left (fun lctx file_name -> - read_file (!btl_folder ^ file_name) lctx) lctx files in *) + read_file (btl_folder ^ "/" ^ file_name) lctx) lctx files in *)
builtin_size := get_size lctx; - let lctx = read_file (!btl_folder ^ "pervasive.typer") lctx in + let lctx = read_file (btl_folder ^ "/pervasive.typer") lctx in lctx
let default_rctx =
View it on GitLab: https://gitlab.com/monnier/typer/commit/ed90728e93deaa3f71065c7ee21b71c4176f...
--- View it on GitLab: https://gitlab.com/monnier/typer/commit/ed90728e93deaa3f71065c7ee21b71c4176f... You're receiving this email because of your account on gitlab.com.
Afficher les réponses par date