diff options
| author | student <student@localhost> | 2018-02-12 12:59:01 -0500 |
|---|---|---|
| committer | student <student@localhost> | 2018-02-12 12:59:01 -0500 |
| commit | 8094fc813a29d447555863b6c32816229ff01958 (patch) | |
| tree | 375a00a4f72477dcf711fe2c4ab1293950614209 /base/src/bjc/dicelang/Node.java | |
| parent | a15873fb42e8db3b2101330514b2208ef3490d70 (diff) | |
Formatting pass
Diffstat (limited to 'base/src/bjc/dicelang/Node.java')
| -rw-r--r-- | base/src/bjc/dicelang/Node.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/base/src/bjc/dicelang/Node.java b/base/src/bjc/dicelang/Node.java index 746ba34..55273e8 100644 --- a/base/src/bjc/dicelang/Node.java +++ b/base/src/bjc/dicelang/Node.java @@ -26,10 +26,10 @@ public class Node { public final Type type; // These can have or not have values based of the node type - public Token tokenVal; - public Token.Type operatorType; - public GroupType groupType; - public EvaluatorResult resultVal; + public Token tokenVal; + public Token.Type operatorType; + public GroupType groupType; + public EvaluatorResult resultVal; public Node(final Type typ) { type = typ; @@ -120,8 +120,8 @@ public class Node { return new Node(Type.RESULT, new EvaluatorResult(FAILURE, orig)); } - /* @TODO 10/09/17 Ben Culkin :NodeFAIL - * These methods should be moved to Node. + /* + * @TODO 10/09/17 Ben Culkin :NodeFAIL These methods should be moved to Node. */ /* Create a failing node. */ static Node FAIL() { |
