(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 StepOut implements StepHandler
@@ -51,13 +51,11 @@ class StepOut 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);
return STOP;
}
}
private CallChain _callChain;
private JSPC _startPC;
private static final boolean ASS = true; // enable ASSERT support?
}