JavaPatternMatching/src/de/dhbwstuttgart/syntaxtree/statement/BinaryExpr.java

18 lines
446 B
Java
Raw Normal View History

2014-09-02 08:33:54 +00:00
package de.dhbwstuttgart.syntaxtree.statement;
2014-04-23 15:59:39 +00:00
2013-10-18 11:33:46 +00:00
public abstract class BinaryExpr extends Expr
{
public BinaryExpr(int offset,int variableLength)
{
super(null,variableLength);
2013-10-18 11:33:46 +00:00
}
2014-04-23 15:59:39 +00:00
2013-10-18 11:33:46 +00:00
// abstract public void if_codegen(ClassFile classfile, Code_attribute code, boolean sw) throws jvmCode_Exception;
// abstract public void not_codegen(ClassFile classfile, Code_attribute code) throws jvmCode_Exception;
}