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/ParserContext.java | |
| parent | 4d69e8b9aaebc253f3ed0864734b8c1db9a1eedd (diff) | |
Warning resolution
Diffstat (limited to 'JPratt/src/main/java/bjc/pratt/ParserContext.java')
| -rw-r--r-- | JPratt/src/main/java/bjc/pratt/ParserContext.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/JPratt/src/main/java/bjc/pratt/ParserContext.java b/JPratt/src/main/java/bjc/pratt/ParserContext.java index f5e22ba..1697a12 100644 --- a/JPratt/src/main/java/bjc/pratt/ParserContext.java +++ b/JPratt/src/main/java/bjc/pratt/ParserContext.java @@ -30,18 +30,18 @@ public class ParserContext<K, V, C> { /** * Create a new parser context. * - * @param tokens + * @param tokns * The source of tokens. * - * @param parse + * @param prse * The parser to call for sub expressions. * - * @param state + * @param stte * Any state needing to be kept during parsing. */ - public ParserContext(TokenStream<K, V> tokens, PrattParser<K, V, C> parse, C state) { - this.tokens = tokens; - this.parse = parse; - this.state = state; + public ParserContext(TokenStream<K, V> tokns, PrattParser<K, V, C> prse, C stte) { + this.tokens = tokns; + this.parse = prse; + this.state = stte; } }
\ No newline at end of file |
