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

30 lines
887 B
Java
Raw Normal View History

2013-10-18 11:33:46 +00:00
2014-09-02 08:33:54 +00:00
package de.dhbwstuttgart.syntaxtree.statement;
2017-03-16 19:02:53 +00:00
import de.dhbwstuttgart.typeinference.assumptions.TypeInferenceBlockInformation;
import de.dhbwstuttgart.typeinference.constraints.ConstraintSet;
import de.dhbwstuttgart.typeinference.assumptions.TypeInferenceInformation;
2017-03-06 16:59:01 +00:00
import sun.reflect.generics.reflectiveObjects.NotImplementedException;
2013-10-18 11:33:46 +00:00
public class ForStmt extends Statement
{
2017-03-06 16:59:01 +00:00
private Expression head_Initializer_1;
private Expression head_Condition_1;
private Expression head_Loop_expr_1;
private Expression head_Initializer;
private Expression head_Condition;
private Expression head_Loop_expr;
2013-10-18 11:33:46 +00:00
private Statement body_Loop_block;
public ForStmt(int offset, int variableLength)
{
super(null,null);
2013-10-18 11:33:46 +00:00
}
2015-10-15 15:46:13 +00:00
2017-03-06 16:59:01 +00:00
@Override
2017-03-16 19:02:53 +00:00
public ConstraintSet getConstraints(TypeInferenceBlockInformation info) {
2017-03-06 16:59:01 +00:00
throw new NotImplementedException();
}
2013-10-18 11:33:46 +00:00
}