PageRenderTime 26ms CodeModel.GetById 19ms app.highlight 5ms RepoModel.GetById 0ms 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/**
2Toggle on and off debug mode... Note: debug output is verbose and gross.
3*/
4
5bsh.help.debug = "usage: debug()";
6
7debug() {
8	this.interpreter.DEBUG = !this.interpreter.DEBUG;
9}