JavaPatternMatching/src/de/dhbwstuttgart/syntaxtree/operator/DivideOp.java

34 lines
753 B
Java
Raw Normal View History

2013-10-18 11:33:46 +00:00
// ino.module.DivideOp.8596.package
2014-09-02 08:33:54 +00:00
package de.dhbwstuttgart.syntaxtree.operator;
2013-10-18 11:33:46 +00:00
// ino.end
// ino.module.DivideOp.8596.import
import de.dhbwstuttgart.typeinference.Menge;
2014-09-02 08:33:54 +00:00
2014-09-04 14:35:44 +00:00
import de.dhbwstuttgart.myexception.JVMCodeException;
2014-09-08 13:12:47 +00:00
import de.dhbwstuttgart.syntaxtree.SyntaxTreeNode;
2014-09-02 08:33:54 +00:00
import de.dhbwstuttgart.syntaxtree.statement.Binary;
import de.dhbwstuttgart.syntaxtree.statement.Expr;
2013-10-18 11:33:46 +00:00
// ino.class.DivideOp.24108.declaration
public class DivideOp extends MulOp
// ino.end
// ino.class.DivideOp.24108.body
{
// ino.method.DivideOp.24112.definition
public DivideOp(int offset, int variableLength)
// ino.end
// ino.method.DivideOp.24112.body
{
super(offset,variableLength);
}
// ino.end
2014-09-08 13:12:47 +00:00
2013-10-18 11:33:46 +00:00
}
// ino.end