/jEdit/tags/jedit-4-5-pre1/org/gjt/sp/jedit/bsh/commands/clear.bsh

# · Unknown · 10 lines · 10 code · 0 blank · 0 comment · 0 complexity · eb17c73bd14fa10226d6f764df0d85ca MD5 · raw file

  1. /**
  2. Clear all variables, methods, and imports from this namespace.
  3. If this namespace is the root, it will be reset to the default
  4. imports.
  5. See NameSpace.clear();
  6. @see NameSpace.clear();
  7. */
  8. clear() {
  9. this.caller.namespace.clear();
  10. }