From b90f1ea0f1a35d04bd1d5ec2741dc8d45c1f3c0f Mon Sep 17 00:00:00 2001 From: Ben Culkin Date: Tue, 1 Dec 2020 20:20:53 -0500 Subject: Add some comments --- .../pratt/commands/impls/NonInitialCommands.java | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'JPratt/src/main/java/bjc/pratt/commands/impls/NonInitialCommands.java') diff --git a/JPratt/src/main/java/bjc/pratt/commands/impls/NonInitialCommands.java b/JPratt/src/main/java/bjc/pratt/commands/impls/NonInitialCommands.java index 82110b2..6019ffe 100644 --- a/JPratt/src/main/java/bjc/pratt/commands/impls/NonInitialCommands.java +++ b/JPratt/src/main/java/bjc/pratt/commands/impls/NonInitialCommands.java @@ -18,6 +18,10 @@ public class NonInitialCommands { /** * Create a left-associative infix operator. * + * @param The key type for the tokens. + * @param The value type for the tokens. + * @param The context type for the tokens. + * * @param precedence * The precedence of the operator. * @@ -30,6 +34,10 @@ public class NonInitialCommands { /** * Create a right-associative infix operator. * + * @param The key type for the tokens. + * @param The value type for the tokens. + * @param The context type for the tokens. + * * @param precedence * The precedence of the operator. * @@ -42,6 +50,10 @@ public class NonInitialCommands { /** * Create a non-associative infix operator. * + * @param The key type for the tokens. + * @param The value type for the tokens. + * @param The context type for the tokens. + * * @param precedence * The precedence of the operator. * @@ -54,6 +66,10 @@ public class NonInitialCommands { /** * Create a chained operator. * + * @param The key type for the tokens. + * @param The value type for the tokens. + * @param The context type for the tokens. + * * @param precedence * The precedence of the operator. * @@ -73,6 +89,10 @@ public class NonInitialCommands { /** * Create a postfix operator. * + * @param The key type for the tokens. + * @param The value type for the tokens. + * @param The context type for the tokens. + * * @param precedence * The precedence of the operator. * @@ -87,6 +107,10 @@ public class NonInitialCommands { * * This is an operator in form similar to array indexing. * + * @param The key type for the tokens. + * @param The value type for the tokens. + * @param The context type for the tokens. + * * @param precedence * The precedence of this operator * @@ -113,6 +137,10 @@ public class NonInitialCommands { * * This is like C's ?: operator. * + * @param The key type for the tokens. + * @param The value type for the tokens. + * @param The context type for the tokens. + * * @param precedence * The precedence of the operator. * -- cgit v1.2.3