diff options
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) { |
