/jEdit/tags/beanshell-2-0b1/bsh/commands/unset.bsh

# · Unknown · 16 lines · 13 code · 3 blank · 0 comment · 0 complexity · 64de5b83bf1a637a9b861bdb16b71238 MD5 · raw file

  1. /**
  2. "Undefine" the variable specifed by 'name' (So that it tests == void).
  3. <p>
  4. <em>Note: there will be a better way to do this in the future. This is
  5. currently equivalent to doing namespace.setVariable(name, null);</em>
  6. */
  7. bsh.help.unset = "usage: unset( name )";
  8. void unset( String name )
  9. {
  10. if ( arg == null ) // ???
  11. return;
  12. this.caller.namespace.unsetVariable( name );
  13. }