diff options
| author | bjculkin <bjculkin@mix.wvu.edu> | 2017-04-11 17:51:51 -0400 |
|---|---|---|
| committer | bjculkin <bjculkin@mix.wvu.edu> | 2017-04-11 17:51:51 -0400 |
| commit | 675ae734dd7b7a47d93ee3527dd1eb7195be047b (patch) | |
| tree | 9d6901c63bd50a645e92d8b192013b3b201d8ecf /dice-lang/src/bjc/dicelang/Shunter.java | |
| parent | 40858cee415643769ee5f6216b0cd4335996ff2f (diff) | |
Cleanup
Diffstat (limited to 'dice-lang/src/bjc/dicelang/Shunter.java')
| -rw-r--r-- | dice-lang/src/bjc/dicelang/Shunter.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dice-lang/src/bjc/dicelang/Shunter.java b/dice-lang/src/bjc/dicelang/Shunter.java index 3adfd5b..5ac4614 100644 --- a/dice-lang/src/bjc/dicelang/Shunter.java +++ b/dice-lang/src/bjc/dicelang/Shunter.java @@ -15,7 +15,7 @@ import static bjc.dicelang.Token.Type.*; /** * Shunt a set of infix tokens to postfix tokens. - * + * * @author EVE * */ @@ -101,13 +101,13 @@ public class Shunter { /** * Shunt a set of tokens from infix to postfix. - * + * * @param tks * The tokens to input. - * + * * @param returned * The postfix tokens. - * + * * @return Whether or not the shunt succeeded. */ public boolean shuntTokens(IList<Token> tks, IList<Token> returned) { |
