@param parent the parent namespace of this namespace. Child namespaces inherit all variables and methods of their parent and can (of course) override / shadow them.
( NameSpace parent, String name )
| 158 | override / shadow them. |
| 159 | */ |
| 160 | public NameSpace( NameSpace parent, String name ) |
| 161 | { |
| 162 | // Note: in this case parent must have a class manager. |
| 163 | this( parent, null, name ); |
| 164 | } |
| 165 | |
| 166 | public NameSpace( BshClassManager classManager, String name ) |
| 167 | { |
nothing calls this directly
no test coverage detected