mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-12 10:45:37 +02:00
fix compile error caused by new getBindings() methods
This commit is contained in:
parent
83be4e7382
commit
40a775b158
1 changed files with 15 additions and 0 deletions
|
@ -11,11 +11,13 @@
|
||||||
package org.eclipse.cdt.internal.core.dom.lrparser.c99.bindings;
|
package org.eclipse.cdt.internal.core.dom.lrparser.c99.bindings;
|
||||||
|
|
||||||
import org.eclipse.cdt.core.dom.IName;
|
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.IASTName;
|
||||||
import org.eclipse.cdt.core.dom.ast.IASTNode;
|
import org.eclipse.cdt.core.dom.ast.IASTNode;
|
||||||
import org.eclipse.cdt.core.dom.ast.IBinding;
|
import org.eclipse.cdt.core.dom.ast.IBinding;
|
||||||
import org.eclipse.cdt.core.dom.ast.IScope;
|
import org.eclipse.cdt.core.dom.ast.IScope;
|
||||||
import org.eclipse.cdt.core.dom.lrparser.action.c99.C99SymbolTable;
|
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;
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue