* Happens when we could find a parenthesis close (so, we don't create it), but it's
* not the current, so, we have an error making the match.
*/
protected final void handleRParensNearButNotCurrent(ParseException e) throws ParseException {
addAndReport(e, "Handle parens near but not current");
Token t = getCurrentToken();
AbstractTokenManager tokenManager = getTokenManager();
final int rparenId = tokenManager.getRparenId();
while (t != null && t.kind != rparenId) {
t = t.next;