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

23 lines
590 B
Java
Raw Normal View History

2017-03-02 15:48:08 +00:00
package de.dhbwstuttgart.syntaxtree.statement;
2017-03-06 16:59:01 +00:00
import de.dhbwstuttgart.typeinference.ConstraintSet;
import de.dhbwstuttgart.typeinference.Pair;
import de.dhbwstuttgart.typeinference.TypeInferenceInformation;
2017-03-02 15:48:08 +00:00
import org.antlr.v4.runtime.Token;
2017-03-06 16:59:01 +00:00
import sun.reflect.generics.reflectiveObjects.NotImplementedException;
import java.util.List;
2017-03-02 15:48:08 +00:00
public class Super extends Expression
{
public Super(Token offset)
{
super(null,null);
}
2017-03-06 16:59:01 +00:00
@Override
public ConstraintSet getConstraints(TypeInferenceInformation info) {
throw new NotImplementedException();
}
2017-03-02 15:48:08 +00:00
}