mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-14 19:55:45 +02:00
Updated visibility of particular parser components.
This commit is contained in:
parent
e6c2b40bdc
commit
2f84ab8078
3 changed files with 4 additions and 4 deletions
|
@ -4315,7 +4315,7 @@ public class Parser implements IParserData, IParser
|
||||||
* This class represents the state and strategy for parsing
|
* This class represents the state and strategy for parsing
|
||||||
* declarationSpecifierSequences
|
* declarationSpecifierSequences
|
||||||
*/
|
*/
|
||||||
public class Flags
|
public static class Flags
|
||||||
{
|
{
|
||||||
private boolean encounteredTypename = false;
|
private boolean encounteredTypename = false;
|
||||||
// have we encountered a typeName yet?
|
// have we encountered a typeName yet?
|
||||||
|
|
|
@ -15,7 +15,7 @@ import java.util.Collections;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
|
||||||
final class TemplateParameterManager
|
public final class TemplateParameterManager
|
||||||
{
|
{
|
||||||
protected void reset()
|
protected void reset()
|
||||||
{
|
{
|
||||||
|
|
|
@ -34,7 +34,7 @@ public class TypeId implements IDeclarator
|
||||||
/**
|
/**
|
||||||
* @param scope2
|
* @param scope2
|
||||||
*/
|
*/
|
||||||
void reset(IASTScope s) {
|
public void reset(IASTScope s) {
|
||||||
this.scope = s;
|
this.scope = s;
|
||||||
arrayModifiers = Collections.EMPTY_LIST;
|
arrayModifiers = Collections.EMPTY_LIST;
|
||||||
pointerOperators = Collections.EMPTY_LIST;
|
pointerOperators = Collections.EMPTY_LIST;
|
||||||
|
@ -43,7 +43,7 @@ public class TypeId implements IDeclarator
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
TypeId()
|
public TypeId()
|
||||||
{
|
{
|
||||||
reset( null );
|
reset( null );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue