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");
}
}
}