forked from JavaTX/JavaCompilerCore
30 lines
675 B
Java
Executable File
30 lines
675 B
Java
Executable File
// ino.module.LessOp.8601.package
|
|
package de.dhbwstuttgart.syntaxtree.operator;
|
|
// ino.end
|
|
// ino.module.LessOp.8601.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.LessOp.24173.declaration
|
|
public class LessOp extends RelOp
|
|
// ino.end
|
|
// ino.class.LessOp.24173.body
|
|
{
|
|
// ino.method.LessOp.24177.definition
|
|
public LessOp(int offset, int variableLength)
|
|
// ino.end
|
|
// ino.method.LessOp.24177.body
|
|
{
|
|
super(offset,variableLength);
|
|
}
|
|
// ino.end
|
|
|
|
}
|
|
// ino.end
|