typed: fix deployment
parent
b762238f63
commit
fb79aec97e
|
@ -112,4 +112,6 @@ os macosx? [
|
|||
{ "a" "b" "c" } append
|
||||
ascii [ lines ] with-process-reader
|
||||
rest
|
||||
] unit-test
|
||||
] unit-test
|
||||
|
||||
[ ] [ "tools.deploy.test.16" shake-and-bake run-temp-image ] unit-test
|
|
@ -0,0 +1,8 @@
|
|||
IN: tools.deploy.test.16
|
||||
USING: typed sequences math strings io ;
|
||||
|
||||
TYPED: typed-test ( x: integer y: string -- ) <repetition> concat print ;
|
||||
|
||||
: typed-main ( -- ) 3 "hi" typed-test ;
|
||||
|
||||
MAIN: typed-main
|
|
@ -0,0 +1,14 @@
|
|||
USING: tools.deploy.config ;
|
||||
H{
|
||||
{ deploy-name "tools.deploy.test.16" }
|
||||
{ deploy-ui? f }
|
||||
{ deploy-c-types? f }
|
||||
{ deploy-unicode? f }
|
||||
{ deploy-io 2 }
|
||||
{ deploy-reflection 1 }
|
||||
{ "stop-after-last-window?" t }
|
||||
{ deploy-word-props? f }
|
||||
{ deploy-math? f }
|
||||
{ deploy-threads? f }
|
||||
{ deploy-word-defs? f }
|
||||
}
|
|
@ -2,7 +2,7 @@
|
|||
USING: accessors arrays classes classes.tuple combinators
|
||||
combinators.short-circuit definitions effects fry hints
|
||||
math kernel kernel.private namespaces parser quotations
|
||||
see.private sequences slots words locals locals.definitions
|
||||
see see.private sequences slots words locals locals.definitions
|
||||
locals.parser macros stack-checker.state ;
|
||||
IN: typed
|
||||
|
||||
|
|
Loading…
Reference in New Issue