Matt Diephouse wrote: >> Namespace opcodes now accept arrays to select multidimensional >> namespaces again. The namespace object methods for setting/retrieving >> namespaces and globals are eliminated as redundant. > > How does this handle the case where namespaces have a sigil or some > other sort of name mangling? Aren't the get/set namespace methods an > essential part of the typed interface?
The get/set_namespace methods were part of the untyped interface (so any name mangling had to be handled manually). The typed interface uses find_namespace and add_namespace. Allison