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

22 lines
605 B
Java
Raw Normal View History

2014-09-02 08:33:54 +00:00
package de.dhbwstuttgart.syntaxtree.statement;
2017-03-06 16:59:01 +00:00
import de.dhbwstuttgart.typeinference.ConstraintSet;
import de.dhbwstuttgart.typeinference.assumptions.TypeInferenceInformation;
2014-09-08 13:12:47 +00:00
2014-09-02 08:33:54 +00:00
import de.dhbwstuttgart.syntaxtree.operator.Operator;
2017-03-06 16:59:01 +00:00
import sun.reflect.generics.reflectiveObjects.NotImplementedException;
2013-10-18 11:33:46 +00:00
// neu von Felix
2017-03-06 16:59:01 +00:00
public class Binary extends Expression
2013-10-18 11:33:46 +00:00
{
2017-03-06 16:59:01 +00:00
public Binary(Expression expr1, Expression expr2, Operator op){
super(null, null);
2013-10-18 11:33:46 +00:00
}
2017-03-06 16:59:01 +00:00
@Override
public ConstraintSet getConstraints(TypeInferenceInformation info) {
throw new NotImplementedException();
2017-03-01 14:34:57 +00:00
}
2013-10-18 11:33:46 +00:00
}