]> gitweb.factorcode.org Git - factor.git/commitdiff
alien.complex: fix tests
authorSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Tue, 11 Aug 2009 19:07:33 +0000 (14:07 -0500)
committerSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Tue, 11 Aug 2009 19:07:33 +0000 (14:07 -0500)
basis/alien/complex/complex-tests.factor
basis/compiler/tree/builder/builder-docs.factor

index e84bb322e29020a99742ca13539aa20f66878a9f..2844e505b5ae181ccb588fc23594095654e93a79 100644 (file)
@@ -17,6 +17,6 @@ C-STRUCT: complex-holder
 
 [ C{ 1.0 2.0 } ] [ "h" get complex-holder-z ] unit-test
 
-[ complex ] [ "complex-float" c-type-boxed-class ] unit-test
+[ number ] [ "complex-float" c-type-boxed-class ] unit-test
 
-[ complex ] [ "complex-double" c-type-boxed-class ] unit-test
\ No newline at end of file
+[ number ] [ "complex-double" c-type-boxed-class ] unit-test
\ No newline at end of file
index ab4a9aa3f955f1d090b2257c56b4000a328c822b..83093470c9e0168731429b3f789938718186dc5a 100644 (file)
@@ -9,5 +9,5 @@ HELP: build-tree
 { $errors "Throws an " { $link inference-error } " if stack effect inference fails." } ;
 
 HELP: build-sub-tree
-{ $values { "in-d" "inputs" } { "out-d" "outputs" } { "word/quot" { $or word quotation } } { "nodes/f" { $maybe "a sequence of nodes" } } }
+{ $values { "in-d" "a sequence of values" } { "out-d" "a sequence of values" } { "word/quot" { $or word quotation } } { "nodes/f" { $maybe "a sequence of nodes" } } }
 { $description "Attempts to construct tree SSA IR from a quotation, starting with an initial data stack of values from the call site. Outputs " { $link f } " if stack effect inference fails." } ;