home *** CD-ROM | disk | FTP | other *** search
/ Freelog Special Freeware 25 / FreelogHS25.iso / Dessin / ArtOfIllusion2.2.1 / ArtOfIllusion.jar / bsh / commands / debug.bsh < prev    next >
Text File  |  2005-05-23  |  206b  |  11 lines

  1. /**
  2.     Toggle on and off debug mode. 
  3.     Debug output is verbose and generally useful only for developers.
  4. */
  5.  
  6. bsh.help.debug = "usage: debug()";
  7.  
  8. debug() {
  9.     this.interpreter.DEBUG = !this.interpreter.DEBUG;
  10. }
  11.