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/Parser.java | |
| parent | 40858cee415643769ee5f6216b0cd4335996ff2f (diff) | |
Cleanup
Diffstat (limited to 'dice-lang/src/bjc/dicelang/Parser.java')
| -rw-r--r-- | dice-lang/src/bjc/dicelang/Parser.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dice-lang/src/bjc/dicelang/Parser.java b/dice-lang/src/bjc/dicelang/Parser.java index bef4072..7907137 100644 --- a/dice-lang/src/bjc/dicelang/Parser.java +++ b/dice-lang/src/bjc/dicelang/Parser.java @@ -14,7 +14,7 @@ import static bjc.dicelang.Token.Type.CBRACKET; /** * Parse a series of tree into tokens. - * + * * @author EVE * */ @@ -28,13 +28,13 @@ public class Parser { /** * Parse a series of tokens to a forest of ASTs. - * + * * @param tokens * The list of tokens to parse. - * + * * @param results * The place to set results. - * + * * @return Whether or not the parse was successful. */ public boolean parseTokens(IList<Token> tokens, IList<ITree<Node>> results) { |
