public final void crashIfBadMLCs(StringOrBuffer sob_code, String s_mlcStart, String s_mlcEnd) {
crashIfBadMLCStartEnd("stringMLComments", s_mlcStart, s_mlcEnd);
int iIdx = 0;
while(iIdx < sob_code.length()) {
MLCStartEnd mlcse = new MLCStartEnd(sob_code, s_mlcStart, s_mlcEnd, iIdx);
if(mlcse.iStart == -1 && mlcse.iEnd == -1) {
//There are no more ml comments. Previous ml-
//comments were already validated.
return;