PageRenderTime 25ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/jEdit/tags/jedit-4-3-pre5/bsh/commands/debug.bsh

#
Unknown | 10 lines | 8 code | 2 blank | 0 comment | 0 complexity | 98810682f5947f79b60ccbaeb35ae9e8 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. Toggle on and off debug mode.
  3. Debug output is verbose and generally useful only for developers.
  4. */
  5. bsh.help.debug = "usage: debug()";
  6. debug() {
  7. this.interpreter.DEBUG = !this.interpreter.DEBUG;
  8. }