/jEdit/tags/jedit-4-0-pre3/bsh/commands/setNameSpace.bsh
# · Unknown · 14 lines · 11 code · 3 blank · 0 comment · 0 complexity · cb30beb869df8d54acb55246d8ca450c MD5 · raw file
- bsh.help.setNameSpace =
- "usage: setNameSpace( bsh.NameSpace )";
- /**
- Set the namespace of the current scope.
- Use this only if you really know what you are doing.
- */
- setNameSpace( ns )
- {
- // Set the namespace at depth one (our caller) to the specified namespace.
- this.callstack.set( 1, ns );
- }