summaryrefslogtreecommitdiff
path: root/JPratt/src/main/java/bjc/pratt/commands/InitialCommand.java
diff options
context:
space:
mode:
authorBen Culkin <scorpress@gmail.com>2022-08-16 23:03:27 -0400
committerBen Culkin <scorpress@gmail.com>2022-08-16 23:03:27 -0400
commitcea3e47938322b97c318dea38dc0d649e196dc1b (patch)
tree0ceef0bafbfed7aa5802e8fc526c0c98276f1fff /JPratt/src/main/java/bjc/pratt/commands/InitialCommand.java
parent4869146748ed51eb212935d2b971388fb9e73d37 (diff)
Refactor to add backtracking support
This probably doesn't help w/ error messages, but it enables some cool ideas where syntax can be reused in cases where it would otherwise be invalid
Diffstat (limited to 'JPratt/src/main/java/bjc/pratt/commands/InitialCommand.java')
-rw-r--r--JPratt/src/main/java/bjc/pratt/commands/InitialCommand.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/JPratt/src/main/java/bjc/pratt/commands/InitialCommand.java b/JPratt/src/main/java/bjc/pratt/commands/InitialCommand.java
index 3a2a8ff..ba544b4 100644
--- a/JPratt/src/main/java/bjc/pratt/commands/InitialCommand.java
+++ b/JPratt/src/main/java/bjc/pratt/commands/InitialCommand.java
@@ -31,10 +31,10 @@ public interface InitialCommand<K, V, C> {
* @param ctx
* The context for the command.
*
- * @return The tree for this command.
+ * @return The result of executing the command.
*
* @throws ParserException
* If something goes wrong during parsing.
*/
- Tree<Token<K, V>> denote(Token<K, V> operator, ParserContext<K, V, C> ctx) throws ParserException;
+ CommandResult<K, V> denote(Token<K, V> operator, ParserContext<K, V, C> ctx) throws ParserException;
}