handleTrailing method
return true if separateToken is found
Implementation
bool handleTrailing(ASTNode expr, {String? separateToken}) {
_handleTrailing(expr);
if (curTok.lexeme == separateToken) {
advance();
_handleTrailing(expr, afterSeparator: true);
return true;
}
return false;
}