From 6283b0778b4e81acdd3d6009ddfe197cb6b9eb69 Mon Sep 17 00:00:00 2001 From: Tim Vaughan Date: Sat, 29 Oct 2016 15:09:05 +1300 Subject: [PATCH] Added support for variadic compound procedures. --- scheme.4th | 32 ++++++++++++++++++++++++++++---- 1 file changed, 28 insertions(+), 4 deletions(-) diff --git a/scheme.4th b/scheme.4th index 136c8a8..26a7a85 100644 --- a/scheme.4th +++ b/scheme.4th @@ -1084,16 +1084,40 @@ parse-idx-stack parse-idx-sp ! : procedure-env ( proc -- body ) drop pair-type cdr cdr car ; -: apply ( proc args ) +( Ensure terminating symbol arg name is handled + specially to allow for variadic procedures. ) +: flatten-proc-args ( argvals argnames -- argvals' argnames' ) + nil? if exit then + + symbol-type istype? if + nil cons + 2swap + nil cons + 2swap + exit + then + + 2over cdr 2over cdr + recurse ( argvals argnames argvals'' argnames'' ) + 2rot car 2swap cons ( argvals argvals'' argnames' ) + 2rot car 2rot cons ( argnames' argvals' ) + 2swap +; + +: apply ( proc argvals ) 2swap dup case primitive-proc-type of drop execute endof compound-proc-type of - 2dup procedure-body ( args proc body ) - -2rot 2dup procedure-params ( body args proc params ) - -2rot procedure-env ( body params args procenv ) + 2dup procedure-body ( argvals proc body ) + -2rot 2dup procedure-params ( body argvals proc argnames ) + -2rot procedure-env ( body argnames argvals procenv ) + + -2rot 2swap + flatten-proc-args + 2swap 2rot extend-env ( body env ) -- 2.20.1