diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/CPPASTAmbiguousDeclaration.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/CPPASTAmbiguousDeclaration.java new file mode 100644 index 00000000000..d700038ad84 --- /dev/null +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/CPPASTAmbiguousDeclaration.java @@ -0,0 +1,36 @@ +/********************************************************************** + * Copyright (c) 2004 IBM Corporation and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Common Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/cpl-v10.html + * + * Contributors: + * IBM - Initial API and implementation + **********************************************************************/ +package org.eclipse.cdt.internal.core.dom.parser.cpp; + +import org.eclipse.cdt.core.dom.ast.IASTDeclaration; +import org.eclipse.cdt.core.dom.ast.IASTNode; +import org.eclipse.cdt.core.parser.util.ArrayUtil; +import org.eclipse.cdt.internal.core.dom.parser.IASTAmbiguousDeclaration; + +public class CPPASTAmbiguousDeclaration extends CPPASTAmbiguity implements + IASTAmbiguousDeclaration { + + protected IASTNode[] getNodes() { + return getDeclarations(); + } + + private IASTDeclaration [] decls = new IASTDeclaration[2]; + + public void addDeclaration(IASTDeclaration d) { + decls = (IASTDeclaration[]) ArrayUtil.append(IASTDeclaration.class, decls, d ); + + } + + public IASTDeclaration[] getDeclarations() { + return (IASTDeclaration[]) ArrayUtil.removeNulls( IASTDeclaration.class, decls ); + } + +}