Refactoring

This commit is contained in:
FelixKrespach 2017-09-25 08:24:08 +02:00
parent 03080c43cb
commit 86b2118770
2 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ import java.util.List;
*/ */
public class AssertStmt extends Statement public class AssertStmt extends Statement
{ {
final List<Expression> expr; public final List<Expression> expr;
public AssertStmt(RefTypeOrTPHOrWildcardOrGeneric type, List<Expression> expr, Token offset){ public AssertStmt(RefTypeOrTPHOrWildcardOrGeneric type, List<Expression> expr, Token offset){
super(type, offset); super(type, offset);
this.expr=expr; this.expr=expr;

View File

@ -9,8 +9,8 @@ import org.antlr.v4.runtime.Token;
*/ */
public class SwitchStmt extends Statement public class SwitchStmt extends Statement
{ {
final Expression expr; public final Expression expr;
final Block switchBlock; public final Block switchBlock;
public SwitchStmt(RefTypeOrTPHOrWildcardOrGeneric type,Expression expr, Block block, Token offset){ public SwitchStmt(RefTypeOrTPHOrWildcardOrGeneric type,Expression expr, Block block, Token offset){
super(type,offset); super(type,offset);
this.expr=expr; this.expr=expr;