1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 09:25:31 +02:00

Removed the ScannerData object and moved it's fields right into the Scanner.

Made all users of getChar in the scanner call getChar(boolean) directly
to remove the extra call to getChar(void). Merged readFromStream in as well.
Finally, I have remove the trigraph code to remove the checks for every character.
A bug will be raised to reimplement this functionality elsewhere.
This commit is contained in:
Doug Schaefer 2004-06-01 15:16:55 +00:00
parent bee373939f
commit 59694ccf88

View file

@ -1657,7 +1657,8 @@ public class QuickParseASTTests extends BaseASTTest
parse("double x = 0x1.fp1;").getDeclarations().next(); //$NON-NLS-1$
}
public void testBug39552A() throws Exception
// digraphs/trigraphs have been temporarily remove
public void testBug39552A(int x) throws Exception
{
Writer code = new StringWriter();
@ -1682,7 +1683,8 @@ public class QuickParseASTTests extends BaseASTTest
parse(code.toString());
}
public void testBug39552B() throws Exception
// digraphs/trigraphs have been temporarily remove
public void testBug39552B(int x) throws Exception
{
Writer code = new StringWriter();