# New Ticket Created by Chip Salzenberg # Please include the string: [perl #39784] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=39784 >
Parrot's default namespace implementation should be 100% untyped -- basically just a hash with some additional methods. Making this happen requires solving the problem of Parrot's currently requiring classes and class method namespaces to have the same name. e.g. the current situation is: find_global 'MyClass' # 'MyClass' is class object find_global ['MyClass'], 'mymethod' # 'MyClass' is namespace object Depending on a typed namespace in the core of Parrot is Not OK. -- Chip Salzenberg <[EMAIL PROTECTED]>