diff options
| author | bculkin2442 <bjculkin@mix.wvu.edu> | 2017-04-10 16:49:31 -0400 |
|---|---|---|
| committer | bculkin2442 <bjculkin@mix.wvu.edu> | 2017-04-10 16:49:31 -0400 |
| commit | 251419e1f0ab8eb04d21287b708b06a552f4c58a (patch) | |
| tree | 5127ac36aa7b6e683901ff2954ffaa51b27bc0b2 /JPratt/src/main/java/bjc/pratt/PrattParser.java | |
| parent | 4d69e8b9aaebc253f3ed0864734b8c1db9a1eedd (diff) | |
Warning resolution
Diffstat (limited to 'JPratt/src/main/java/bjc/pratt/PrattParser.java')
| -rw-r--r-- | JPratt/src/main/java/bjc/pratt/PrattParser.java | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/JPratt/src/main/java/bjc/pratt/PrattParser.java b/JPratt/src/main/java/bjc/pratt/PrattParser.java index e08a67c..c36cabc 100644 --- a/JPratt/src/main/java/bjc/pratt/PrattParser.java +++ b/JPratt/src/main/java/bjc/pratt/PrattParser.java @@ -174,7 +174,16 @@ public class PrattParser<K, V, C> { } /** - * Add a dependant non-initial command to this parser. + * Add a dependent non-initial command to this parser. + * + * @param dependant + * The dependent that precedes the command. + * + * @param marker + * The token key that marks the command. + * + * @param comm + * The command. */ public void addDependantCommand(K dependant, K marker, NonInitialCommand<K, V, C> comm) { if (dependantLeftCommands.containsKey(dependant)) { |
