Index: tests/parameters.test =================================================================== diff -u -r57cbc3cee2f970fd9a166109529a8685cc07658e -rc6057c18970d5bc19fe0f1f760ef0d29898ecfdd --- tests/parameters.test (.../parameters.test) (revision 57cbc3cee2f970fd9a166109529a8685cc07658e) +++ tests/parameters.test (.../parameters.test) (revision c6057c18970d5bc19fe0f1f760ef0d29898ecfdd) @@ -70,7 +70,7 @@ ? {c1 info has type C1} {expected class but got "C1" for parameter "class"} ? {c1 ::nsf::methods::object::info::hastype C} 1 - ? {::nsf::dispatch c1 ::nsf::methods::object::info::hastype C} 1 + ? {::nsf::object::dispatch c1 ::nsf::methods::object::info::hastype C} 1 ? {::nsf::is object o1} 1 ? {::nsf::is object o100} 0 @@ -1302,9 +1302,9 @@ Test case checktype { nx::Object create o { - :public method f01 {} {::nsf::dispatch o ::nsf::methods::object::info::hastype ::nx::Object} - :public method f02 {} {::nsf::dispatch o ::nsf::methods::object::info::hastype nx::Object} - :public method f03 {} {::nsf::dispatch o ::nsf::methods::object::info::hastype Object} + :public method f01 {} {::nsf::object::dispatch o ::nsf::methods::object::info::hastype ::nx::Object} + :public method f02 {} {::nsf::object::dispatch o ::nsf::methods::object::info::hastype nx::Object} + :public method f03 {} {::nsf::object::dispatch o ::nsf::methods::object::info::hastype Object} :public method f11 {} {::nsf::is object,type=::nx::Object o} :public method f12 {} {::nsf::is object,type=nx::Object o} @@ -1326,18 +1326,18 @@ namespace eval foo { nx::Class create C { :create c1 - :public method f21 {} {::nsf::dispatch c1 ::nsf::methods::object::info::hastype Object} - :public method f22 {} {::nsf::dispatch c1 ::nsf::methods::object::info::hastype C} + :public method f21 {} {::nsf::object::dispatch c1 ::nsf::methods::object::info::hastype Object} + :public method f22 {} {::nsf::object::dispatch c1 ::nsf::methods::object::info::hastype C} :public method f31 {} {::nsf::is object,type=Object c1} :public method f32 {} {::nsf::is object,type=C c1} } nx::Object create o { - :public method f01 {} {::nsf::dispatch c1 ::nsf::methods::object::info::hastype ::nx::Object} - :public method f02 {} {::nsf::dispatch c1 ::nsf::methods::object::info::hastype nx::Object} - :public method f03 {} {::nsf::dispatch c1 ::nsf::methods::object::info::hastype Object} - :public method f04 {} {::nsf::dispatch c1 ::nsf::methods::object::info::hastype foo::C} - :public method f05 {} {::nsf::dispatch c1 ::nsf::methods::object::info::hastype C} + :public method f01 {} {::nsf::object::dispatch c1 ::nsf::methods::object::info::hastype ::nx::Object} + :public method f02 {} {::nsf::object::dispatch c1 ::nsf::methods::object::info::hastype nx::Object} + :public method f03 {} {::nsf::object::dispatch c1 ::nsf::methods::object::info::hastype Object} + :public method f04 {} {::nsf::object::dispatch c1 ::nsf::methods::object::info::hastype foo::C} + :public method f05 {} {::nsf::object::dispatch c1 ::nsf::methods::object::info::hastype C} :public method f11 {} {::nsf::is object,type=::nx::Object c1} :public method f12 {} {::nsf::is object,type=nx::Object c1}