From 96e868388c7617136e916c27ddd90694c0bb8356 Mon Sep 17 00:00:00 2001 From: bjculkin Date: Mon, 27 Feb 2017 10:34:25 -0500 Subject: More refactoring --- dice-lang/src/bjc/dicelang/v2/Token.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'dice-lang/src/bjc/dicelang/v2/Token.java') diff --git a/dice-lang/src/bjc/dicelang/v2/Token.java b/dice-lang/src/bjc/dicelang/v2/Token.java index e5d3d9f..3d8359f 100644 --- a/dice-lang/src/bjc/dicelang/v2/Token.java +++ b/dice-lang/src/bjc/dicelang/v2/Token.java @@ -1,5 +1,6 @@ package bjc.dicelang.v2; +import bjc.dicelang.v2.dice.DieExpression; import bjc.utils.funcdata.IList; /** @@ -46,7 +47,7 @@ public class Token { // This is used for the following token types // DICE_LIT (dice value) - public DiceBox.DieExpression diceValue; + public DieExpression diceValue; // This is used for the following token types // TOKGROUP (the tokens in the group) @@ -69,7 +70,7 @@ public class Token { floatValue = val; } - public Token(Type typ, DiceBox.DieExpression val) { + public Token(Type typ, DieExpression val) { this(typ); diceValue = val; -- cgit v1.2.3