1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-11 18:25:40 +02:00

fix compile error caused by new getBindings() methods

This commit is contained in:
Mike Kucera 2008-01-28 22:06:14 +00:00
parent 83be4e7382
commit 40a775b158

View file

@ -11,11 +11,13 @@
package org.eclipse.cdt.internal.core.dom.lrparser.c99.bindings;
import org.eclipse.cdt.core.dom.IName;
import org.eclipse.cdt.core.dom.ast.DOMException;
import org.eclipse.cdt.core.dom.ast.IASTName;
import org.eclipse.cdt.core.dom.ast.IASTNode;
import org.eclipse.cdt.core.dom.ast.IBinding;
import org.eclipse.cdt.core.dom.ast.IScope;
import org.eclipse.cdt.core.dom.lrparser.action.c99.C99SymbolTable;
import org.eclipse.cdt.core.index.IIndexFileSet;
import org.eclipse.cdt.internal.core.dom.parser.IASTInternalScope;
/**
@ -98,6 +100,19 @@ public class C99Scope implements IC99Scope, IASTInternalScope {
}
public IBinding getBinding(IASTName name, boolean resolve,
IIndexFileSet acceptLocalBindings) throws DOMException {
// TODO Auto-generated method stub
return null;
}
public IBinding[] getBindings(IASTName name, boolean resolve,
boolean prefixLookup, IIndexFileSet acceptLocalBindings)
throws DOMException {
// TODO Auto-generated method stub
return null;
}
}