[cpp] Don't skip the continuation character in the grammar anymore
Since we now have a CppCharStream, we can remove the changes introduced for #431
This commit is contained in:
@ -149,10 +149,6 @@ SKIP :
|
||||
"/*" : IN_COMMENT
|
||||
|
|
||||
"#" : PREPROCESSOR_OUTPUT
|
||||
|
|
||||
"\\\r\n"
|
||||
|
|
||||
"\\\n"
|
||||
}
|
||||
|
||||
<IN_LINE_COMMENT> SKIP:
|
||||
|
@ -49,7 +49,6 @@ public class CPPTokenizerContinuationTest {
|
||||
public void testContinuationIntraToken() throws Exception {
|
||||
Tokens tokens = parse(load("cpp_continuation_intra_token.cpp"));
|
||||
assertEquals(7, tokens.size());
|
||||
printTokens(tokens);
|
||||
}
|
||||
|
||||
@Test
|
||||
|
Reference in New Issue
Block a user