Index: tests/parameters.test =================================================================== diff -u -rce55b9f6e80b8444dd248b1e6e36217716331ee9 -r8046b1da6bc0689f73d4dbdc3f8d1e03fd23acaf --- tests/parameters.test (.../parameters.test) (revision ce55b9f6e80b8444dd248b1e6e36217716331ee9) +++ tests/parameters.test (.../parameters.test) (revision 8046b1da6bc0689f73d4dbdc3f8d1e03fd23acaf) @@ -76,7 +76,7 @@ ? {c1 info has type C1} {expected class but got "C1" for parameter "class"} ? {c1 ::nsf::methods::object::info::hastype C} 1 - ? {::nsf::object::dispatch c1 ::nsf::methods::object::info::hastype C} 1 + ? {::nsf::dispatch c1 ::nsf::methods::object::info::hastype C} 1 ? {::nsf::is object o1} 1 ? {::nsf::is object o100} 0 @@ -1342,9 +1342,9 @@ Test case checktype { nx::Object create o { - :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 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 f11 {} {::nsf::is object,type=::nx::Object o} :public method f12 {} {::nsf::is object,type=nx::Object o} @@ -1366,18 +1366,18 @@ namespace eval foo { nx::Class create C { :create c1 - :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 f21 {} {::nsf::dispatch c1 ::nsf::methods::object::info::hastype Object} + :public method f22 {} {::nsf::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::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 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 f11 {} {::nsf::is object,type=::nx::Object c1} :public method f12 {} {::nsf::is object,type=nx::Object c1}