(not part of client build) added single makefile controlled switchpoint using awk generated Java source file for ASSERT and DEBUG in ifcui

git-svn-id: svn://10.0.0.236/trunk@10174 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
jband%netscape.com
1998-09-16 19:04:53 +00:00
parent 81e63bacbf
commit 1c8e695487
39 changed files with 329 additions and 339 deletions

View File

@@ -22,7 +22,7 @@
package com.netscape.jsdebugging.ifcui;
import com.netscape.jsdebugging.ifcui.palomar.util.ER;
import com.netscape.jsdebugging.ifcui.palomar.util.*;
import com.netscape.jsdebugging.api.*;
class StepOver implements StepHandler
@@ -53,7 +53,7 @@ class StepOver implements StepHandler
case CallChain.DISJOINT:
return STOP;
default:
if(ASS)ER.T(false,"coding error in StepOut (missed case)",this);
if(AS.S)ER.T(false,"coding error in StepOut (missed case)",this);
break;
}
@@ -72,6 +72,4 @@ class StepOver implements StepHandler
private CallChain _callChain;
private JSSourceLocation _startSourceLocation;
private JSPC _startPC;
private static final boolean ASS = true; // enable ASSERT support?
}