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:
parent
bee373939f
commit
59694ccf88
1 changed files with 4 additions and 2 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue