From 0c3270b408116d3a8d2f1558acb4222eaa808e7b Mon Sep 17 00:00:00 2001 From: bculkin2442 Date: Mon, 13 Feb 2017 12:22:45 -0500 Subject: Flexadecimals are cool, as are longs --- dice-lang/src/bjc/dicelang/v2/Token.java | 4 ++-- 1 file changed, 2 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 e5fce00..9825dae 100644 --- a/dice-lang/src/bjc/dicelang/v2/Token.java +++ b/dice-lang/src/bjc/dicelang/v2/Token.java @@ -26,7 +26,7 @@ public class Token { // At most one of these is valid // based on the token type - public int intValue; + public long intValue; public double floatValue; public DiceBox.DieExpression diceValue; @@ -34,7 +34,7 @@ public class Token { type = typ; } - public Token(Type typ, int val) { + public Token(Type typ, long val) { this(typ); intValue = val; -- cgit v1.2.3