PageRenderTime 47ms CodeModel.GetById 23ms RepoModel.GetById 1ms app.codeStats 0ms

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

#
Unknown | 9 lines | 7 code | 2 blank | 0 comment | 0 complexity | 14f3328754741e71a8ef3908bc734338 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... Note: debug output is verbose and gross.
  3. */
  4. bsh.help.debug = "usage: debug()";
  5. debug() {
  6. this.interpreter.DEBUG = !this.interpreter.DEBUG;
  7. }