fillDeclarabls

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@849 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 25 years ago
parent 8f97281fc1
commit c0ea5b7956
  1. 13
      jode/jode/expr/Expression.java

@ -23,6 +23,12 @@ import jode.GlobalOptions;
import jode.decompiler.TabbedPrintWriter;
import jode.flow.VariableSet;
///#ifdef JDK12
///import java.util.Set;
///#else
import jode.util.SimpleSet;
///#endif
public abstract class Expression {
protected Type type;
@ -226,6 +232,13 @@ public abstract class Expression {
public void fillInGenSet(VariableSet in, VariableSet gen) {
}
///#ifdef JDK12
/// public void fillDeclarables(Set used) {
///#else
public void fillDeclarables(SimpleSet used) {
///#endif
}
public abstract void dumpExpression(TabbedPrintWriter writer)
throws java.io.IOException;

Loading…
Cancel
Save