diff options
| author | Ben Culkin <scorpress@gmail.com> | 2020-04-06 22:06:56 -0400 |
|---|---|---|
| committer | Ben Culkin <scorpress@gmail.com> | 2020-04-06 22:06:56 -0400 |
| commit | 4fc00f80ab0ce85821f50e0798b339f4a1e3e977 (patch) | |
| tree | 75d0e34aa3d319f481cade8469ce6a423604995a /JPratt/src | |
| parent | 47e592671933d33366057665a5b7739f46dbae42 (diff) | |
Cleanup some warnings
Diffstat (limited to 'JPratt/src')
| -rw-r--r-- | JPratt/src/main/java/bjc/pratt/blocks/GrammarParseBlock.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/JPratt/src/main/java/bjc/pratt/blocks/GrammarParseBlock.java b/JPratt/src/main/java/bjc/pratt/blocks/GrammarParseBlock.java index 9e19216..865053d 100644 --- a/JPratt/src/main/java/bjc/pratt/blocks/GrammarParseBlock.java +++ b/JPratt/src/main/java/bjc/pratt/blocks/GrammarParseBlock.java @@ -46,12 +46,12 @@ public class GrammarParseBlock<K, V, C, K2, V2, C2> implements ParseBlock<K, V, /** * Create a new grammar parser block. * - * @param inner - * @param precedence - * @param isStatement - * @param tokenTransform - * @param stateTransform - * @param expressionTransform + * @param inner The inner grammar to parse. + * @param precedence The precedence of the expression to parse. + * @param isStatement Is the expression being parsed in statement context? + * @param tokenTransform Function to transform to the new token type. + * @param stateTransform Function to toggle between state types. + * @param expressionTransform Function to transform back to the normal token type. */ public GrammarParseBlock(final PrattParser<K2, V2, C2> inner, final int precedence, final boolean isStatement, final Function<TokenStream<K, V>, TokenStream<K2, V2>> tokenTransform, |
