/jEdit/tags/jedit-4-2-pre4/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
6bsh.help.debug = "usage: debug()";
7
8debug() {
9 this.interpreter.DEBUG = !this.interpreter.DEBUG;
10}