PageRenderTime 42ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/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
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
  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. }