Jonathan Graveline pushed to branch graveline at Stefan / Typer
Commits: b27dd3ea by Jonathan Graveline at 2018-07-31T17:28:32Z `plain-let` with grammar setup
- - - - -
2 changed files:
- btl/pervasive.typer - btl/plain-let.typer
Changes:
===================================== btl/pervasive.typer ===================================== @@ -541,4 +541,13 @@ do = let lib = load_ "btl/do.typer" in lib.do;
case_ = let lib = load_ "btl/case.typer" in lib.case_;
+%%%% plain-let + +%% Not recursive and not sequential + +define-operator "plain-let" () 3; +%% define-operator "in" 3 67; + +plain-let_in_ = let lib = load_ "btl/plain-let.typer" in lib.plain-let_in_; + %%% pervasive.typer ends here.
===================================== btl/plain-let.typer ===================================== @@ -4,24 +4,24 @@ %%%% normal `let` but not recursive nor sequential %%%%
-io-serr = lambda _ -> IO_return Sexp_error; - -serr = lambda _ -> Sexp_error; - -xserr = lambda _ -> (nil : List Sexp); - -List_nth = list.nth; -List_fold2 = list.fold2; -List_map = list.map; -List_foldl = list.foldl; -List_reverse = list.reverse; -List_tail = list.tail; +%% List_nth = list.nth; +%% List_fold2 = list.fold2; +%% List_map = list.map; +%% List_foldl = list.foldl; +%% List_reverse = list.reverse; +%% List_tail = list.tail;
impl : List Sexp -> IO Sexp; impl args = let
+ serr = lambda _ -> Sexp_error; + gen-sym : Sexp -> IO Sexp; - gen-sym arg = Sexp_dispatch arg + gen-sym arg = let + + io-serr = lambda _ -> IO_return Sexp_error; + + in Sexp_dispatch arg (lambda s ss -> if (Sexp_eq s (Sexp_symbol "_=_")) then (gensym ()) else (IO_return Sexp_error)) @@ -88,7 +88,11 @@ impl args = let in let-in (let-decls decls0) (let-in (let-decls decls1) body);
get-decls : Sexp -> List Sexp; - get-decls sexp = Sexp_dispatch sexp + get-decls sexp = let + + xserr = lambda _ -> (nil : List Sexp); + + in Sexp_dispatch sexp (lambda s ss -> if (Sexp_eq s (Sexp_symbol "_;_")) then (ss) else (nil)) @@ -105,6 +109,5 @@ in do {
plain-let_in_ = macro (lambda args -> do { r <- impl args; - r <- Sexp_debug_print r; IO_return r; });
View it on GitLab: https://gitlab.com/monnier/typer/commit/b27dd3eac7e93842bf21cb341786ac34262e...
Afficher les réponses par date