mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
Cosmetics.
This commit is contained in:
parent
ff49775235
commit
aa9dd95996
2 changed files with 5 additions and 6 deletions
|
@ -13,6 +13,5 @@ package org.eclipse.cdt.internal.core.dom.parser;
|
|||
import org.eclipse.cdt.core.dom.ast.IASTNode;
|
||||
|
||||
public interface IASTAmbiguityParent {
|
||||
|
||||
public void replace(IASTNode child, IASTNode other);
|
||||
}
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
* Contributors:
|
||||
* Markus Schorn - initial API and implementation
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.cdt.internal.core.dom.parser.cpp;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
@ -40,14 +39,15 @@ import org.eclipse.cdt.internal.core.dom.parser.cpp.NameOrTemplateIDVariants.Var
|
|||
/**
|
||||
* Models expression variants for the ambiguity of a template id.
|
||||
*/
|
||||
public class CPPASTTemplateIDAmbiguity extends ASTAmbiguousNode implements IASTAmbiguousExpression,
|
||||
ICPPASTExpression {
|
||||
public class CPPASTTemplateIDAmbiguity extends ASTAmbiguousNode
|
||||
implements IASTAmbiguousExpression, ICPPASTExpression {
|
||||
private final BinaryOperator fEndOperator;
|
||||
private final BranchPoint fVariants;
|
||||
private IASTNode[] fNodes;
|
||||
private final AbstractGNUSourceCodeParser fParser;
|
||||
|
||||
public CPPASTTemplateIDAmbiguity(AbstractGNUSourceCodeParser parser, BinaryOperator endOperator, BranchPoint variants) {
|
||||
public CPPASTTemplateIDAmbiguity(AbstractGNUSourceCodeParser parser, BinaryOperator endOperator,
|
||||
BranchPoint variants) {
|
||||
fParser= parser;
|
||||
fEndOperator= endOperator;
|
||||
fVariants= variants;
|
||||
|
|
Loading…
Add table
Reference in a new issue