mirror of
https://github.com/hneemann/Digital.git
synced 2025-09-13 06:49:36 -04:00
fixed a type cast bug in the test data parser
This commit is contained in:
parent
8e5df41c06
commit
058824530c
@ -169,7 +169,7 @@ public class Parser {
|
||||
break;
|
||||
case OPEN:
|
||||
exp = parseExpression();
|
||||
line.add((vals, context) -> vals.add(new Value((int) exp.value(context))));
|
||||
line.add((vals, context) -> vals.add(new Value(exp.value(context))));
|
||||
expect(Tokenizer.Token.CLOSE);
|
||||
break;
|
||||
case EOF:
|
||||
|
Loading…
x
Reference in New Issue
Block a user