testLiteral(_CharLiteral("'c'"), "'c'");
}
private void testLiteral(Literal expected, String input) throws Exception {
final ParserImpl p = parserImpl(input);
final Literal lit = p.literal();
assertEquals(Util.<SyntaxError>list().toString(), p.errors().toString());
assertEquals(expected, lit);
}