Skip to content

Commit

Permalink
The Quick Interpreter gives a "null" in the message, fixes #656
Browse files Browse the repository at this point in the history
  • Loading branch information
nickbattle committed Dec 4, 2017
1 parent 31ba594 commit 422e717
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/ast/src/main/java/org/overture/ast/lex/VDMToken.java
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ public enum VDMToken implements Serializable
VDM_RT), SYSTEM("system", "system", VDM_RT),

// No more tokens
EOF(null, null, VDM_SL);
EOF(null, "EOF", VDM_SL);

/** The keyword associated with a token, if any. */
private String keyword = null;
Expand Down

0 comments on commit 422e717

Please sign in to comment.