diff options
| author | bjculkin <bjculkin@mix.wvu.edu> | 2018-02-15 15:25:09 -0500 |
|---|---|---|
| committer | bjculkin <bjculkin@mix.wvu.edu> | 2018-02-15 15:25:09 -0500 |
| commit | 5028ad9a1faad0e363d017f18363e8062ba59871 (patch) | |
| tree | 80df30dc24a2cd79abf7533b98fcfcd28b1f4fee /JPratt/src/main/java/bjc/pratt/commands/NonInitialCommand.java | |
| parent | 1112bb1b44bb3aabe439a2b9f88a51a9c1e435de (diff) | |
Formatting and things
Diffstat (limited to 'JPratt/src/main/java/bjc/pratt/commands/NonInitialCommand.java')
| -rw-r--r-- | JPratt/src/main/java/bjc/pratt/commands/NonInitialCommand.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/JPratt/src/main/java/bjc/pratt/commands/NonInitialCommand.java b/JPratt/src/main/java/bjc/pratt/commands/NonInitialCommand.java index d06e336..35b0825 100644 --- a/JPratt/src/main/java/bjc/pratt/commands/NonInitialCommand.java +++ b/JPratt/src/main/java/bjc/pratt/commands/NonInitialCommand.java @@ -11,13 +11,13 @@ import bjc.utils.parserutils.ParserException; * @author EVE * * @param <K> - * The key type for the tokens. + * The key type for the tokens. * * @param <V> - * The value type for the tokens. + * The value type for the tokens. * * @param <C> - * The state type of the parser. + * The state type of the parser. * */ public abstract class NonInitialCommand<K, V, C> { @@ -25,17 +25,17 @@ public abstract class NonInitialCommand<K, V, C> { * Construct the left denotation of this command. * * @param operand - * The left-hand operand of this command. + * The left-hand operand of this command. * @param operator - * The operator for this command. + * The operator for this command. * * @param ctx - * The state needed for commands. + * The state needed for commands. * * @return The tree this command forms. * * @throws ParserException - * If something went wrong during parsing. + * If something went wrong during parsing. */ public abstract ITree<Token<K, V>> denote(ITree<Token<K, V>> operand, Token<K, V> operator, ParserContext<K, V, C> ctx) throws ParserException; |
