Bulletproofing -- code cleanup.

This commit is contained in:
dchandler 2003-10-21 00:31:10 +00:00
parent 188b9c322e
commit a47af2c165
2 changed files with 6 additions and 3 deletions

View file

@ -304,7 +304,7 @@ class TParseTree {
if (warningLevel == "All")
return "Warning: The last stack does not have a vowel in the ACIP {" + ((null != originalACIP) ? originalACIP : recoverACIP()) + "}; this may indicate a typo, because Sanskrit, which this is (because it's not legal Tibetan), should have a vowel after each stack.";
} else {
return "Warning: There is a stack, before the last stack, without a vowel in the ACIP {" + ((null != originalACIP) ? originalACIP : recoverACIP()) + "}; this may indicate a typo, because Sanskrit, which this is (because it's not legal Tibetan), should have a vowel after each stack.";
throw new Error("Can't happen now that we stack greedily");
}
}
if ("All" == warningLevel) {
@ -317,7 +317,7 @@ class TParseTree {
if (warningLevel == "All")
return "Warning: The last stack does not have a vowel in the ACIP {" + ((null != originalACIP) ? originalACIP : recoverACIP()) + "}; this may indicate a typo, because Sanskrit, which this is (because it's not legal Tibetan), should have a vowel after each stack.";
} else {
return "Warning: There is a stack, before the last stack, without a vowel in the ACIP {" + ((null != originalACIP) ? originalACIP : recoverACIP()) + "}; this may indicate a typo, because Sanskrit, which this is (because it's not legal Tibetan), should have a vowel after each stack.";
throw new Error("Can't happen now that we stack greedily");
}
}
}

View file

@ -203,8 +203,11 @@ class TStackList {
if (null == lastPair.getRight()
&& !((l = lastPair.getLeft()) != null && l.length() == 1
&& l.charAt(0) >= '0' && l.charAt(0) <= '9')) {
if (null != isLastStack)
if (null != isLastStack) {
isLastStack[0] = (i + 1 == size());
if (!isLastStack[0])
throw new Error("But we now stack greedily!");
}
return true;
}
}