stack-checker.alien: callback and assembly quotations can be callables

db4
Slava Pestov 2010-05-19 00:31:46 -04:00
parent a8098e3182
commit 7c85fdc1e5
1 changed files with 2 additions and 2 deletions

View File

@ -17,9 +17,9 @@ TUPLE: alien-invoke-params < alien-node-params library { function string } ;
TUPLE: alien-indirect-params < alien-node-params ;
TUPLE: alien-assembly-params < alien-node-params { quot quotation } ;
TUPLE: alien-assembly-params < alien-node-params { quot callable } ;
TUPLE: alien-callback-params < alien-node-params { quot quotation } xt ;
TUPLE: alien-callback-params < alien-node-params { quot callable } xt ;
: param-prep-quot ( params -- quot )
parameters>> [ c-type c-type-unboxer-quot ] map spread>quot ;