home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 67 / IOPROG_67A.ISO / soft / Tools / mwsppv4.exe / DUMPSTACK.SCRIPT < prev    next >
Encoding:
Text File  |  2002-03-27  |  417 b   |  20 lines

  1. !!Script
  2. // Copyright ⌐ 2001 - Rob Campbell-Wright
  3. // Derived from JDK files by Modelworks Software
  4. // @Modified Rob Campbell-Wright - Modified to dump Perl stack.
  5.  
  6. var gOutput = getOutput("Debug");
  7.  
  8. function DoCommand()
  9. {
  10.   var pdkDebugger = getGlobal("PDKDebugger", null);
  11.   if (pdkDebugger)
  12.   {
  13.     setGlobal("PDKDumpDisplay", "off");
  14.     pdkDebugger.sendCommand("T\n", true);
  15.   }
  16. }
  17.  
  18. !!/Script
  19.  
  20.