Next in ensemble call runs into unknown
Next Scripting Framework (NSF)
Brought to you by:
foxcruiser,
gneumann
package req nx::test
nx::Class create ::A
set host ::A
# set host ::nx::Object
nx::test case tmp {
$::host public method "i o a" {} {return a}
$::host public alias "i o b" ::nsf::methods::class::info::heritage
}
nx::Class create B -superclasses A {
:public method "i s" args {
next; # IRGH: Should not trigger unknown!
return [current class]
}
:create b
}
? {b i s} "::B"; # IRGH: "unable to dispatch sub-method "s" of ::b i; valid are: i o a, i o b, i s"