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

30 lines
699 B
Java
Executable File

// ino.module.LessEquOp.8600.package
package de.dhbwstuttgart.syntaxtree.operator;
// ino.end
// ino.module.LessEquOp.8600.import
import de.dhbwstuttgart.typeinference.Menge;
import de.dhbwstuttgart.myexception.JVMCodeException;
import de.dhbwstuttgart.syntaxtree.statement.Binary;
import de.dhbwstuttgart.syntaxtree.statement.Expr;
// ino.class.LessEquOp.24160.declaration
public class LessEquOp extends RelOp
// ino.end
// ino.class.LessEquOp.24160.body
{
// ino.method.LessEquOp.24164.definition
public LessEquOp(int offset, int variableLength)
// ino.end
// ino.method.LessEquOp.24164.body
{
super(offset,variableLength);
}
// ino.end
}
// ino.end