diff --git a/_automation/grammars.json b/_automation/grammars.json index bf49e5f1..a22b991f 100644 --- a/_automation/grammars.json +++ b/_automation/grammars.json @@ -96,6 +96,16 @@ "reference": "master", "revision": "64457ea6b73ef5422ed1687178d4545c3e91334a" }, + { + "language": "groovy", + "url": "https://github.com/murtaza64/tree-sitter-groovy", + "files": [ + "parser.c", + "scanner.c" + ], + "reference": "main", + "revision": "235009aad0f580211fc12014bb0846c3910130c1" + }, { "language": "hcl", "url": "https://github.com/MichaHoffmann/tree-sitter-hcl", diff --git a/groovy/binding.go b/groovy/binding.go new file mode 100644 index 00000000..7f4bd198 --- /dev/null +++ b/groovy/binding.go @@ -0,0 +1,15 @@ +package groovy + +//#include "parser.h" +//TSLanguage *tree_sitter_groovy(); +import "C" +import ( + "unsafe" + + sitter "github.com/smacker/go-tree-sitter" +) + +func GetLanguage() *sitter.Language { + ptr := unsafe.Pointer(C.tree_sitter_groovy()) + return sitter.NewLanguage(ptr) +} diff --git a/groovy/binding_test.go b/groovy/binding_test.go new file mode 100644 index 00000000..e0d66b67 --- /dev/null +++ b/groovy/binding_test.go @@ -0,0 +1,61 @@ +package groovy_test + +import ( + "context" + "testing" + + sitter "github.com/smacker/go-tree-sitter" + "github.com/smacker/go-tree-sitter/groovy" + "github.com/stretchr/testify/assert" +) + +var gradleGroovyCode = ` +plugins { + id 'application' + id 'foo' +} +` + +var testCases = []struct { + name string + input string + expected string +}{ + { + name: "hello-world", + input: ` + class Example { + static void main(String[] args) { + println('Hello World'); + } + }`, + expected: "(source_file (class_definition name: (identifier) body: (closure (function_definition (modifier) type: (builtintype) function: (identifier) parameters: (parameter_list (parameter type: (array_type (identifier)) name: (identifier))) body: (closure (function_call function: (identifier) args: (argument_list (string (string_content)))))))))", + }, + { + name: "gradle", + input: ` + plugins { + id 'application' + } + + repositories { + mavenCentral() + } + + application { + mainClass = 'example.App' + } + `, + expected: "(source_file (juxt_function_call function: (identifier) args: (argument_list (closure (juxt_function_call function: (identifier) args: (argument_list (string (string_content))))))) (juxt_function_call function: (identifier) args: (argument_list (closure (function_call function: (identifier) args: (argument_list))))) (juxt_function_call function: (identifier) args: (argument_list (closure (assignment (identifier) (string (string_content)))))))", + }, +} + +func TestGrammar(t *testing.T) { + for _, tc := range testCases { + t.Run(tc.name, func(t *testing.T) { + n, err := sitter.ParseCtx(context.Background(), []byte(tc.input), groovy.GetLanguage()) + assert.Nil(t, err) + assert.Equal(t, tc.expected, n.String()) + }) + } +} diff --git a/groovy/parser.c b/groovy/parser.c new file mode 100644 index 00000000..7c7395c9 --- /dev/null +++ b/groovy/parser.c @@ -0,0 +1,183019 @@ +#include "parser.h" + +#if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wmissing-field-initializers" +#endif + +#ifdef _MSC_VER +#pragma optimize("", off) +#elif defined(__clang__) +#pragma clang optimize off +#elif defined(__GNUC__) +#pragma GCC optimize ("O0") +#endif + +#define LANGUAGE_VERSION 14 +#define STATE_COUNT 2802 +#define LARGE_STATE_COUNT 834 +#define SYMBOL_COUNT 240 +#define ALIAS_COUNT 0 +#define TOKEN_COUNT 157 +#define EXTERNAL_TOKEN_COUNT 0 +#define FIELD_COUNT 23 +#define MAX_ALIAS_SEQUENCE_LENGTH 9 +#define PRODUCTION_ID_COUNT 85 + +enum { + sym_identifier = 1, + anon_sym_POUND_BANG = 2, + aux_sym_shebang_token1 = 3, + anon_sym_break = 4, + anon_sym_continue = 5, + anon_sym_SEMI = 6, + anon_sym_DOT_AMP = 7, + anon_sym_DOT_AT = 8, + anon_sym_QMARK_DOT = 9, + anon_sym_STAR_DOT = 10, + anon_sym_STAR = 11, + anon_sym_STAR_COLON = 12, + anon_sym_DOT = 13, + anon_sym_import = 14, + anon_sym_DOT_STAR = 15, + anon_sym_as = 16, + anon_sym_package = 17, + anon_sym_AT = 18, + aux_sym_annotation_token1 = 19, + anon_sym_assert = 20, + anon_sym_EQ = 21, + anon_sym_STAR_STAR_EQ = 22, + anon_sym_STAR_EQ = 23, + anon_sym_SLASH_EQ = 24, + anon_sym_PERCENT_EQ = 25, + anon_sym_PLUS_EQ = 26, + anon_sym_DASH_EQ = 27, + anon_sym_LT_LT_EQ = 28, + anon_sym_GT_GT_EQ = 29, + anon_sym_GT_GT_GT_EQ = 30, + anon_sym_AMP_EQ = 31, + anon_sym_CARET_EQ = 32, + anon_sym_PIPE_EQ = 33, + anon_sym_QMARK_EQ = 34, + anon_sym_PLUS_PLUS = 35, + anon_sym_DASH_DASH = 36, + anon_sym_PERCENT = 37, + anon_sym_SLASH = 38, + anon_sym_PLUS = 39, + anon_sym_DASH = 40, + anon_sym_LT_LT = 41, + anon_sym_GT_GT = 42, + anon_sym_GT_GT_GT = 43, + anon_sym_DOT_DOT = 44, + anon_sym_DOT_DOT_LT = 45, + anon_sym_LT_DOT_DOT_LT = 46, + anon_sym_LT_DOT_DOT = 47, + anon_sym_LT = 48, + anon_sym_LT_EQ = 49, + anon_sym_GT = 50, + anon_sym_GT_EQ = 51, + anon_sym_in = 52, + anon_sym_BANGin = 53, + anon_sym_instanceof = 54, + anon_sym_BANGinstanceof = 55, + anon_sym_EQ_EQ = 56, + anon_sym_BANG_EQ = 57, + anon_sym_LT_EQ_GT = 58, + anon_sym_EQ_EQ_EQ = 59, + anon_sym_BANG_EQ_EQ = 60, + anon_sym_EQ_TILDE = 61, + anon_sym_EQ_EQ_TILDE = 62, + anon_sym_AMP = 63, + anon_sym_CARET = 64, + anon_sym_PIPE = 65, + anon_sym_AMP_AMP = 66, + anon_sym_PIPE_PIPE = 67, + anon_sym_QMARK_COLON = 68, + anon_sym_STAR_STAR = 69, + anon_sym_true = 70, + anon_sym_false = 71, + anon_sym_ATinterface = 72, + anon_sym_interface = 73, + anon_sym_class = 74, + anon_sym_extends = 75, + anon_sym_COMMA = 76, + anon_sym_LBRACE = 77, + anon_sym_DASH_GT = 78, + anon_sym_RBRACE = 79, + aux_sym_comment_token1 = 80, + anon_sym_SLASH_STAR = 81, + aux_sym_comment_token2 = 82, + anon_sym_SLASH_STAR_STAR = 83, + aux_sym_groovy_doc_token1 = 84, + aux_sym_groovy_doc_token2 = 85, + aux_sym_groovy_doc_token3 = 86, + anon_sym_STAR_SLASH = 87, + anon_sym_ATparam = 88, + anon_sym_ATthrows = 89, + sym_groovy_doc_tag = 90, + sym_groovy_doc_at_text = 91, + anon_sym_def = 92, + anon_sym_this = 93, + anon_sym_null = 94, + anon_sym_LPAREN = 95, + anon_sym_RPAREN = 96, + anon_sym_do = 97, + anon_sym_while = 98, + anon_sym_for = 99, + anon_sym_if = 100, + anon_sym_else = 101, + anon_sym_LBRACK = 102, + anon_sym_RBRACK = 103, + anon_sym_COLON = 104, + aux_sym_number_literal_token1 = 105, + aux_sym_number_literal_token2 = 106, + aux_sym_number_literal_token3 = 107, + aux_sym_number_literal_token4 = 108, + aux_sym_number_literal_token5 = 109, + anon_sym_pipeline = 110, + anon_sym_return = 111, + anon_sym_SQUOTE = 112, + aux_sym__plain_string_token1 = 113, + anon_sym_SQUOTE_SQUOTE_SQUOTE = 114, + aux_sym__plain_string_token2 = 115, + aux_sym__plain_string_token3 = 116, + aux_sym__plain_string_token4 = 117, + anon_sym_DQUOTE = 118, + aux_sym__interpolate_string_token1 = 119, + anon_sym_DQUOTE_DQUOTE_DQUOTE = 120, + aux_sym__interpolate_string_token2 = 121, + aux_sym__interpolate_string_token3 = 122, + aux_sym__interpolate_string_token4 = 123, + anon_sym_BSLASH_SLASH = 124, + anon_sym_DOLLAR_SLASH = 125, + aux_sym__interpolate_string_token5 = 126, + anon_sym_DOLLAR_DOLLAR = 127, + anon_sym_SLASH_DOLLAR = 128, + sym_escape_sequence = 129, + anon_sym_DOLLAR = 130, + aux_sym_interpolation_token1 = 131, + anon_sym_switch = 132, + anon_sym_case = 133, + anon_sym_default = 134, + anon_sym_QMARK = 135, + anon_sym_try = 136, + anon_sym_catch = 137, + anon_sym_finally = 138, + anon_sym_int = 139, + anon_sym_boolean = 140, + anon_sym_char = 141, + anon_sym_short = 142, + anon_sym_long = 143, + anon_sym_float = 144, + anon_sym_double = 145, + anon_sym_void = 146, + anon_sym_LBRACK_RBRACK = 147, + anon_sym_public = 148, + anon_sym_protected = 149, + anon_sym_private = 150, + anon_sym_static = 151, + anon_sym_final = 152, + anon_sym_synchronized = 153, + anon_sym_TILDE = 154, + anon_sym_BANG = 155, + anon_sym_new = 156, + sym_source_file = 157, + sym_shebang = 158, + sym__statement = 159, + sym_access_op = 160, + sym_dotted_identifier = 161, + sym_groovy_import = 162, + sym_groovy_package = 163, + sym__prefix_expression = 164, + sym_annotation = 165, + sym_assertion = 166, + sym_assignment = 167, + sym_increment_op = 168, + sym_binary_op = 169, + sym_boolean_literal = 170, + sym_class_definition = 171, + sym_generic_parameters = 172, + sym_generic_param = 173, + sym_closure = 174, + sym_comment = 175, + sym_groovy_doc = 176, + sym_groovy_doc_param = 177, + sym_groovy_doc_throws = 178, + sym_declaration = 179, + sym__expression = 180, + sym_do_while_loop = 181, + sym_for_parameters = 182, + sym_for_loop = 183, + sym_for_in_loop = 184, + sym_function_call = 185, + sym_argument_list = 186, + sym__param_list = 187, + sym_parameter_list = 188, + sym_parameter = 189, + sym_function_declaration = 190, + sym_function_definition = 191, + sym_if_statement = 192, + sym_index = 193, + sym_juxt_function_call = 194, + sym__juxt_function_name = 195, + sym__juxt_argument_list = 196, + sym_list = 197, + sym_map_item = 198, + sym_map = 199, + sym_number_literal = 200, + sym_pipeline = 201, + sym_return = 202, + sym_string = 203, + sym__plain_string = 204, + sym__interpolate_string = 205, + sym_interpolation = 206, + sym_switch_statement = 207, + sym_switch_block = 208, + sym_case = 209, + sym_ternary_op = 210, + sym_try_statement = 211, + sym_builtintype = 212, + sym__type = 213, + sym_array_type = 214, + sym_access_modifier = 215, + sym_modifier = 216, + sym_type_with_generics = 217, + sym_generics = 218, + sym_unary_op = 219, + sym_while_loop = 220, + aux_sym_source_file_repeat1 = 221, + aux_sym_class_definition_repeat1 = 222, + aux_sym_generic_parameters_repeat1 = 223, + aux_sym_groovy_doc_repeat1 = 224, + aux_sym_for_parameters_repeat1 = 225, + aux_sym_for_parameters_repeat2 = 226, + aux_sym_argument_list_repeat1 = 227, + aux_sym__param_list_repeat1 = 228, + aux_sym__juxt_argument_list_repeat1 = 229, + aux_sym_list_repeat1 = 230, + aux_sym_map_repeat1 = 231, + aux_sym__plain_string_repeat1 = 232, + aux_sym__plain_string_repeat2 = 233, + aux_sym__interpolate_string_repeat1 = 234, + aux_sym__interpolate_string_repeat2 = 235, + aux_sym__interpolate_string_repeat3 = 236, + aux_sym__interpolate_string_repeat4 = 237, + aux_sym_switch_block_repeat1 = 238, + aux_sym_generics_repeat1 = 239, +}; + +static const char * const ts_symbol_names[] = { + [ts_builtin_sym_end] = "end", + [sym_identifier] = "identifier", + [anon_sym_POUND_BANG] = "#!", + [aux_sym_shebang_token1] = "shebang_token1", + [anon_sym_break] = "break", + [anon_sym_continue] = "continue", + [anon_sym_SEMI] = ";", + [anon_sym_DOT_AMP] = ".&", + [anon_sym_DOT_AT] = ".@", + [anon_sym_QMARK_DOT] = "\?.", + [anon_sym_STAR_DOT] = "*.", + [anon_sym_STAR] = "*", + [anon_sym_STAR_COLON] = "*:", + [anon_sym_DOT] = ".", + [anon_sym_import] = "import", + [anon_sym_DOT_STAR] = ".*", + [anon_sym_as] = "as", + [anon_sym_package] = "package", + [anon_sym_AT] = "@", + [aux_sym_annotation_token1] = "identifier", + [anon_sym_assert] = "assert", + [anon_sym_EQ] = "=", + [anon_sym_STAR_STAR_EQ] = "**=", + [anon_sym_STAR_EQ] = "*=", + [anon_sym_SLASH_EQ] = "/=", + [anon_sym_PERCENT_EQ] = "%=", + [anon_sym_PLUS_EQ] = "+=", + [anon_sym_DASH_EQ] = "-=", + [anon_sym_LT_LT_EQ] = "<<=", + [anon_sym_GT_GT_EQ] = ">>=", + [anon_sym_GT_GT_GT_EQ] = ">>>=", + [anon_sym_AMP_EQ] = "&=", + [anon_sym_CARET_EQ] = "^=", + [anon_sym_PIPE_EQ] = "|=", + [anon_sym_QMARK_EQ] = "\?=", + [anon_sym_PLUS_PLUS] = "++", + [anon_sym_DASH_DASH] = "--", + [anon_sym_PERCENT] = "%", + [anon_sym_SLASH] = "/", + [anon_sym_PLUS] = "+", + [anon_sym_DASH] = "-", + [anon_sym_LT_LT] = "<<", + [anon_sym_GT_GT] = ">>", + [anon_sym_GT_GT_GT] = ">>>", + [anon_sym_DOT_DOT] = "..", + [anon_sym_DOT_DOT_LT] = "..<", + [anon_sym_LT_DOT_DOT_LT] = "<..<", + [anon_sym_LT_DOT_DOT] = "<..", + [anon_sym_LT] = "<", + [anon_sym_LT_EQ] = "<=", + [anon_sym_GT] = ">", + [anon_sym_GT_EQ] = ">=", + [anon_sym_in] = "in", + [anon_sym_BANGin] = "!in", + [anon_sym_instanceof] = "instanceof", + [anon_sym_BANGinstanceof] = "!instanceof", + [anon_sym_EQ_EQ] = "==", + [anon_sym_BANG_EQ] = "!=", + [anon_sym_LT_EQ_GT] = "<=>", + [anon_sym_EQ_EQ_EQ] = "===", + [anon_sym_BANG_EQ_EQ] = "!==", + [anon_sym_EQ_TILDE] = "=~", + [anon_sym_EQ_EQ_TILDE] = "==~", + [anon_sym_AMP] = "&", + [anon_sym_CARET] = "^", + [anon_sym_PIPE] = "|", + [anon_sym_AMP_AMP] = "&&", + [anon_sym_PIPE_PIPE] = "||", + [anon_sym_QMARK_COLON] = "\?:", + [anon_sym_STAR_STAR] = "**", + [anon_sym_true] = "true", + [anon_sym_false] = "false", + [anon_sym_ATinterface] = "@interface", + [anon_sym_interface] = "interface", + [anon_sym_class] = "class", + [anon_sym_extends] = "extends", + [anon_sym_COMMA] = ",", + [anon_sym_LBRACE] = "{", + [anon_sym_DASH_GT] = "->", + [anon_sym_RBRACE] = "}", + [aux_sym_comment_token1] = "comment_token1", + [anon_sym_SLASH_STAR] = "/*", + [aux_sym_comment_token2] = "comment_token2", + [anon_sym_SLASH_STAR_STAR] = "/**", + [aux_sym_groovy_doc_token1] = "groovy_doc_token1", + [aux_sym_groovy_doc_token2] = "first_line", + [aux_sym_groovy_doc_token3] = "groovy_doc_token3", + [anon_sym_STAR_SLASH] = "*/", + [anon_sym_ATparam] = "@param", + [anon_sym_ATthrows] = "@throws", + [sym_groovy_doc_tag] = "groovy_doc_tag", + [sym_groovy_doc_at_text] = "groovy_doc_at_text", + [anon_sym_def] = "def", + [anon_sym_this] = "this", + [anon_sym_null] = "null", + [anon_sym_LPAREN] = "(", + [anon_sym_RPAREN] = ")", + [anon_sym_do] = "do", + [anon_sym_while] = "while", + [anon_sym_for] = "for", + [anon_sym_if] = "if", + [anon_sym_else] = "else", + [anon_sym_LBRACK] = "[", + [anon_sym_RBRACK] = "]", + [anon_sym_COLON] = ":", + [aux_sym_number_literal_token1] = "number_literal_token1", + [aux_sym_number_literal_token2] = "number_literal_token2", + [aux_sym_number_literal_token3] = "number_literal_token3", + [aux_sym_number_literal_token4] = "number_literal_token4", + [aux_sym_number_literal_token5] = "number_literal_token5", + [anon_sym_pipeline] = "pipeline", + [anon_sym_return] = "return", + [anon_sym_SQUOTE] = "'", + [aux_sym__plain_string_token1] = "string_content", + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = "'''", + [aux_sym__plain_string_token2] = "string_internal_quote", + [aux_sym__plain_string_token3] = "string_content", + [aux_sym__plain_string_token4] = "_plain_string_token4", + [anon_sym_DQUOTE] = "\"", + [aux_sym__interpolate_string_token1] = "string_content", + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = "\"\"\"", + [aux_sym__interpolate_string_token2] = "string_content", + [aux_sym__interpolate_string_token3] = "_interpolate_string_token3", + [aux_sym__interpolate_string_token4] = "string_content", + [anon_sym_BSLASH_SLASH] = "escape_sequence", + [anon_sym_DOLLAR_SLASH] = "$/", + [aux_sym__interpolate_string_token5] = "string_content", + [anon_sym_DOLLAR_DOLLAR] = "escape_sequence", + [anon_sym_SLASH_DOLLAR] = "/$", + [sym_escape_sequence] = "escape_sequence", + [anon_sym_DOLLAR] = "$", + [aux_sym_interpolation_token1] = "identifier", + [anon_sym_switch] = "switch", + [anon_sym_case] = "case", + [anon_sym_default] = "default", + [anon_sym_QMARK] = "\?", + [anon_sym_try] = "try", + [anon_sym_catch] = "catch", + [anon_sym_finally] = "finally", + [anon_sym_int] = "int", + [anon_sym_boolean] = "boolean", + [anon_sym_char] = "char", + [anon_sym_short] = "short", + [anon_sym_long] = "long", + [anon_sym_float] = "float", + [anon_sym_double] = "double", + [anon_sym_void] = "void", + [anon_sym_LBRACK_RBRACK] = "[]", + [anon_sym_public] = "public", + [anon_sym_protected] = "protected", + [anon_sym_private] = "private", + [anon_sym_static] = "static", + [anon_sym_final] = "final", + [anon_sym_synchronized] = "synchronized", + [anon_sym_TILDE] = "~", + [anon_sym_BANG] = "!", + [anon_sym_new] = "new", + [sym_source_file] = "source_file", + [sym_shebang] = "shebang", + [sym__statement] = "_statement", + [sym_access_op] = "access_op", + [sym_dotted_identifier] = "dotted_identifier", + [sym_groovy_import] = "groovy_import", + [sym_groovy_package] = "groovy_package", + [sym__prefix_expression] = "_prefix_expression", + [sym_annotation] = "annotation", + [sym_assertion] = "assertion", + [sym_assignment] = "assignment", + [sym_increment_op] = "increment_op", + [sym_binary_op] = "binary_op", + [sym_boolean_literal] = "boolean_literal", + [sym_class_definition] = "class_definition", + [sym_generic_parameters] = "generic_parameters", + [sym_generic_param] = "generic_param", + [sym_closure] = "closure", + [sym_comment] = "comment", + [sym_groovy_doc] = "groovy_doc", + [sym_groovy_doc_param] = "groovy_doc_param", + [sym_groovy_doc_throws] = "groovy_doc_throws", + [sym_declaration] = "declaration", + [sym__expression] = "_expression", + [sym_do_while_loop] = "do_while_loop", + [sym_for_parameters] = "for_parameters", + [sym_for_loop] = "for_loop", + [sym_for_in_loop] = "for_in_loop", + [sym_function_call] = "function_call", + [sym_argument_list] = "argument_list", + [sym__param_list] = "parameter_list", + [sym_parameter_list] = "parameter_list", + [sym_parameter] = "parameter", + [sym_function_declaration] = "function_declaration", + [sym_function_definition] = "function_definition", + [sym_if_statement] = "if_statement", + [sym_index] = "index", + [sym_juxt_function_call] = "juxt_function_call", + [sym__juxt_function_name] = "_juxt_function_name", + [sym__juxt_argument_list] = "argument_list", + [sym_list] = "list", + [sym_map_item] = "map_item", + [sym_map] = "map", + [sym_number_literal] = "number_literal", + [sym_pipeline] = "pipeline", + [sym_return] = "return", + [sym_string] = "string", + [sym__plain_string] = "_plain_string", + [sym__interpolate_string] = "_interpolate_string", + [sym_interpolation] = "interpolation", + [sym_switch_statement] = "switch_statement", + [sym_switch_block] = "switch_block", + [sym_case] = "case", + [sym_ternary_op] = "ternary_op", + [sym_try_statement] = "try_statement", + [sym_builtintype] = "builtintype", + [sym__type] = "_type", + [sym_array_type] = "array_type", + [sym_access_modifier] = "access_modifier", + [sym_modifier] = "modifier", + [sym_type_with_generics] = "type_with_generics", + [sym_generics] = "generics", + [sym_unary_op] = "unary_op", + [sym_while_loop] = "while_loop", + [aux_sym_source_file_repeat1] = "source_file_repeat1", + [aux_sym_class_definition_repeat1] = "class_definition_repeat1", + [aux_sym_generic_parameters_repeat1] = "generic_parameters_repeat1", + [aux_sym_groovy_doc_repeat1] = "groovy_doc_repeat1", + [aux_sym_for_parameters_repeat1] = "for_parameters_repeat1", + [aux_sym_for_parameters_repeat2] = "for_parameters_repeat2", + [aux_sym_argument_list_repeat1] = "argument_list_repeat1", + [aux_sym__param_list_repeat1] = "_param_list_repeat1", + [aux_sym__juxt_argument_list_repeat1] = "_juxt_argument_list_repeat1", + [aux_sym_list_repeat1] = "list_repeat1", + [aux_sym_map_repeat1] = "map_repeat1", + [aux_sym__plain_string_repeat1] = "_plain_string_repeat1", + [aux_sym__plain_string_repeat2] = "_plain_string_repeat2", + [aux_sym__interpolate_string_repeat1] = "_interpolate_string_repeat1", + [aux_sym__interpolate_string_repeat2] = "_interpolate_string_repeat2", + [aux_sym__interpolate_string_repeat3] = "_interpolate_string_repeat3", + [aux_sym__interpolate_string_repeat4] = "_interpolate_string_repeat4", + [aux_sym_switch_block_repeat1] = "switch_block_repeat1", + [aux_sym_generics_repeat1] = "generics_repeat1", +}; + +static const TSSymbol ts_symbol_map[] = { + [ts_builtin_sym_end] = ts_builtin_sym_end, + [sym_identifier] = sym_identifier, + [anon_sym_POUND_BANG] = anon_sym_POUND_BANG, + [aux_sym_shebang_token1] = aux_sym_shebang_token1, + [anon_sym_break] = anon_sym_break, + [anon_sym_continue] = anon_sym_continue, + [anon_sym_SEMI] = anon_sym_SEMI, + [anon_sym_DOT_AMP] = anon_sym_DOT_AMP, + [anon_sym_DOT_AT] = anon_sym_DOT_AT, + [anon_sym_QMARK_DOT] = anon_sym_QMARK_DOT, + [anon_sym_STAR_DOT] = anon_sym_STAR_DOT, + [anon_sym_STAR] = anon_sym_STAR, + [anon_sym_STAR_COLON] = anon_sym_STAR_COLON, + [anon_sym_DOT] = anon_sym_DOT, + [anon_sym_import] = anon_sym_import, + [anon_sym_DOT_STAR] = anon_sym_DOT_STAR, + [anon_sym_as] = anon_sym_as, + [anon_sym_package] = anon_sym_package, + [anon_sym_AT] = anon_sym_AT, + [aux_sym_annotation_token1] = sym_identifier, + [anon_sym_assert] = anon_sym_assert, + [anon_sym_EQ] = anon_sym_EQ, + [anon_sym_STAR_STAR_EQ] = anon_sym_STAR_STAR_EQ, + [anon_sym_STAR_EQ] = anon_sym_STAR_EQ, + [anon_sym_SLASH_EQ] = anon_sym_SLASH_EQ, + [anon_sym_PERCENT_EQ] = anon_sym_PERCENT_EQ, + [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ, + [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, + [anon_sym_LT_LT_EQ] = anon_sym_LT_LT_EQ, + [anon_sym_GT_GT_EQ] = anon_sym_GT_GT_EQ, + [anon_sym_GT_GT_GT_EQ] = anon_sym_GT_GT_GT_EQ, + [anon_sym_AMP_EQ] = anon_sym_AMP_EQ, + [anon_sym_CARET_EQ] = anon_sym_CARET_EQ, + [anon_sym_PIPE_EQ] = anon_sym_PIPE_EQ, + [anon_sym_QMARK_EQ] = anon_sym_QMARK_EQ, + [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, + [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, + [anon_sym_PERCENT] = anon_sym_PERCENT, + [anon_sym_SLASH] = anon_sym_SLASH, + [anon_sym_PLUS] = anon_sym_PLUS, + [anon_sym_DASH] = anon_sym_DASH, + [anon_sym_LT_LT] = anon_sym_LT_LT, + [anon_sym_GT_GT] = anon_sym_GT_GT, + [anon_sym_GT_GT_GT] = anon_sym_GT_GT_GT, + [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, + [anon_sym_DOT_DOT_LT] = anon_sym_DOT_DOT_LT, + [anon_sym_LT_DOT_DOT_LT] = anon_sym_LT_DOT_DOT_LT, + [anon_sym_LT_DOT_DOT] = anon_sym_LT_DOT_DOT, + [anon_sym_LT] = anon_sym_LT, + [anon_sym_LT_EQ] = anon_sym_LT_EQ, + [anon_sym_GT] = anon_sym_GT, + [anon_sym_GT_EQ] = anon_sym_GT_EQ, + [anon_sym_in] = anon_sym_in, + [anon_sym_BANGin] = anon_sym_BANGin, + [anon_sym_instanceof] = anon_sym_instanceof, + [anon_sym_BANGinstanceof] = anon_sym_BANGinstanceof, + [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, + [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, + [anon_sym_LT_EQ_GT] = anon_sym_LT_EQ_GT, + [anon_sym_EQ_EQ_EQ] = anon_sym_EQ_EQ_EQ, + [anon_sym_BANG_EQ_EQ] = anon_sym_BANG_EQ_EQ, + [anon_sym_EQ_TILDE] = anon_sym_EQ_TILDE, + [anon_sym_EQ_EQ_TILDE] = anon_sym_EQ_EQ_TILDE, + [anon_sym_AMP] = anon_sym_AMP, + [anon_sym_CARET] = anon_sym_CARET, + [anon_sym_PIPE] = anon_sym_PIPE, + [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, + [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, + [anon_sym_QMARK_COLON] = anon_sym_QMARK_COLON, + [anon_sym_STAR_STAR] = anon_sym_STAR_STAR, + [anon_sym_true] = anon_sym_true, + [anon_sym_false] = anon_sym_false, + [anon_sym_ATinterface] = anon_sym_ATinterface, + [anon_sym_interface] = anon_sym_interface, + [anon_sym_class] = anon_sym_class, + [anon_sym_extends] = anon_sym_extends, + [anon_sym_COMMA] = anon_sym_COMMA, + [anon_sym_LBRACE] = anon_sym_LBRACE, + [anon_sym_DASH_GT] = anon_sym_DASH_GT, + [anon_sym_RBRACE] = anon_sym_RBRACE, + [aux_sym_comment_token1] = aux_sym_comment_token1, + [anon_sym_SLASH_STAR] = anon_sym_SLASH_STAR, + [aux_sym_comment_token2] = aux_sym_comment_token2, + [anon_sym_SLASH_STAR_STAR] = anon_sym_SLASH_STAR_STAR, + [aux_sym_groovy_doc_token1] = aux_sym_groovy_doc_token1, + [aux_sym_groovy_doc_token2] = aux_sym_groovy_doc_token2, + [aux_sym_groovy_doc_token3] = aux_sym_groovy_doc_token3, + [anon_sym_STAR_SLASH] = anon_sym_STAR_SLASH, + [anon_sym_ATparam] = anon_sym_ATparam, + [anon_sym_ATthrows] = anon_sym_ATthrows, + [sym_groovy_doc_tag] = sym_groovy_doc_tag, + [sym_groovy_doc_at_text] = sym_groovy_doc_at_text, + [anon_sym_def] = anon_sym_def, + [anon_sym_this] = anon_sym_this, + [anon_sym_null] = anon_sym_null, + [anon_sym_LPAREN] = anon_sym_LPAREN, + [anon_sym_RPAREN] = anon_sym_RPAREN, + [anon_sym_do] = anon_sym_do, + [anon_sym_while] = anon_sym_while, + [anon_sym_for] = anon_sym_for, + [anon_sym_if] = anon_sym_if, + [anon_sym_else] = anon_sym_else, + [anon_sym_LBRACK] = anon_sym_LBRACK, + [anon_sym_RBRACK] = anon_sym_RBRACK, + [anon_sym_COLON] = anon_sym_COLON, + [aux_sym_number_literal_token1] = aux_sym_number_literal_token1, + [aux_sym_number_literal_token2] = aux_sym_number_literal_token2, + [aux_sym_number_literal_token3] = aux_sym_number_literal_token3, + [aux_sym_number_literal_token4] = aux_sym_number_literal_token4, + [aux_sym_number_literal_token5] = aux_sym_number_literal_token5, + [anon_sym_pipeline] = anon_sym_pipeline, + [anon_sym_return] = anon_sym_return, + [anon_sym_SQUOTE] = anon_sym_SQUOTE, + [aux_sym__plain_string_token1] = aux_sym__plain_string_token1, + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = anon_sym_SQUOTE_SQUOTE_SQUOTE, + [aux_sym__plain_string_token2] = aux_sym__plain_string_token2, + [aux_sym__plain_string_token3] = aux_sym__plain_string_token1, + [aux_sym__plain_string_token4] = aux_sym__plain_string_token4, + [anon_sym_DQUOTE] = anon_sym_DQUOTE, + [aux_sym__interpolate_string_token1] = aux_sym__plain_string_token1, + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = anon_sym_DQUOTE_DQUOTE_DQUOTE, + [aux_sym__interpolate_string_token2] = aux_sym__plain_string_token1, + [aux_sym__interpolate_string_token3] = aux_sym__interpolate_string_token3, + [aux_sym__interpolate_string_token4] = aux_sym__plain_string_token1, + [anon_sym_BSLASH_SLASH] = sym_escape_sequence, + [anon_sym_DOLLAR_SLASH] = anon_sym_DOLLAR_SLASH, + [aux_sym__interpolate_string_token5] = aux_sym__plain_string_token1, + [anon_sym_DOLLAR_DOLLAR] = sym_escape_sequence, + [anon_sym_SLASH_DOLLAR] = anon_sym_SLASH_DOLLAR, + [sym_escape_sequence] = sym_escape_sequence, + [anon_sym_DOLLAR] = anon_sym_DOLLAR, + [aux_sym_interpolation_token1] = sym_identifier, + [anon_sym_switch] = anon_sym_switch, + [anon_sym_case] = anon_sym_case, + [anon_sym_default] = anon_sym_default, + [anon_sym_QMARK] = anon_sym_QMARK, + [anon_sym_try] = anon_sym_try, + [anon_sym_catch] = anon_sym_catch, + [anon_sym_finally] = anon_sym_finally, + [anon_sym_int] = anon_sym_int, + [anon_sym_boolean] = anon_sym_boolean, + [anon_sym_char] = anon_sym_char, + [anon_sym_short] = anon_sym_short, + [anon_sym_long] = anon_sym_long, + [anon_sym_float] = anon_sym_float, + [anon_sym_double] = anon_sym_double, + [anon_sym_void] = anon_sym_void, + [anon_sym_LBRACK_RBRACK] = anon_sym_LBRACK_RBRACK, + [anon_sym_public] = anon_sym_public, + [anon_sym_protected] = anon_sym_protected, + [anon_sym_private] = anon_sym_private, + [anon_sym_static] = anon_sym_static, + [anon_sym_final] = anon_sym_final, + [anon_sym_synchronized] = anon_sym_synchronized, + [anon_sym_TILDE] = anon_sym_TILDE, + [anon_sym_BANG] = anon_sym_BANG, + [anon_sym_new] = anon_sym_new, + [sym_source_file] = sym_source_file, + [sym_shebang] = sym_shebang, + [sym__statement] = sym__statement, + [sym_access_op] = sym_access_op, + [sym_dotted_identifier] = sym_dotted_identifier, + [sym_groovy_import] = sym_groovy_import, + [sym_groovy_package] = sym_groovy_package, + [sym__prefix_expression] = sym__prefix_expression, + [sym_annotation] = sym_annotation, + [sym_assertion] = sym_assertion, + [sym_assignment] = sym_assignment, + [sym_increment_op] = sym_increment_op, + [sym_binary_op] = sym_binary_op, + [sym_boolean_literal] = sym_boolean_literal, + [sym_class_definition] = sym_class_definition, + [sym_generic_parameters] = sym_generic_parameters, + [sym_generic_param] = sym_generic_param, + [sym_closure] = sym_closure, + [sym_comment] = sym_comment, + [sym_groovy_doc] = sym_groovy_doc, + [sym_groovy_doc_param] = sym_groovy_doc_param, + [sym_groovy_doc_throws] = sym_groovy_doc_throws, + [sym_declaration] = sym_declaration, + [sym__expression] = sym__expression, + [sym_do_while_loop] = sym_do_while_loop, + [sym_for_parameters] = sym_for_parameters, + [sym_for_loop] = sym_for_loop, + [sym_for_in_loop] = sym_for_in_loop, + [sym_function_call] = sym_function_call, + [sym_argument_list] = sym_argument_list, + [sym__param_list] = sym_parameter_list, + [sym_parameter_list] = sym_parameter_list, + [sym_parameter] = sym_parameter, + [sym_function_declaration] = sym_function_declaration, + [sym_function_definition] = sym_function_definition, + [sym_if_statement] = sym_if_statement, + [sym_index] = sym_index, + [sym_juxt_function_call] = sym_juxt_function_call, + [sym__juxt_function_name] = sym__juxt_function_name, + [sym__juxt_argument_list] = sym_argument_list, + [sym_list] = sym_list, + [sym_map_item] = sym_map_item, + [sym_map] = sym_map, + [sym_number_literal] = sym_number_literal, + [sym_pipeline] = sym_pipeline, + [sym_return] = sym_return, + [sym_string] = sym_string, + [sym__plain_string] = sym__plain_string, + [sym__interpolate_string] = sym__interpolate_string, + [sym_interpolation] = sym_interpolation, + [sym_switch_statement] = sym_switch_statement, + [sym_switch_block] = sym_switch_block, + [sym_case] = sym_case, + [sym_ternary_op] = sym_ternary_op, + [sym_try_statement] = sym_try_statement, + [sym_builtintype] = sym_builtintype, + [sym__type] = sym__type, + [sym_array_type] = sym_array_type, + [sym_access_modifier] = sym_access_modifier, + [sym_modifier] = sym_modifier, + [sym_type_with_generics] = sym_type_with_generics, + [sym_generics] = sym_generics, + [sym_unary_op] = sym_unary_op, + [sym_while_loop] = sym_while_loop, + [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, + [aux_sym_class_definition_repeat1] = aux_sym_class_definition_repeat1, + [aux_sym_generic_parameters_repeat1] = aux_sym_generic_parameters_repeat1, + [aux_sym_groovy_doc_repeat1] = aux_sym_groovy_doc_repeat1, + [aux_sym_for_parameters_repeat1] = aux_sym_for_parameters_repeat1, + [aux_sym_for_parameters_repeat2] = aux_sym_for_parameters_repeat2, + [aux_sym_argument_list_repeat1] = aux_sym_argument_list_repeat1, + [aux_sym__param_list_repeat1] = aux_sym__param_list_repeat1, + [aux_sym__juxt_argument_list_repeat1] = aux_sym__juxt_argument_list_repeat1, + [aux_sym_list_repeat1] = aux_sym_list_repeat1, + [aux_sym_map_repeat1] = aux_sym_map_repeat1, + [aux_sym__plain_string_repeat1] = aux_sym__plain_string_repeat1, + [aux_sym__plain_string_repeat2] = aux_sym__plain_string_repeat2, + [aux_sym__interpolate_string_repeat1] = aux_sym__interpolate_string_repeat1, + [aux_sym__interpolate_string_repeat2] = aux_sym__interpolate_string_repeat2, + [aux_sym__interpolate_string_repeat3] = aux_sym__interpolate_string_repeat3, + [aux_sym__interpolate_string_repeat4] = aux_sym__interpolate_string_repeat4, + [aux_sym_switch_block_repeat1] = aux_sym_switch_block_repeat1, + [aux_sym_generics_repeat1] = aux_sym_generics_repeat1, +}; + +static const TSSymbolMetadata ts_symbol_metadata[] = { + [ts_builtin_sym_end] = { + .visible = false, + .named = true, + }, + [sym_identifier] = { + .visible = true, + .named = true, + }, + [anon_sym_POUND_BANG] = { + .visible = true, + .named = false, + }, + [aux_sym_shebang_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_break] = { + .visible = true, + .named = true, + }, + [anon_sym_continue] = { + .visible = true, + .named = true, + }, + [anon_sym_SEMI] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT_AT] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_import] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_as] = { + .visible = true, + .named = false, + }, + [anon_sym_package] = { + .visible = true, + .named = false, + }, + [anon_sym_AT] = { + .visible = true, + .named = false, + }, + [aux_sym_annotation_token1] = { + .visible = true, + .named = true, + }, + [anon_sym_assert] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_STAR_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT_DOT_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_DOT_DOT_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_DOT_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_in] = { + .visible = true, + .named = false, + }, + [anon_sym_BANGin] = { + .visible = true, + .named = false, + }, + [anon_sym_instanceof] = { + .visible = true, + .named = false, + }, + [anon_sym_BANGinstanceof] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_EQ_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_EQ_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG_EQ_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_TILDE] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_EQ_TILDE] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_true] = { + .visible = true, + .named = false, + }, + [anon_sym_false] = { + .visible = true, + .named = false, + }, + [anon_sym_ATinterface] = { + .visible = true, + .named = false, + }, + [anon_sym_interface] = { + .visible = true, + .named = false, + }, + [anon_sym_class] = { + .visible = true, + .named = false, + }, + [anon_sym_extends] = { + .visible = true, + .named = false, + }, + [anon_sym_COMMA] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACE] = { + .visible = true, + .named = false, + }, + [aux_sym_comment_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_SLASH_STAR] = { + .visible = true, + .named = false, + }, + [aux_sym_comment_token2] = { + .visible = false, + .named = false, + }, + [anon_sym_SLASH_STAR_STAR] = { + .visible = true, + .named = false, + }, + [aux_sym_groovy_doc_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_groovy_doc_token2] = { + .visible = true, + .named = true, + }, + [aux_sym_groovy_doc_token3] = { + .visible = false, + .named = false, + }, + [anon_sym_STAR_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_ATparam] = { + .visible = true, + .named = false, + }, + [anon_sym_ATthrows] = { + .visible = true, + .named = false, + }, + [sym_groovy_doc_tag] = { + .visible = true, + .named = true, + }, + [sym_groovy_doc_at_text] = { + .visible = true, + .named = true, + }, + [anon_sym_def] = { + .visible = true, + .named = false, + }, + [anon_sym_this] = { + .visible = true, + .named = false, + }, + [anon_sym_null] = { + .visible = true, + .named = true, + }, + [anon_sym_LPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_RPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_do] = { + .visible = true, + .named = false, + }, + [anon_sym_while] = { + .visible = true, + .named = false, + }, + [anon_sym_for] = { + .visible = true, + .named = false, + }, + [anon_sym_if] = { + .visible = true, + .named = false, + }, + [anon_sym_else] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON] = { + .visible = true, + .named = false, + }, + [aux_sym_number_literal_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_number_literal_token2] = { + .visible = false, + .named = false, + }, + [aux_sym_number_literal_token3] = { + .visible = false, + .named = false, + }, + [aux_sym_number_literal_token4] = { + .visible = false, + .named = false, + }, + [aux_sym_number_literal_token5] = { + .visible = false, + .named = false, + }, + [anon_sym_pipeline] = { + .visible = true, + .named = false, + }, + [anon_sym_return] = { + .visible = true, + .named = false, + }, + [anon_sym_SQUOTE] = { + .visible = true, + .named = false, + }, + [aux_sym__plain_string_token1] = { + .visible = true, + .named = true, + }, + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = { + .visible = true, + .named = false, + }, + [aux_sym__plain_string_token2] = { + .visible = true, + .named = true, + }, + [aux_sym__plain_string_token3] = { + .visible = true, + .named = true, + }, + [aux_sym__plain_string_token4] = { + .visible = false, + .named = false, + }, + [anon_sym_DQUOTE] = { + .visible = true, + .named = false, + }, + [aux_sym__interpolate_string_token1] = { + .visible = true, + .named = true, + }, + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = { + .visible = true, + .named = false, + }, + [aux_sym__interpolate_string_token2] = { + .visible = true, + .named = true, + }, + [aux_sym__interpolate_string_token3] = { + .visible = false, + .named = false, + }, + [aux_sym__interpolate_string_token4] = { + .visible = true, + .named = true, + }, + [anon_sym_BSLASH_SLASH] = { + .visible = true, + .named = true, + }, + [anon_sym_DOLLAR_SLASH] = { + .visible = true, + .named = false, + }, + [aux_sym__interpolate_string_token5] = { + .visible = true, + .named = true, + }, + [anon_sym_DOLLAR_DOLLAR] = { + .visible = true, + .named = true, + }, + [anon_sym_SLASH_DOLLAR] = { + .visible = true, + .named = false, + }, + [sym_escape_sequence] = { + .visible = true, + .named = true, + }, + [anon_sym_DOLLAR] = { + .visible = true, + .named = false, + }, + [aux_sym_interpolation_token1] = { + .visible = true, + .named = true, + }, + [anon_sym_switch] = { + .visible = true, + .named = false, + }, + [anon_sym_case] = { + .visible = true, + .named = false, + }, + [anon_sym_default] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK] = { + .visible = true, + .named = false, + }, + [anon_sym_try] = { + .visible = true, + .named = false, + }, + [anon_sym_catch] = { + .visible = true, + .named = false, + }, + [anon_sym_finally] = { + .visible = true, + .named = false, + }, + [anon_sym_int] = { + .visible = true, + .named = false, + }, + [anon_sym_boolean] = { + .visible = true, + .named = false, + }, + [anon_sym_char] = { + .visible = true, + .named = false, + }, + [anon_sym_short] = { + .visible = true, + .named = false, + }, + [anon_sym_long] = { + .visible = true, + .named = false, + }, + [anon_sym_float] = { + .visible = true, + .named = false, + }, + [anon_sym_double] = { + .visible = true, + .named = false, + }, + [anon_sym_void] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACK_RBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_public] = { + .visible = true, + .named = false, + }, + [anon_sym_protected] = { + .visible = true, + .named = false, + }, + [anon_sym_private] = { + .visible = true, + .named = false, + }, + [anon_sym_static] = { + .visible = true, + .named = false, + }, + [anon_sym_final] = { + .visible = true, + .named = false, + }, + [anon_sym_synchronized] = { + .visible = true, + .named = false, + }, + [anon_sym_TILDE] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG] = { + .visible = true, + .named = false, + }, + [anon_sym_new] = { + .visible = true, + .named = false, + }, + [sym_source_file] = { + .visible = true, + .named = true, + }, + [sym_shebang] = { + .visible = true, + .named = true, + }, + [sym__statement] = { + .visible = false, + .named = true, + }, + [sym_access_op] = { + .visible = true, + .named = true, + }, + [sym_dotted_identifier] = { + .visible = true, + .named = true, + }, + [sym_groovy_import] = { + .visible = true, + .named = true, + }, + [sym_groovy_package] = { + .visible = true, + .named = true, + }, + [sym__prefix_expression] = { + .visible = false, + .named = true, + }, + [sym_annotation] = { + .visible = true, + .named = true, + }, + [sym_assertion] = { + .visible = true, + .named = true, + }, + [sym_assignment] = { + .visible = true, + .named = true, + }, + [sym_increment_op] = { + .visible = true, + .named = true, + }, + [sym_binary_op] = { + .visible = true, + .named = true, + }, + [sym_boolean_literal] = { + .visible = true, + .named = true, + }, + [sym_class_definition] = { + .visible = true, + .named = true, + }, + [sym_generic_parameters] = { + .visible = true, + .named = true, + }, + [sym_generic_param] = { + .visible = true, + .named = true, + }, + [sym_closure] = { + .visible = true, + .named = true, + }, + [sym_comment] = { + .visible = true, + .named = true, + }, + [sym_groovy_doc] = { + .visible = true, + .named = true, + }, + [sym_groovy_doc_param] = { + .visible = true, + .named = true, + }, + [sym_groovy_doc_throws] = { + .visible = true, + .named = true, + }, + [sym_declaration] = { + .visible = true, + .named = true, + }, + [sym__expression] = { + .visible = false, + .named = true, + }, + [sym_do_while_loop] = { + .visible = true, + .named = true, + }, + [sym_for_parameters] = { + .visible = true, + .named = true, + }, + [sym_for_loop] = { + .visible = true, + .named = true, + }, + [sym_for_in_loop] = { + .visible = true, + .named = true, + }, + [sym_function_call] = { + .visible = true, + .named = true, + }, + [sym_argument_list] = { + .visible = true, + .named = true, + }, + [sym__param_list] = { + .visible = true, + .named = true, + }, + [sym_parameter_list] = { + .visible = true, + .named = true, + }, + [sym_parameter] = { + .visible = true, + .named = true, + }, + [sym_function_declaration] = { + .visible = true, + .named = true, + }, + [sym_function_definition] = { + .visible = true, + .named = true, + }, + [sym_if_statement] = { + .visible = true, + .named = true, + }, + [sym_index] = { + .visible = true, + .named = true, + }, + [sym_juxt_function_call] = { + .visible = true, + .named = true, + }, + [sym__juxt_function_name] = { + .visible = false, + .named = true, + }, + [sym__juxt_argument_list] = { + .visible = true, + .named = true, + }, + [sym_list] = { + .visible = true, + .named = true, + }, + [sym_map_item] = { + .visible = true, + .named = true, + }, + [sym_map] = { + .visible = true, + .named = true, + }, + [sym_number_literal] = { + .visible = true, + .named = true, + }, + [sym_pipeline] = { + .visible = true, + .named = true, + }, + [sym_return] = { + .visible = true, + .named = true, + }, + [sym_string] = { + .visible = true, + .named = true, + }, + [sym__plain_string] = { + .visible = false, + .named = true, + }, + [sym__interpolate_string] = { + .visible = false, + .named = true, + }, + [sym_interpolation] = { + .visible = true, + .named = true, + }, + [sym_switch_statement] = { + .visible = true, + .named = true, + }, + [sym_switch_block] = { + .visible = true, + .named = true, + }, + [sym_case] = { + .visible = true, + .named = true, + }, + [sym_ternary_op] = { + .visible = true, + .named = true, + }, + [sym_try_statement] = { + .visible = true, + .named = true, + }, + [sym_builtintype] = { + .visible = true, + .named = true, + }, + [sym__type] = { + .visible = false, + .named = true, + }, + [sym_array_type] = { + .visible = true, + .named = true, + }, + [sym_access_modifier] = { + .visible = true, + .named = true, + }, + [sym_modifier] = { + .visible = true, + .named = true, + }, + [sym_type_with_generics] = { + .visible = true, + .named = true, + }, + [sym_generics] = { + .visible = true, + .named = true, + }, + [sym_unary_op] = { + .visible = true, + .named = true, + }, + [sym_while_loop] = { + .visible = true, + .named = true, + }, + [aux_sym_source_file_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_class_definition_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_generic_parameters_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_groovy_doc_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_for_parameters_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_for_parameters_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_argument_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__param_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__juxt_argument_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_map_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__plain_string_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__plain_string_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym__interpolate_string_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__interpolate_string_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym__interpolate_string_repeat3] = { + .visible = false, + .named = false, + }, + [aux_sym__interpolate_string_repeat4] = { + .visible = false, + .named = false, + }, + [aux_sym_switch_block_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_generics_repeat1] = { + .visible = false, + .named = false, + }, +}; + +enum { + field_args = 1, + field_body = 2, + field_catch_body = 3, + field_catch_exception = 4, + field_collection = 5, + field_condition = 6, + field_else = 7, + field_else_body = 8, + field_finally_body = 9, + field_function = 10, + field_generics = 11, + field_import = 12, + field_import_alias = 13, + field_increment = 14, + field_initializer = 15, + field_key = 16, + field_name = 17, + field_parameters = 18, + field_superclass = 19, + field_then = 20, + field_type = 21, + field_value = 22, + field_variable = 23, +}; + +static const char * const ts_field_names[] = { + [0] = NULL, + [field_args] = "args", + [field_body] = "body", + [field_catch_body] = "catch_body", + [field_catch_exception] = "catch_exception", + [field_collection] = "collection", + [field_condition] = "condition", + [field_else] = "else", + [field_else_body] = "else_body", + [field_finally_body] = "finally_body", + [field_function] = "function", + [field_generics] = "generics", + [field_import] = "import", + [field_import_alias] = "import_alias", + [field_increment] = "increment", + [field_initializer] = "initializer", + [field_key] = "key", + [field_name] = "name", + [field_parameters] = "parameters", + [field_superclass] = "superclass", + [field_then] = "then", + [field_type] = "type", + [field_value] = "value", + [field_variable] = "variable", +}; + +static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { + [1] = {.index = 0, .length = 1}, + [2] = {.index = 1, .length = 1}, + [3] = {.index = 2, .length = 1}, + [5] = {.index = 3, .length = 1}, + [6] = {.index = 4, .length = 2}, + [7] = {.index = 6, .length = 2}, + [8] = {.index = 8, .length = 2}, + [9] = {.index = 10, .length = 1}, + [10] = {.index = 11, .length = 2}, + [11] = {.index = 13, .length = 3}, + [12] = {.index = 16, .length = 1}, + [13] = {.index = 17, .length = 1}, + [14] = {.index = 18, .length = 2}, + [15] = {.index = 20, .length = 2}, + [16] = {.index = 22, .length = 2}, + [17] = {.index = 24, .length = 3}, + [18] = {.index = 27, .length = 2}, + [19] = {.index = 29, .length = 2}, + [20] = {.index = 31, .length = 4}, + [21] = {.index = 35, .length = 2}, + [22] = {.index = 37, .length = 2}, + [23] = {.index = 39, .length = 3}, + [24] = {.index = 42, .length = 1}, + [25] = {.index = 43, .length = 2}, + [26] = {.index = 45, .length = 2}, + [27] = {.index = 47, .length = 3}, + [28] = {.index = 50, .length = 3}, + [29] = {.index = 53, .length = 2}, + [30] = {.index = 55, .length = 3}, + [31] = {.index = 58, .length = 2}, + [32] = {.index = 60, .length = 2}, + [33] = {.index = 62, .length = 3}, + [34] = {.index = 65, .length = 2}, + [35] = {.index = 67, .length = 4}, + [36] = {.index = 71, .length = 3}, + [37] = {.index = 74, .length = 2}, + [38] = {.index = 76, .length = 3}, + [39] = {.index = 79, .length = 1}, + [40] = {.index = 80, .length = 2}, + [41] = {.index = 82, .length = 3}, + [42] = {.index = 85, .length = 3}, + [43] = {.index = 88, .length = 2}, + [44] = {.index = 90, .length = 4}, + [45] = {.index = 94, .length = 2}, + [46] = {.index = 96, .length = 1}, + [47] = {.index = 97, .length = 1}, + [48] = {.index = 98, .length = 1}, + [49] = {.index = 99, .length = 3}, + [50] = {.index = 102, .length = 3}, + [51] = {.index = 105, .length = 2}, + [52] = {.index = 107, .length = 4}, + [53] = {.index = 111, .length = 3}, + [54] = {.index = 114, .length = 2}, + [55] = {.index = 116, .length = 3}, + [56] = {.index = 119, .length = 4}, + [57] = {.index = 123, .length = 2}, + [58] = {.index = 125, .length = 2}, + [59] = {.index = 127, .length = 3}, + [60] = {.index = 130, .length = 2}, + [61] = {.index = 132, .length = 2}, + [62] = {.index = 134, .length = 2}, + [63] = {.index = 136, .length = 3}, + [64] = {.index = 139, .length = 3}, + [65] = {.index = 142, .length = 4}, + [66] = {.index = 146, .length = 3}, + [67] = {.index = 149, .length = 3}, + [68] = {.index = 152, .length = 2}, + [69] = {.index = 154, .length = 4}, + [70] = {.index = 158, .length = 3}, + [71] = {.index = 161, .length = 3}, + [72] = {.index = 164, .length = 3}, + [73] = {.index = 167, .length = 3}, + [74] = {.index = 170, .length = 3}, + [75] = {.index = 173, .length = 3}, + [76] = {.index = 176, .length = 1}, + [77] = {.index = 177, .length = 4}, + [78] = {.index = 181, .length = 3}, + [79] = {.index = 184, .length = 4}, + [80] = {.index = 188, .length = 4}, + [81] = {.index = 192, .length = 4}, + [82] = {.index = 196, .length = 4}, + [83] = {.index = 200, .length = 4}, + [84] = {.index = 204, .length = 5}, +}; + +static const TSFieldMapEntry ts_field_map_entries[] = { + [0] = + {field_import, 1}, + [1] = + {field_name, 0}, + [2] = + {field_name, 1}, + [3] = + {field_body, 1}, + [4] = + {field_args, 1}, + {field_function, 0}, + [6] = + {field_name, 1}, + {field_type, 0}, + [8] = + {field_import, 1}, + {field_import, 2}, + [10] = + {field_import, 2}, + [11] = + {field_body, 2}, + {field_name, 1}, + [13] = + {field_function, 1}, + {field_parameters, 2}, + {field_type, 0}, + [16] = + {field_body, 2}, + [17] = + {field_name, 2}, + [18] = + {field_name, 2}, + {field_type, 1}, + [20] = + {field_import, 1}, + {field_import_alias, 3}, + [22] = + {field_import, 2}, + {field_import, 3}, + [24] = + {field_body, 3}, + {field_generics, 2}, + {field_name, 1}, + [27] = + {field_name, 0}, + {field_value, 2}, + [29] = + {field_name, 1}, + {field_value, 3}, + [31] = + {field_body, 3}, + {field_function, 1}, + {field_parameters, 2}, + {field_type, 0}, + [35] = + {field_body, 1}, + {field_finally_body, 3}, + [37] = + {field_body, 3}, + {field_name, 2}, + [39] = + {field_function, 2}, + {field_parameters, 3}, + {field_type, 1}, + [42] = + {field_name, 3}, + [43] = + {field_name, 3}, + {field_type, 2}, + [45] = + {field_key, 0}, + {field_value, 2}, + [47] = + {field_name, 1}, + {field_type, 0}, + {field_value, 3}, + [50] = + {field_import, 1}, + {field_import, 2}, + {field_import_alias, 4}, + [53] = + {field_import, 2}, + {field_import_alias, 4}, + [55] = + {field_body, 4}, + {field_name, 1}, + {field_superclass, 3}, + [58] = + {field_body, 4}, + {field_condition, 2}, + [60] = + {field_body, 4}, + {field_value, 2}, + [62] = + {field_body, 4}, + {field_generics, 3}, + {field_name, 2}, + [65] = + {field_name, 2}, + {field_value, 4}, + [67] = + {field_body, 4}, + {field_function, 2}, + {field_parameters, 3}, + {field_type, 1}, + [71] = + {field_name, 2}, + {field_type, 1}, + {field_value, 4}, + [74] = + {field_body, 4}, + {field_name, 3}, + [76] = + {field_function, 3}, + {field_parameters, 4}, + {field_type, 2}, + [79] = + {field_name, 4}, + [80] = + {field_name, 4}, + {field_type, 3}, + [82] = + {field_import, 2}, + {field_import, 3}, + {field_import_alias, 5}, + [85] = + {field_condition, 0}, + {field_else, 4}, + {field_then, 2}, + [88] = + {field_name, 0}, + {field_superclass, 2}, + [90] = + {field_body, 5}, + {field_generics, 2}, + {field_name, 1}, + {field_superclass, 4}, + [94] = + {field_body, 1}, + {field_condition, 4}, + [96] = + {field_increment, 3}, + [97] = + {field_condition, 2}, + [98] = + {field_initializer, 1}, + [99] = + {field_body, 5}, + {field_name, 2}, + {field_superclass, 4}, + [102] = + {field_body, 5}, + {field_generics, 4}, + {field_name, 3}, + [105] = + {field_name, 3}, + {field_value, 5}, + [107] = + {field_body, 5}, + {field_function, 3}, + {field_parameters, 4}, + {field_type, 2}, + [111] = + {field_name, 3}, + {field_type, 2}, + {field_value, 5}, + [114] = + {field_body, 5}, + {field_name, 4}, + [116] = + {field_function, 4}, + {field_parameters, 5}, + {field_type, 3}, + [119] = + {field_key, 0}, + {field_key, 1}, + {field_key, 2}, + {field_value, 4}, + [123] = + {field_increment, 3}, + {field_increment, 4}, + [125] = + {field_condition, 2}, + {field_increment, 4}, + [127] = + {field_body, 6}, + {field_collection, 4}, + {field_variable, 2}, + [130] = + {field_increment, 4}, + {field_initializer, 1}, + [132] = + {field_condition, 3}, + {field_initializer, 1}, + [134] = + {field_initializer, 1}, + {field_initializer, 2}, + [136] = + {field_body, 4}, + {field_condition, 2}, + {field_else_body, 6}, + [139] = + {field_body, 1}, + {field_catch_body, 6}, + {field_catch_exception, 4}, + [142] = + {field_body, 6}, + {field_generics, 3}, + {field_name, 2}, + {field_superclass, 5}, + [146] = + {field_body, 6}, + {field_name, 3}, + {field_superclass, 5}, + [149] = + {field_body, 6}, + {field_generics, 5}, + {field_name, 4}, + [152] = + {field_name, 4}, + {field_value, 6}, + [154] = + {field_body, 6}, + {field_function, 4}, + {field_parameters, 5}, + {field_type, 3}, + [158] = + {field_name, 4}, + {field_type, 3}, + {field_value, 6}, + [161] = + {field_condition, 2}, + {field_increment, 4}, + {field_increment, 5}, + [164] = + {field_increment, 4}, + {field_increment, 5}, + {field_initializer, 1}, + [167] = + {field_condition, 3}, + {field_increment, 5}, + {field_initializer, 1}, + [170] = + {field_increment, 5}, + {field_initializer, 1}, + {field_initializer, 2}, + [173] = + {field_condition, 4}, + {field_initializer, 1}, + {field_initializer, 2}, + [176] = + {field_value, 1}, + [177] = + {field_body, 7}, + {field_generics, 4}, + {field_name, 3}, + {field_superclass, 6}, + [181] = + {field_body, 7}, + {field_name, 4}, + {field_superclass, 6}, + [184] = + {field_condition, 3}, + {field_increment, 5}, + {field_increment, 6}, + {field_initializer, 1}, + [188] = + {field_increment, 5}, + {field_increment, 6}, + {field_initializer, 1}, + {field_initializer, 2}, + [192] = + {field_condition, 4}, + {field_increment, 6}, + {field_initializer, 1}, + {field_initializer, 2}, + [196] = + {field_body, 1}, + {field_catch_body, 6}, + {field_catch_exception, 4}, + {field_finally_body, 8}, + [200] = + {field_body, 8}, + {field_generics, 5}, + {field_name, 4}, + {field_superclass, 7}, + [204] = + {field_condition, 4}, + {field_increment, 6}, + {field_increment, 7}, + {field_initializer, 1}, + {field_initializer, 2}, +}; + +static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { + [0] = {0}, + [4] = { + [0] = sym_escape_sequence, + }, +}; + +static const uint16_t ts_non_terminal_alias_map[] = { + 0, +}; + +static const TSStateId ts_primary_state_ids[STATE_COUNT] = { + [0] = 0, + [1] = 1, + [2] = 2, + [3] = 3, + [4] = 4, + [5] = 5, + [6] = 6, + [7] = 7, + [8] = 8, + [9] = 8, + [10] = 8, + [11] = 8, + [12] = 8, + [13] = 8, + [14] = 8, + [15] = 8, + [16] = 8, + [17] = 17, + [18] = 18, + [19] = 17, + [20] = 20, + [21] = 21, + [22] = 17, + [23] = 20, + [24] = 21, + [25] = 17, + [26] = 18, + [27] = 20, + [28] = 28, + [29] = 17, + [30] = 28, + [31] = 28, + [32] = 18, + [33] = 20, + [34] = 21, + [35] = 18, + [36] = 21, + [37] = 28, + [38] = 20, + [39] = 17, + [40] = 28, + [41] = 17, + [42] = 20, + [43] = 21, + [44] = 18, + [45] = 20, + [46] = 18, + [47] = 21, + [48] = 28, + [49] = 28, + [50] = 18, + [51] = 28, + [52] = 21, + [53] = 20, + [54] = 18, + [55] = 17, + [56] = 18, + [57] = 28, + [58] = 20, + [59] = 21, + [60] = 17, + [61] = 21, + [62] = 62, + [63] = 63, + [64] = 64, + [65] = 65, + [66] = 66, + [67] = 67, + [68] = 68, + [69] = 69, + [70] = 3, + [71] = 71, + [72] = 5, + [73] = 73, + [74] = 6, + [75] = 75, + [76] = 76, + [77] = 2, + [78] = 78, + [79] = 79, + [80] = 80, + [81] = 4, + [82] = 63, + [83] = 83, + [84] = 84, + [85] = 85, + [86] = 86, + [87] = 87, + [88] = 3, + [89] = 66, + [90] = 90, + [91] = 91, + [92] = 92, + [93] = 93, + [94] = 94, + [95] = 95, + [96] = 62, + [97] = 97, + [98] = 68, + [99] = 99, + [100] = 100, + [101] = 101, + [102] = 102, + [103] = 103, + [104] = 104, + [105] = 5, + [106] = 106, + [107] = 107, + [108] = 108, + [109] = 6, + [110] = 110, + [111] = 111, + [112] = 112, + [113] = 113, + [114] = 67, + [115] = 115, + [116] = 116, + [117] = 117, + [118] = 118, + [119] = 119, + [120] = 65, + [121] = 80, + [122] = 122, + [123] = 123, + [124] = 124, + [125] = 125, + [126] = 73, + [127] = 127, + [128] = 78, + [129] = 79, + [130] = 2, + [131] = 64, + [132] = 76, + [133] = 133, + [134] = 4, + [135] = 101, + [136] = 94, + [137] = 113, + [138] = 125, + [139] = 115, + [140] = 99, + [141] = 84, + [142] = 124, + [143] = 133, + [144] = 119, + [145] = 86, + [146] = 146, + [147] = 116, + [148] = 106, + [149] = 104, + [150] = 108, + [151] = 92, + [152] = 71, + [153] = 90, + [154] = 118, + [155] = 155, + [156] = 97, + [157] = 157, + [158] = 83, + [159] = 159, + [160] = 85, + [161] = 103, + [162] = 102, + [163] = 110, + [164] = 111, + [165] = 165, + [166] = 95, + [167] = 112, + [168] = 107, + [169] = 169, + [170] = 75, + [171] = 171, + [172] = 172, + [173] = 173, + [174] = 174, + [175] = 175, + [176] = 117, + [177] = 69, + [178] = 122, + [179] = 100, + [180] = 123, + [181] = 127, + [182] = 93, + [183] = 91, + [184] = 87, + [185] = 185, + [186] = 159, + [187] = 169, + [188] = 146, + [189] = 171, + [190] = 174, + [191] = 175, + [192] = 157, + [193] = 165, + [194] = 172, + [195] = 155, + [196] = 173, + [197] = 197, + [198] = 198, + [199] = 199, + [200] = 68, + [201] = 62, + [202] = 63, + [203] = 3, + [204] = 4, + [205] = 78, + [206] = 73, + [207] = 80, + [208] = 65, + [209] = 6, + [210] = 67, + [211] = 79, + [212] = 62, + [213] = 2, + [214] = 66, + [215] = 63, + [216] = 76, + [217] = 5, + [218] = 68, + [219] = 5, + [220] = 2, + [221] = 79, + [222] = 65, + [223] = 63, + [224] = 76, + [225] = 80, + [226] = 68, + [227] = 73, + [228] = 3, + [229] = 68, + [230] = 66, + [231] = 63, + [232] = 6, + [233] = 67, + [234] = 78, + [235] = 62, + [236] = 4, + [237] = 5, + [238] = 79, + [239] = 6, + [240] = 76, + [241] = 76, + [242] = 64, + [243] = 71, + [244] = 73, + [245] = 75, + [246] = 69, + [247] = 2, + [248] = 5, + [249] = 3, + [250] = 67, + [251] = 80, + [252] = 3, + [253] = 67, + [254] = 65, + [255] = 80, + [256] = 6, + [257] = 78, + [258] = 65, + [259] = 4, + [260] = 66, + [261] = 66, + [262] = 4, + [263] = 62, + [264] = 78, + [265] = 2, + [266] = 79, + [267] = 119, + [268] = 95, + [269] = 92, + [270] = 108, + [271] = 84, + [272] = 104, + [273] = 106, + [274] = 117, + [275] = 83, + [276] = 103, + [277] = 99, + [278] = 110, + [279] = 111, + [280] = 112, + [281] = 113, + [282] = 73, + [283] = 115, + [284] = 125, + [285] = 116, + [286] = 90, + [287] = 94, + [288] = 86, + [289] = 133, + [290] = 122, + [291] = 123, + [292] = 127, + [293] = 102, + [294] = 87, + [295] = 75, + [296] = 91, + [297] = 93, + [298] = 107, + [299] = 69, + [300] = 71, + [301] = 124, + [302] = 118, + [303] = 85, + [304] = 97, + [305] = 100, + [306] = 64, + [307] = 101, + [308] = 172, + [309] = 157, + [310] = 85, + [311] = 107, + [312] = 75, + [313] = 127, + [314] = 123, + [315] = 169, + [316] = 122, + [317] = 159, + [318] = 117, + [319] = 71, + [320] = 115, + [321] = 113, + [322] = 112, + [323] = 111, + [324] = 110, + [325] = 146, + [326] = 103, + [327] = 83, + [328] = 94, + [329] = 92, + [330] = 108, + [331] = 104, + [332] = 106, + [333] = 93, + [334] = 116, + [335] = 119, + [336] = 133, + [337] = 102, + [338] = 171, + [339] = 64, + [340] = 99, + [341] = 165, + [342] = 90, + [343] = 84, + [344] = 95, + [345] = 124, + [346] = 118, + [347] = 101, + [348] = 91, + [349] = 173, + [350] = 97, + [351] = 155, + [352] = 125, + [353] = 87, + [354] = 100, + [355] = 174, + [356] = 69, + [357] = 86, + [358] = 175, + [359] = 113, + [360] = 125, + [361] = 116, + [362] = 119, + [363] = 133, + [364] = 107, + [365] = 102, + [366] = 169, + [367] = 91, + [368] = 93, + [369] = 100, + [370] = 86, + [371] = 172, + [372] = 101, + [373] = 173, + [374] = 174, + [375] = 175, + [376] = 97, + [377] = 124, + [378] = 95, + [379] = 84, + [380] = 118, + [381] = 99, + [382] = 159, + [383] = 155, + [384] = 157, + [385] = 87, + [386] = 90, + [387] = 104, + [388] = 108, + [389] = 127, + [390] = 92, + [391] = 123, + [392] = 86, + [393] = 122, + [394] = 117, + [395] = 94, + [396] = 146, + [397] = 118, + [398] = 83, + [399] = 103, + [400] = 110, + [401] = 106, + [402] = 64, + [403] = 165, + [404] = 71, + [405] = 75, + [406] = 90, + [407] = 171, + [408] = 125, + [409] = 85, + [410] = 111, + [411] = 69, + [412] = 95, + [413] = 115, + [414] = 97, + [415] = 112, + [416] = 127, + [417] = 104, + [418] = 100, + [419] = 171, + [420] = 101, + [421] = 165, + [422] = 6, + [423] = 157, + [424] = 155, + [425] = 169, + [426] = 159, + [427] = 124, + [428] = 117, + [429] = 5, + [430] = 84, + [431] = 175, + [432] = 99, + [433] = 174, + [434] = 173, + [435] = 172, + [436] = 115, + [437] = 113, + [438] = 3, + [439] = 112, + [440] = 93, + [441] = 91, + [442] = 111, + [443] = 102, + [444] = 146, + [445] = 133, + [446] = 119, + [447] = 116, + [448] = 106, + [449] = 87, + [450] = 110, + [451] = 2, + [452] = 107, + [453] = 122, + [454] = 103, + [455] = 85, + [456] = 83, + [457] = 4, + [458] = 94, + [459] = 123, + [460] = 92, + [461] = 108, + [462] = 462, + [463] = 172, + [464] = 146, + [465] = 171, + [466] = 175, + [467] = 159, + [468] = 174, + [469] = 165, + [470] = 157, + [471] = 173, + [472] = 169, + [473] = 155, + [474] = 3, + [475] = 2, + [476] = 6, + [477] = 6, + [478] = 2, + [479] = 3, + [480] = 4, + [481] = 481, + [482] = 5, + [483] = 462, + [484] = 4, + [485] = 485, + [486] = 5, + [487] = 462, + [488] = 481, + [489] = 462, + [490] = 490, + [491] = 66, + [492] = 3, + [493] = 73, + [494] = 494, + [495] = 67, + [496] = 6, + [497] = 198, + [498] = 498, + [499] = 5, + [500] = 65, + [501] = 501, + [502] = 462, + [503] = 503, + [504] = 79, + [505] = 2, + [506] = 80, + [507] = 481, + [508] = 481, + [509] = 509, + [510] = 510, + [511] = 68, + [512] = 78, + [513] = 4, + [514] = 462, + [515] = 481, + [516] = 481, + [517] = 198, + [518] = 481, + [519] = 481, + [520] = 520, + [521] = 521, + [522] = 522, + [523] = 523, + [524] = 524, + [525] = 525, + [526] = 481, + [527] = 527, + [528] = 528, + [529] = 529, + [530] = 529, + [531] = 528, + [532] = 532, + [533] = 528, + [534] = 534, + [535] = 535, + [536] = 532, + [537] = 532, + [538] = 534, + [539] = 535, + [540] = 528, + [541] = 529, + [542] = 535, + [543] = 543, + [544] = 527, + [545] = 527, + [546] = 527, + [547] = 528, + [548] = 543, + [549] = 543, + [550] = 529, + [551] = 532, + [552] = 528, + [553] = 527, + [554] = 528, + [555] = 527, + [556] = 529, + [557] = 534, + [558] = 535, + [559] = 529, + [560] = 560, + [561] = 534, + [562] = 535, + [563] = 528, + [564] = 543, + [565] = 527, + [566] = 534, + [567] = 535, + [568] = 528, + [569] = 528, + [570] = 529, + [571] = 528, + [572] = 543, + [573] = 527, + [574] = 528, + [575] = 527, + [576] = 529, + [577] = 535, + [578] = 543, + [579] = 527, + [580] = 529, + [581] = 528, + [582] = 543, + [583] = 543, + [584] = 528, + [585] = 529, + [586] = 528, + [587] = 528, + [588] = 534, + [589] = 535, + [590] = 527, + [591] = 543, + [592] = 529, + [593] = 527, + [594] = 534, + [595] = 535, + [596] = 529, + [597] = 529, + [598] = 529, + [599] = 528, + [600] = 543, + [601] = 529, + [602] = 527, + [603] = 529, + [604] = 535, + [605] = 534, + [606] = 529, + [607] = 535, + [608] = 543, + [609] = 527, + [610] = 535, + [611] = 535, + [612] = 543, + [613] = 527, + [614] = 527, + [615] = 529, + [616] = 535, + [617] = 535, + [618] = 543, + [619] = 529, + [620] = 528, + [621] = 534, + [622] = 527, + [623] = 535, + [624] = 527, + [625] = 543, + [626] = 527, + [627] = 529, + [628] = 535, + [629] = 543, + [630] = 543, + [631] = 535, + [632] = 543, + [633] = 543, + [634] = 528, + [635] = 527, + [636] = 534, + [637] = 535, + [638] = 543, + [639] = 535, + [640] = 528, + [641] = 543, + [642] = 642, + [643] = 642, + [644] = 642, + [645] = 642, + [646] = 642, + [647] = 647, + [648] = 648, + [649] = 649, + [650] = 650, + [651] = 651, + [652] = 652, + [653] = 653, + [654] = 76, + [655] = 655, + [656] = 656, + [657] = 657, + [658] = 118, + [659] = 659, + [660] = 660, + [661] = 661, + [662] = 662, + [663] = 663, + [664] = 664, + [665] = 665, + [666] = 666, + [667] = 667, + [668] = 668, + [669] = 86, + [670] = 670, + [671] = 671, + [672] = 672, + [673] = 673, + [674] = 90, + [675] = 675, + [676] = 676, + [677] = 677, + [678] = 678, + [679] = 679, + [680] = 97, + [681] = 681, + [682] = 95, + [683] = 683, + [684] = 684, + [685] = 685, + [686] = 686, + [687] = 687, + [688] = 688, + [689] = 689, + [690] = 690, + [691] = 691, + [692] = 692, + [693] = 693, + [694] = 694, + [695] = 695, + [696] = 696, + [697] = 125, + [698] = 698, + [699] = 699, + [700] = 700, + [701] = 701, + [702] = 702, + [703] = 703, + [704] = 704, + [705] = 705, + [706] = 706, + [707] = 707, + [708] = 708, + [709] = 709, + [710] = 710, + [711] = 711, + [712] = 653, + [713] = 713, + [714] = 714, + [715] = 68, + [716] = 650, + [717] = 649, + [718] = 689, + [719] = 719, + [720] = 695, + [721] = 686, + [722] = 701, + [723] = 677, + [724] = 700, + [725] = 704, + [726] = 708, + [727] = 699, + [728] = 672, + [729] = 671, + [730] = 694, + [731] = 692, + [732] = 690, + [733] = 709, + [734] = 711, + [735] = 693, + [736] = 688, + [737] = 662, + [738] = 687, + [739] = 707, + [740] = 655, + [741] = 741, + [742] = 684, + [743] = 63, + [744] = 744, + [745] = 745, + [746] = 710, + [747] = 664, + [748] = 748, + [749] = 670, + [750] = 667, + [751] = 706, + [752] = 752, + [753] = 753, + [754] = 668, + [755] = 656, + [756] = 666, + [757] = 681, + [758] = 758, + [759] = 683, + [760] = 698, + [761] = 761, + [762] = 762, + [763] = 763, + [764] = 702, + [765] = 685, + [766] = 766, + [767] = 703, + [768] = 696, + [769] = 691, + [770] = 675, + [771] = 673, + [772] = 657, + [773] = 659, + [774] = 660, + [775] = 676, + [776] = 661, + [777] = 663, + [778] = 80, + [779] = 66, + [780] = 3, + [781] = 65, + [782] = 4, + [783] = 5, + [784] = 713, + [785] = 6, + [786] = 2, + [787] = 78, + [788] = 79, + [789] = 68, + [790] = 678, + [791] = 791, + [792] = 67, + [793] = 714, + [794] = 748, + [795] = 761, + [796] = 763, + [797] = 752, + [798] = 766, + [799] = 745, + [800] = 655, + [801] = 758, + [802] = 63, + [803] = 762, + [804] = 678, + [805] = 741, + [806] = 679, + [807] = 744, + [808] = 753, + [809] = 65, + [810] = 80, + [811] = 78, + [812] = 4, + [813] = 79, + [814] = 66, + [815] = 2, + [816] = 3, + [817] = 651, + [818] = 652, + [819] = 6, + [820] = 67, + [821] = 5, + [822] = 647, + [823] = 705, + [824] = 76, + [825] = 648, + [826] = 655, + [827] = 95, + [828] = 125, + [829] = 97, + [830] = 118, + [831] = 90, + [832] = 86, + [833] = 833, + [834] = 68, + [835] = 80, + [836] = 6, + [837] = 4, + [838] = 2, + [839] = 73, + [840] = 79, + [841] = 67, + [842] = 5, + [843] = 78, + [844] = 66, + [845] = 65, + [846] = 3, + [847] = 63, + [848] = 79, + [849] = 3, + [850] = 78, + [851] = 66, + [852] = 5, + [853] = 80, + [854] = 65, + [855] = 68, + [856] = 4, + [857] = 2, + [858] = 76, + [859] = 67, + [860] = 62, + [861] = 6, + [862] = 462, + [863] = 650, + [864] = 649, + [865] = 481, + [866] = 753, + [867] = 766, + [868] = 119, + [869] = 869, + [870] = 133, + [871] = 102, + [872] = 106, + [873] = 104, + [874] = 92, + [875] = 125, + [876] = 108, + [877] = 869, + [878] = 744, + [879] = 745, + [880] = 100, + [881] = 101, + [882] = 116, + [883] = 94, + [884] = 869, + [885] = 83, + [886] = 103, + [887] = 110, + [888] = 869, + [889] = 111, + [890] = 869, + [891] = 118, + [892] = 741, + [893] = 761, + [894] = 112, + [895] = 124, + [896] = 86, + [897] = 649, + [898] = 653, + [899] = 752, + [900] = 90, + [901] = 113, + [902] = 115, + [903] = 95, + [904] = 97, + [905] = 869, + [906] = 763, + [907] = 869, + [908] = 85, + [909] = 84, + [910] = 99, + [911] = 107, + [912] = 64, + [913] = 650, + [914] = 127, + [915] = 462, + [916] = 117, + [917] = 122, + [918] = 123, + [919] = 766, + [920] = 758, + [921] = 745, + [922] = 761, + [923] = 741, + [924] = 744, + [925] = 748, + [926] = 762, + [927] = 763, + [928] = 753, + [929] = 752, + [930] = 651, + [931] = 931, + [932] = 931, + [933] = 931, + [934] = 931, + [935] = 931, + [936] = 931, + [937] = 741, + [938] = 931, + [939] = 481, + [940] = 931, + [941] = 653, + [942] = 766, + [943] = 931, + [944] = 713, + [945] = 931, + [946] = 931, + [947] = 763, + [948] = 931, + [949] = 679, + [950] = 931, + [951] = 931, + [952] = 761, + [953] = 748, + [954] = 648, + [955] = 752, + [956] = 762, + [957] = 714, + [958] = 685, + [959] = 931, + [960] = 652, + [961] = 753, + [962] = 69, + [963] = 758, + [964] = 647, + [965] = 931, + [966] = 75, + [967] = 931, + [968] = 744, + [969] = 745, + [970] = 745, + [971] = 971, + [972] = 65, + [973] = 80, + [974] = 758, + [975] = 975, + [976] = 975, + [977] = 977, + [978] = 78, + [979] = 709, + [980] = 79, + [981] = 66, + [982] = 696, + [983] = 695, + [984] = 975, + [985] = 91, + [986] = 711, + [987] = 977, + [988] = 988, + [989] = 698, + [990] = 68, + [991] = 975, + [992] = 992, + [993] = 675, + [994] = 673, + [995] = 971, + [996] = 975, + [997] = 647, + [998] = 752, + [999] = 657, + [1000] = 744, + [1001] = 659, + [1002] = 660, + [1003] = 661, + [1004] = 977, + [1005] = 663, + [1006] = 664, + [1007] = 977, + [1008] = 666, + [1009] = 975, + [1010] = 668, + [1011] = 971, + [1012] = 670, + [1013] = 753, + [1014] = 971, + [1015] = 3, + [1016] = 971, + [1017] = 677, + [1018] = 971, + [1019] = 693, + [1020] = 763, + [1021] = 681, + [1022] = 977, + [1023] = 683, + [1024] = 684, + [1025] = 971, + [1026] = 971, + [1027] = 687, + [1028] = 971, + [1029] = 689, + [1030] = 690, + [1031] = 971, + [1032] = 692, + [1033] = 971, + [1034] = 694, + [1035] = 676, + [1036] = 971, + [1037] = 699, + [1038] = 700, + [1039] = 701, + [1040] = 702, + [1041] = 703, + [1042] = 704, + [1043] = 705, + [1044] = 706, + [1045] = 707, + [1046] = 708, + [1047] = 655, + [1048] = 710, + [1049] = 67, + [1050] = 656, + [1051] = 686, + [1052] = 688, + [1053] = 691, + [1054] = 678, + [1055] = 971, + [1056] = 971, + [1057] = 975, + [1058] = 971, + [1059] = 652, + [1060] = 741, + [1061] = 766, + [1062] = 4, + [1063] = 971, + [1064] = 5, + [1065] = 971, + [1066] = 648, + [1067] = 2, + [1068] = 73, + [1069] = 679, + [1070] = 975, + [1071] = 971, + [1072] = 6, + [1073] = 651, + [1074] = 975, + [1075] = 975, + [1076] = 672, + [1077] = 705, + [1078] = 671, + [1079] = 655, + [1080] = 667, + [1081] = 971, + [1082] = 977, + [1083] = 679, + [1084] = 977, + [1085] = 761, + [1086] = 665, + [1087] = 662, + [1088] = 87, + [1089] = 762, + [1090] = 748, + [1091] = 172, + [1092] = 1092, + [1093] = 71, + [1094] = 157, + [1095] = 1095, + [1096] = 1095, + [1097] = 652, + [1098] = 762, + [1099] = 169, + [1100] = 1095, + [1101] = 159, + [1102] = 1102, + [1103] = 714, + [1104] = 655, + [1105] = 651, + [1106] = 146, + [1107] = 758, + [1108] = 1095, + [1109] = 175, + [1110] = 713, + [1111] = 71, + [1112] = 1095, + [1113] = 1113, + [1114] = 705, + [1115] = 171, + [1116] = 165, + [1117] = 748, + [1118] = 173, + [1119] = 647, + [1120] = 1095, + [1121] = 648, + [1122] = 1095, + [1123] = 1095, + [1124] = 174, + [1125] = 93, + [1126] = 155, + [1127] = 685, + [1128] = 67, + [1129] = 1129, + [1130] = 1130, + [1131] = 1131, + [1132] = 666, + [1133] = 655, + [1134] = 1134, + [1135] = 1135, + [1136] = 1131, + [1137] = 1137, + [1138] = 1134, + [1139] = 690, + [1140] = 1140, + [1141] = 1141, + [1142] = 1142, + [1143] = 1137, + [1144] = 692, + [1145] = 1145, + [1146] = 1146, + [1147] = 1147, + [1148] = 678, + [1149] = 1149, + [1150] = 1147, + [1151] = 694, + [1152] = 1152, + [1153] = 1153, + [1154] = 1154, + [1155] = 1155, + [1156] = 1156, + [1157] = 1157, + [1158] = 1158, + [1159] = 1159, + [1160] = 1129, + [1161] = 1161, + [1162] = 1162, + [1163] = 1163, + [1164] = 1164, + [1165] = 1165, + [1166] = 1166, + [1167] = 1167, + [1168] = 1168, + [1169] = 1169, + [1170] = 1170, + [1171] = 1155, + [1172] = 1169, + [1173] = 1168, + [1174] = 1167, + [1175] = 1165, + [1176] = 1164, + [1177] = 1163, + [1178] = 1162, + [1179] = 1161, + [1180] = 1129, + [1181] = 1159, + [1182] = 1158, + [1183] = 1157, + [1184] = 1155, + [1185] = 1157, + [1186] = 1158, + [1187] = 1146, + [1188] = 1169, + [1189] = 1189, + [1190] = 1146, + [1191] = 1147, + [1192] = 1159, + [1193] = 1129, + [1194] = 1161, + [1195] = 1162, + [1196] = 1196, + [1197] = 1163, + [1198] = 1164, + [1199] = 1156, + [1200] = 1165, + [1201] = 1167, + [1202] = 1168, + [1203] = 1170, + [1204] = 1152, + [1205] = 1205, + [1206] = 1169, + [1207] = 1170, + [1208] = 1142, + [1209] = 1209, + [1210] = 1141, + [1211] = 1166, + [1212] = 1140, + [1213] = 1135, + [1214] = 1130, + [1215] = 1152, + [1216] = 1216, + [1217] = 1153, + [1218] = 1218, + [1219] = 1196, + [1220] = 1131, + [1221] = 1221, + [1222] = 693, + [1223] = 1134, + [1224] = 1224, + [1225] = 1152, + [1226] = 1137, + [1227] = 1196, + [1228] = 1153, + [1229] = 1142, + [1230] = 76, + [1231] = 1170, + [1232] = 719, + [1233] = 1156, + [1234] = 1130, + [1235] = 1135, + [1236] = 1140, + [1237] = 1141, + [1238] = 1152, + [1239] = 1216, + [1240] = 1170, + [1241] = 1134, + [1242] = 1205, + [1243] = 1189, + [1244] = 1156, + [1245] = 1154, + [1246] = 699, + [1247] = 1149, + [1248] = 1145, + [1249] = 1134, + [1250] = 700, + [1251] = 1205, + [1252] = 1142, + [1253] = 1209, + [1254] = 1170, + [1255] = 1196, + [1256] = 1152, + [1257] = 1166, + [1258] = 1154, + [1259] = 1141, + [1260] = 1169, + [1261] = 1168, + [1262] = 1167, + [1263] = 1165, + [1264] = 1164, + [1265] = 1163, + [1266] = 1162, + [1267] = 1161, + [1268] = 1129, + [1269] = 1159, + [1270] = 1158, + [1271] = 1157, + [1272] = 1155, + [1273] = 1218, + [1274] = 1221, + [1275] = 701, + [1276] = 1140, + [1277] = 1131, + [1278] = 702, + [1279] = 1147, + [1280] = 662, + [1281] = 1134, + [1282] = 1282, + [1283] = 703, + [1284] = 1168, + [1285] = 66, + [1286] = 704, + [1287] = 1135, + [1288] = 1205, + [1289] = 1142, + [1290] = 1209, + [1291] = 1130, + [1292] = 1166, + [1293] = 1142, + [1294] = 706, + [1295] = 1167, + [1296] = 1153, + [1297] = 1218, + [1298] = 1221, + [1299] = 707, + [1300] = 1145, + [1301] = 1149, + [1302] = 1189, + [1303] = 1134, + [1304] = 1205, + [1305] = 1142, + [1306] = 1137, + [1307] = 1131, + [1308] = 1156, + [1309] = 655, + [1310] = 1169, + [1311] = 1209, + [1312] = 1141, + [1313] = 1137, + [1314] = 1168, + [1315] = 1140, + [1316] = 1166, + [1317] = 1218, + [1318] = 1221, + [1319] = 1189, + [1320] = 1167, + [1321] = 689, + [1322] = 1154, + [1323] = 1196, + [1324] = 1134, + [1325] = 1209, + [1326] = 1166, + [1327] = 1218, + [1328] = 1165, + [1329] = 1165, + [1330] = 1164, + [1331] = 1154, + [1332] = 710, + [1333] = 1149, + [1334] = 1209, + [1335] = 1166, + [1336] = 1163, + [1337] = 1209, + [1338] = 1145, + [1339] = 656, + [1340] = 1166, + [1341] = 1189, + [1342] = 1146, + [1343] = 1162, + [1344] = 1161, + [1345] = 1209, + [1346] = 1166, + [1347] = 1347, + [1348] = 1170, + [1349] = 668, + [1350] = 1209, + [1351] = 1166, + [1352] = 1159, + [1353] = 1209, + [1354] = 1152, + [1355] = 1166, + [1356] = 1131, + [1357] = 1158, + [1358] = 1166, + [1359] = 1149, + [1360] = 1145, + [1361] = 1141, + [1362] = 1157, + [1363] = 1166, + [1364] = 1155, + [1365] = 1140, + [1366] = 667, + [1367] = 1135, + [1368] = 671, + [1369] = 1137, + [1370] = 1130, + [1371] = 672, + [1372] = 1205, + [1373] = 686, + [1374] = 1142, + [1375] = 1153, + [1376] = 1147, + [1377] = 1209, + [1378] = 1135, + [1379] = 1142, + [1380] = 1130, + [1381] = 1381, + [1382] = 688, + [1383] = 687, + [1384] = 1218, + [1385] = 1153, + [1386] = 1164, + [1387] = 1196, + [1388] = 1156, + [1389] = 1134, + [1390] = 691, + [1391] = 1163, + [1392] = 1146, + [1393] = 1162, + [1394] = 1134, + [1395] = 1142, + [1396] = 1142, + [1397] = 1134, + [1398] = 1209, + [1399] = 1161, + [1400] = 1216, + [1401] = 1129, + [1402] = 1381, + [1403] = 1134, + [1404] = 1159, + [1405] = 1142, + [1406] = 1406, + [1407] = 1158, + [1408] = 1134, + [1409] = 1134, + [1410] = 1142, + [1411] = 1209, + [1412] = 1381, + [1413] = 1154, + [1414] = 1164, + [1415] = 1134, + [1416] = 1209, + [1417] = 676, + [1418] = 1157, + [1419] = 684, + [1420] = 1420, + [1421] = 1142, + [1422] = 1134, + [1423] = 709, + [1424] = 1169, + [1425] = 1209, + [1426] = 1142, + [1427] = 1209, + [1428] = 1209, + [1429] = 683, + [1430] = 1168, + [1431] = 1146, + [1432] = 1209, + [1433] = 1209, + [1434] = 696, + [1435] = 695, + [1436] = 711, + [1437] = 698, + [1438] = 1130, + [1439] = 1135, + [1440] = 1142, + [1441] = 1147, + [1442] = 1167, + [1443] = 79, + [1444] = 675, + [1445] = 673, + [1446] = 1131, + [1447] = 1134, + [1448] = 1165, + [1449] = 1155, + [1450] = 68, + [1451] = 1142, + [1452] = 1134, + [1453] = 1156, + [1454] = 65, + [1455] = 1205, + [1456] = 1221, + [1457] = 657, + [1458] = 1142, + [1459] = 1154, + [1460] = 659, + [1461] = 681, + [1462] = 660, + [1463] = 1146, + [1464] = 1147, + [1465] = 661, + [1466] = 677, + [1467] = 663, + [1468] = 1134, + [1469] = 1189, + [1470] = 1153, + [1471] = 78, + [1472] = 1137, + [1473] = 1473, + [1474] = 1142, + [1475] = 1381, + [1476] = 80, + [1477] = 1142, + [1478] = 1224, + [1479] = 1224, + [1480] = 1221, + [1481] = 1154, + [1482] = 1166, + [1483] = 1155, + [1484] = 1145, + [1485] = 1149, + [1486] = 1145, + [1487] = 1149, + [1488] = 1134, + [1489] = 1216, + [1490] = 708, + [1491] = 1154, + [1492] = 1157, + [1493] = 1209, + [1494] = 1158, + [1495] = 1159, + [1496] = 1129, + [1497] = 664, + [1498] = 1141, + [1499] = 1140, + [1500] = 670, + [1501] = 1224, + [1502] = 1221, + [1503] = 1163, + [1504] = 1218, + [1505] = 1196, + [1506] = 1189, + [1507] = 1161, + [1508] = 1166, + [1509] = 1162, + [1510] = 71, + [1511] = 71, + [1512] = 655, + [1513] = 678, + [1514] = 833, + [1515] = 1515, + [1516] = 1516, + [1517] = 1517, + [1518] = 1518, + [1519] = 1518, + [1520] = 1520, + [1521] = 1520, + [1522] = 1522, + [1523] = 1522, + [1524] = 1518, + [1525] = 1520, + [1526] = 1518, + [1527] = 1522, + [1528] = 1518, + [1529] = 1520, + [1530] = 1530, + [1531] = 1518, + [1532] = 1518, + [1533] = 1518, + [1534] = 1520, + [1535] = 1522, + [1536] = 1518, + [1537] = 1520, + [1538] = 1520, + [1539] = 1520, + [1540] = 1520, + [1541] = 1518, + [1542] = 1530, + [1543] = 1520, + [1544] = 1518, + [1545] = 1520, + [1546] = 1520, + [1547] = 1518, + [1548] = 1518, + [1549] = 1530, + [1550] = 1520, + [1551] = 1518, + [1552] = 1518, + [1553] = 1520, + [1554] = 1520, + [1555] = 1522, + [1556] = 1530, + [1557] = 1520, + [1558] = 1520, + [1559] = 1530, + [1560] = 1522, + [1561] = 1518, + [1562] = 1518, + [1563] = 1518, + [1564] = 1530, + [1565] = 1522, + [1566] = 1520, + [1567] = 1520, + [1568] = 1518, + [1569] = 1530, + [1570] = 1570, + [1571] = 1571, + [1572] = 1572, + [1573] = 1573, + [1574] = 1574, + [1575] = 1575, + [1576] = 1576, + [1577] = 1577, + [1578] = 1578, + [1579] = 1576, + [1580] = 1574, + [1581] = 1581, + [1582] = 1576, + [1583] = 1571, + [1584] = 1574, + [1585] = 1585, + [1586] = 1573, + [1587] = 1581, + [1588] = 1570, + [1589] = 1573, + [1590] = 1573, + [1591] = 1571, + [1592] = 1574, + [1593] = 1574, + [1594] = 1594, + [1595] = 1577, + [1596] = 1585, + [1597] = 1571, + [1598] = 1598, + [1599] = 1599, + [1600] = 1574, + [1601] = 1594, + [1602] = 1576, + [1603] = 1571, + [1604] = 1604, + [1605] = 1605, + [1606] = 1572, + [1607] = 1607, + [1608] = 1608, + [1609] = 1609, + [1610] = 1610, + [1611] = 1576, + [1612] = 1612, + [1613] = 1573, + [1614] = 1573, + [1615] = 1571, + [1616] = 1616, + [1617] = 1610, + [1618] = 1574, + [1619] = 1619, + [1620] = 1576, + [1621] = 1621, + [1622] = 1576, + [1623] = 1571, + [1624] = 1624, + [1625] = 1576, + [1626] = 1621, + [1627] = 1627, + [1628] = 1628, + [1629] = 1572, + [1630] = 1574, + [1631] = 1610, + [1632] = 1576, + [1633] = 1571, + [1634] = 1570, + [1635] = 1573, + [1636] = 1571, + [1637] = 1573, + [1638] = 1610, + [1639] = 1616, + [1640] = 1576, + [1641] = 1575, + [1642] = 1576, + [1643] = 1643, + [1644] = 1644, + [1645] = 1573, + [1646] = 1585, + [1647] = 1576, + [1648] = 1585, + [1649] = 1574, + [1650] = 1570, + [1651] = 1571, + [1652] = 1576, + [1653] = 1575, + [1654] = 1573, + [1655] = 1576, + [1656] = 1573, + [1657] = 1573, + [1658] = 1581, + [1659] = 1581, + [1660] = 1576, + [1661] = 1575, + [1662] = 1575, + [1663] = 1578, + [1664] = 1573, + [1665] = 1573, + [1666] = 1576, + [1667] = 1577, + [1668] = 1571, + [1669] = 1572, + [1670] = 1610, + [1671] = 1671, + [1672] = 1572, + [1673] = 1571, + [1674] = 1594, + [1675] = 1581, + [1676] = 1576, + [1677] = 1573, + [1678] = 1678, + [1679] = 1573, + [1680] = 1571, + [1681] = 1616, + [1682] = 1571, + [1683] = 1574, + [1684] = 1574, + [1685] = 1585, + [1686] = 1574, + [1687] = 1581, + [1688] = 1571, + [1689] = 1594, + [1690] = 1594, + [1691] = 1616, + [1692] = 1574, + [1693] = 1581, + [1694] = 1694, + [1695] = 1570, + [1696] = 1577, + [1697] = 1578, + [1698] = 1573, + [1699] = 1585, + [1700] = 1571, + [1701] = 1575, + [1702] = 1573, + [1703] = 1581, + [1704] = 1571, + [1705] = 1705, + [1706] = 1706, + [1707] = 1573, + [1708] = 1574, + [1709] = 1572, + [1710] = 1578, + [1711] = 1585, + [1712] = 1594, + [1713] = 1610, + [1714] = 1577, + [1715] = 1585, + [1716] = 1571, + [1717] = 1575, + [1718] = 1610, + [1719] = 1610, + [1720] = 1575, + [1721] = 1621, + [1722] = 1576, + [1723] = 1585, + [1724] = 1576, + [1725] = 1577, + [1726] = 1571, + [1727] = 1727, + [1728] = 1594, + [1729] = 1574, + [1730] = 1573, + [1731] = 1731, + [1732] = 1576, + [1733] = 1571, + [1734] = 1734, + [1735] = 1621, + [1736] = 1581, + [1737] = 1575, + [1738] = 1610, + [1739] = 1572, + [1740] = 1740, + [1741] = 1741, + [1742] = 1577, + [1743] = 1743, + [1744] = 1744, + [1745] = 1744, + [1746] = 1744, + [1747] = 1744, + [1748] = 1744, + [1749] = 1744, + [1750] = 1744, + [1751] = 1744, + [1752] = 1744, + [1753] = 1744, + [1754] = 1744, + [1755] = 1744, + [1756] = 1744, + [1757] = 1744, + [1758] = 1744, + [1759] = 1744, + [1760] = 1744, + [1761] = 1744, + [1762] = 1744, + [1763] = 1744, + [1764] = 1764, + [1765] = 1764, + [1766] = 1764, + [1767] = 1764, + [1768] = 1764, + [1769] = 1764, + [1770] = 1764, + [1771] = 1764, + [1772] = 1772, + [1773] = 1773, + [1774] = 1774, + [1775] = 1775, + [1776] = 1773, + [1777] = 1777, + [1778] = 1778, + [1779] = 1773, + [1780] = 1774, + [1781] = 1778, + [1782] = 1774, + [1783] = 1774, + [1784] = 1775, + [1785] = 1777, + [1786] = 1774, + [1787] = 1773, + [1788] = 1778, + [1789] = 1778, + [1790] = 1775, + [1791] = 1774, + [1792] = 1773, + [1793] = 1777, + [1794] = 1773, + [1795] = 1774, + [1796] = 1774, + [1797] = 1777, + [1798] = 1777, + [1799] = 1778, + [1800] = 1778, + [1801] = 1775, + [1802] = 1775, + [1803] = 1773, + [1804] = 1778, + [1805] = 1773, + [1806] = 1775, + [1807] = 1775, + [1808] = 1777, + [1809] = 1777, + [1810] = 1775, + [1811] = 1778, + [1812] = 1777, + [1813] = 1813, + [1814] = 1814, + [1815] = 1815, + [1816] = 1816, + [1817] = 1817, + [1818] = 1818, + [1819] = 1819, + [1820] = 1820, + [1821] = 1821, + [1822] = 1822, + [1823] = 1822, + [1824] = 1820, + [1825] = 1825, + [1826] = 1822, + [1827] = 1820, + [1828] = 1821, + [1829] = 1820, + [1830] = 1820, + [1831] = 1821, + [1832] = 1818, + [1833] = 1821, + [1834] = 1822, + [1835] = 1820, + [1836] = 1820, + [1837] = 1822, + [1838] = 1825, + [1839] = 1820, + [1840] = 1820, + [1841] = 1822, + [1842] = 1820, + [1843] = 1822, + [1844] = 1822, + [1845] = 1822, + [1846] = 1821, + [1847] = 1822, + [1848] = 1822, + [1849] = 1822, + [1850] = 1821, + [1851] = 1818, + [1852] = 1820, + [1853] = 1821, + [1854] = 1820, + [1855] = 1825, + [1856] = 1822, + [1857] = 1822, + [1858] = 1825, + [1859] = 1825, + [1860] = 1822, + [1861] = 1820, + [1862] = 1820, + [1863] = 1825, + [1864] = 1818, + [1865] = 1820, + [1866] = 1820, + [1867] = 1820, + [1868] = 1820, + [1869] = 1825, + [1870] = 1822, + [1871] = 1820, + [1872] = 1822, + [1873] = 1822, + [1874] = 1822, + [1875] = 1875, + [1876] = 1876, + [1877] = 1877, + [1878] = 1877, + [1879] = 1879, + [1880] = 1877, + [1881] = 1877, + [1882] = 1882, + [1883] = 1883, + [1884] = 1884, + [1885] = 1885, + [1886] = 1886, + [1887] = 1886, + [1888] = 1888, + [1889] = 1882, + [1890] = 1890, + [1891] = 4, + [1892] = 5, + [1893] = 1888, + [1894] = 2, + [1895] = 6, + [1896] = 1896, + [1897] = 1897, + [1898] = 1898, + [1899] = 1890, + [1900] = 1900, + [1901] = 79, + [1902] = 1896, + [1903] = 76, + [1904] = 78, + [1905] = 80, + [1906] = 4, + [1907] = 3, + [1908] = 65, + [1909] = 67, + [1910] = 68, + [1911] = 1898, + [1912] = 5, + [1913] = 1897, + [1914] = 66, + [1915] = 2, + [1916] = 6, + [1917] = 1917, + [1918] = 1917, + [1919] = 1917, + [1920] = 1917, + [1921] = 1917, + [1922] = 1917, + [1923] = 1917, + [1924] = 1917, + [1925] = 1925, + [1926] = 1926, + [1927] = 1927, + [1928] = 1928, + [1929] = 1929, + [1930] = 1928, + [1931] = 1928, + [1932] = 1926, + [1933] = 1926, + [1934] = 1928, + [1935] = 1926, + [1936] = 1936, + [1937] = 1937, + [1938] = 1938, + [1939] = 1939, + [1940] = 1940, + [1941] = 1941, + [1942] = 1942, + [1943] = 1943, + [1944] = 1944, + [1945] = 1942, + [1946] = 1940, + [1947] = 1942, + [1948] = 1943, + [1949] = 1949, + [1950] = 1941, + [1951] = 1944, + [1952] = 1952, + [1953] = 1942, + [1954] = 1954, + [1955] = 1943, + [1956] = 1949, + [1957] = 1957, + [1958] = 1944, + [1959] = 1943, + [1960] = 1960, + [1961] = 1941, + [1962] = 1942, + [1963] = 1943, + [1964] = 1944, + [1965] = 1965, + [1966] = 1940, + [1967] = 1942, + [1968] = 1943, + [1969] = 1942, + [1970] = 1949, + [1971] = 1942, + [1972] = 1952, + [1973] = 1954, + [1974] = 1942, + [1975] = 1942, + [1976] = 1943, + [1977] = 1941, + [1978] = 1952, + [1979] = 1954, + [1980] = 1944, + [1981] = 1957, + [1982] = 1965, + [1983] = 1960, + [1984] = 1957, + [1985] = 1954, + [1986] = 1952, + [1987] = 1940, + [1988] = 1949, + [1989] = 1940, + [1990] = 1942, + [1991] = 1957, + [1992] = 1944, + [1993] = 1944, + [1994] = 1960, + [1995] = 1960, + [1996] = 1965, + [1997] = 1965, + [1998] = 1960, + [1999] = 1957, + [2000] = 1954, + [2001] = 1952, + [2002] = 1941, + [2003] = 1949, + [2004] = 1965, + [2005] = 1944, + [2006] = 650, + [2007] = 649, + [2008] = 63, + [2009] = 763, + [2010] = 753, + [2011] = 766, + [2012] = 649, + [2013] = 650, + [2014] = 745, + [2015] = 761, + [2016] = 752, + [2017] = 2017, + [2018] = 2017, + [2019] = 2017, + [2020] = 741, + [2021] = 744, + [2022] = 2017, + [2023] = 2023, + [2024] = 2017, + [2025] = 2017, + [2026] = 2017, + [2027] = 2027, + [2028] = 2028, + [2029] = 2029, + [2030] = 2030, + [2031] = 2031, + [2032] = 2032, + [2033] = 78, + [2034] = 2034, + [2035] = 68, + [2036] = 758, + [2037] = 67, + [2038] = 79, + [2039] = 4, + [2040] = 5, + [2041] = 2, + [2042] = 6, + [2043] = 763, + [2044] = 80, + [2045] = 65, + [2046] = 3, + [2047] = 714, + [2048] = 713, + [2049] = 753, + [2050] = 752, + [2051] = 66, + [2052] = 76, + [2053] = 2053, + [2054] = 2034, + [2055] = 2053, + [2056] = 2034, + [2057] = 2034, + [2058] = 2034, + [2059] = 761, + [2060] = 745, + [2061] = 744, + [2062] = 2053, + [2063] = 2034, + [2064] = 2053, + [2065] = 766, + [2066] = 741, + [2067] = 2034, + [2068] = 2053, + [2069] = 2053, + [2070] = 2053, + [2071] = 2071, + [2072] = 2072, + [2073] = 2072, + [2074] = 2072, + [2075] = 2072, + [2076] = 2072, + [2077] = 2077, + [2078] = 2077, + [2079] = 2071, + [2080] = 2080, + [2081] = 2081, + [2082] = 2072, + [2083] = 2081, + [2084] = 2084, + [2085] = 2072, + [2086] = 2086, + [2087] = 2077, + [2088] = 2071, + [2089] = 2084, + [2090] = 2031, + [2091] = 762, + [2092] = 2092, + [2093] = 2071, + [2094] = 2072, + [2095] = 2084, + [2096] = 2071, + [2097] = 2084, + [2098] = 2084, + [2099] = 2081, + [2100] = 2084, + [2101] = 2081, + [2102] = 2071, + [2103] = 2077, + [2104] = 2081, + [2105] = 2084, + [2106] = 2081, + [2107] = 2071, + [2108] = 2077, + [2109] = 2081, + [2110] = 2084, + [2111] = 2081, + [2112] = 2072, + [2113] = 762, + [2114] = 2072, + [2115] = 2084, + [2116] = 2081, + [2117] = 2071, + [2118] = 2072, + [2119] = 2077, + [2120] = 2081, + [2121] = 2077, + [2122] = 2072, + [2123] = 2077, + [2124] = 2071, + [2125] = 2071, + [2126] = 2077, + [2127] = 2072, + [2128] = 2072, + [2129] = 2084, + [2130] = 2084, + [2131] = 2081, + [2132] = 2071, + [2133] = 2077, + [2134] = 2081, + [2135] = 2084, + [2136] = 2072, + [2137] = 2081, + [2138] = 2072, + [2139] = 2072, + [2140] = 748, + [2141] = 2081, + [2142] = 2077, + [2143] = 748, + [2144] = 2084, + [2145] = 2081, + [2146] = 2071, + [2147] = 2072, + [2148] = 2077, + [2149] = 2071, + [2150] = 2071, + [2151] = 2077, + [2152] = 2077, + [2153] = 2072, + [2154] = 2072, + [2155] = 2084, + [2156] = 2077, + [2157] = 2071, + [2158] = 2084, + [2159] = 2159, + [2160] = 2160, + [2161] = 2161, + [2162] = 2162, + [2163] = 2163, + [2164] = 2164, + [2165] = 2165, + [2166] = 2166, + [2167] = 2160, + [2168] = 2163, + [2169] = 2169, + [2170] = 2170, + [2171] = 2171, + [2172] = 2171, + [2173] = 2173, + [2174] = 2174, + [2175] = 2160, + [2176] = 2165, + [2177] = 2174, + [2178] = 2171, + [2179] = 2179, + [2180] = 2162, + [2181] = 2164, + [2182] = 2182, + [2183] = 2161, + [2184] = 2162, + [2185] = 2185, + [2186] = 2182, + [2187] = 2182, + [2188] = 2164, + [2189] = 2170, + [2190] = 2165, + [2191] = 2174, + [2192] = 2171, + [2193] = 2161, + [2194] = 2194, + [2195] = 2162, + [2196] = 2185, + [2197] = 2174, + [2198] = 2171, + [2199] = 2164, + [2200] = 2162, + [2201] = 2164, + [2202] = 2166, + [2203] = 2161, + [2204] = 2162, + [2205] = 2161, + [2206] = 2169, + [2207] = 2161, + [2208] = 2163, + [2209] = 2174, + [2210] = 2164, + [2211] = 2162, + [2212] = 2212, + [2213] = 2213, + [2214] = 2171, + [2215] = 655, + [2216] = 2174, + [2217] = 2169, + [2218] = 2174, + [2219] = 2171, + [2220] = 2170, + [2221] = 2174, + [2222] = 2164, + [2223] = 2173, + [2224] = 2161, + [2225] = 2162, + [2226] = 2171, + [2227] = 2173, + [2228] = 2161, + [2229] = 2229, + [2230] = 713, + [2231] = 2162, + [2232] = 2161, + [2233] = 714, + [2234] = 2166, + [2235] = 2173, + [2236] = 2164, + [2237] = 2174, + [2238] = 2171, + [2239] = 758, + [2240] = 2185, + [2241] = 2164, + [2242] = 2174, + [2243] = 2161, + [2244] = 2162, + [2245] = 2171, + [2246] = 2171, + [2247] = 2174, + [2248] = 2185, + [2249] = 2170, + [2250] = 2164, + [2251] = 2169, + [2252] = 2161, + [2253] = 2163, + [2254] = 2162, + [2255] = 2160, + [2256] = 2174, + [2257] = 2174, + [2258] = 2171, + [2259] = 2173, + [2260] = 2170, + [2261] = 2164, + [2262] = 2169, + [2263] = 2161, + [2264] = 2162, + [2265] = 2166, + [2266] = 2162, + [2267] = 2163, + [2268] = 2160, + [2269] = 2161, + [2270] = 2174, + [2271] = 2162, + [2272] = 2171, + [2273] = 2165, + [2274] = 2182, + [2275] = 2165, + [2276] = 2185, + [2277] = 2164, + [2278] = 2171, + [2279] = 2161, + [2280] = 2182, + [2281] = 2161, + [2282] = 2162, + [2283] = 2174, + [2284] = 2171, + [2285] = 2164, + [2286] = 2164, + [2287] = 2185, + [2288] = 2164, + [2289] = 2185, + [2290] = 2166, + [2291] = 2291, + [2292] = 2292, + [2293] = 2293, + [2294] = 2294, + [2295] = 2295, + [2296] = 2296, + [2297] = 2297, + [2298] = 2298, + [2299] = 2293, + [2300] = 2300, + [2301] = 2301, + [2302] = 2302, + [2303] = 2294, + [2304] = 2294, + [2305] = 2294, + [2306] = 2294, + [2307] = 2294, + [2308] = 2297, + [2309] = 2294, + [2310] = 2310, + [2311] = 2294, + [2312] = 2294, + [2313] = 2302, + [2314] = 2294, + [2315] = 2300, + [2316] = 2293, + [2317] = 2317, + [2318] = 2294, + [2319] = 2319, + [2320] = 2320, + [2321] = 2310, + [2322] = 2297, + [2323] = 2310, + [2324] = 2294, + [2325] = 2297, + [2326] = 2297, + [2327] = 2300, + [2328] = 2296, + [2329] = 2329, + [2330] = 762, + [2331] = 2331, + [2332] = 2332, + [2333] = 2294, + [2334] = 2310, + [2335] = 2335, + [2336] = 2294, + [2337] = 655, + [2338] = 2310, + [2339] = 2300, + [2340] = 2340, + [2341] = 2300, + [2342] = 762, + [2343] = 2343, + [2344] = 2293, + [2345] = 2296, + [2346] = 2302, + [2347] = 2347, + [2348] = 2296, + [2349] = 748, + [2350] = 2350, + [2351] = 2294, + [2352] = 2352, + [2353] = 2302, + [2354] = 2354, + [2355] = 2355, + [2356] = 2343, + [2357] = 2293, + [2358] = 748, + [2359] = 2359, + [2360] = 2347, + [2361] = 2361, + [2362] = 2362, + [2363] = 2363, + [2364] = 2364, + [2365] = 2365, + [2366] = 2361, + [2367] = 2367, + [2368] = 2368, + [2369] = 2369, + [2370] = 2370, + [2371] = 2371, + [2372] = 2367, + [2373] = 2363, + [2374] = 2367, + [2375] = 2375, + [2376] = 2367, + [2377] = 2361, + [2378] = 2378, + [2379] = 2379, + [2380] = 2347, + [2381] = 2381, + [2382] = 2364, + [2383] = 2361, + [2384] = 2365, + [2385] = 2378, + [2386] = 2361, + [2387] = 2363, + [2388] = 2364, + [2389] = 2389, + [2390] = 2390, + [2391] = 2379, + [2392] = 2367, + [2393] = 2393, + [2394] = 2364, + [2395] = 2363, + [2396] = 2364, + [2397] = 2361, + [2398] = 2363, + [2399] = 2399, + [2400] = 2361, + [2401] = 2379, + [2402] = 2379, + [2403] = 2364, + [2404] = 2367, + [2405] = 2367, + [2406] = 2378, + [2407] = 2365, + [2408] = 2365, + [2409] = 2365, + [2410] = 2365, + [2411] = 2378, + [2412] = 2364, + [2413] = 2367, + [2414] = 2361, + [2415] = 2415, + [2416] = 2416, + [2417] = 2379, + [2418] = 2418, + [2419] = 2378, + [2420] = 2347, + [2421] = 2367, + [2422] = 2367, + [2423] = 2378, + [2424] = 2367, + [2425] = 2363, + [2426] = 2364, + [2427] = 2364, + [2428] = 2363, + [2429] = 2363, + [2430] = 2364, + [2431] = 2364, + [2432] = 2367, + [2433] = 2364, + [2434] = 2365, + [2435] = 2367, + [2436] = 2364, + [2437] = 2437, + [2438] = 2438, + [2439] = 2364, + [2440] = 2343, + [2441] = 2379, + [2442] = 2343, + [2443] = 2443, + [2444] = 2378, + [2445] = 2379, + [2446] = 2446, + [2447] = 655, + [2448] = 2365, + [2449] = 2449, + [2450] = 2378, + [2451] = 2367, + [2452] = 2367, + [2453] = 2364, + [2454] = 2454, + [2455] = 2455, + [2456] = 2456, + [2457] = 2457, + [2458] = 2458, + [2459] = 2459, + [2460] = 2460, + [2461] = 2461, + [2462] = 2462, + [2463] = 2458, + [2464] = 2455, + [2465] = 2460, + [2466] = 2466, + [2467] = 2467, + [2468] = 2468, + [2469] = 2469, + [2470] = 2460, + [2471] = 2471, + [2472] = 2454, + [2473] = 2454, + [2474] = 2460, + [2475] = 2455, + [2476] = 2476, + [2477] = 2477, + [2478] = 2478, + [2479] = 2479, + [2480] = 2480, + [2481] = 2481, + [2482] = 2454, + [2483] = 2483, + [2484] = 2484, + [2485] = 2458, + [2486] = 2458, + [2487] = 2487, + [2488] = 2455, + [2489] = 2460, + [2490] = 2454, + [2491] = 2458, + [2492] = 655, + [2493] = 2455, + [2494] = 2494, + [2495] = 2495, + [2496] = 2496, + [2497] = 2497, + [2498] = 2498, + [2499] = 2499, + [2500] = 2500, + [2501] = 2501, + [2502] = 2502, + [2503] = 2503, + [2504] = 2501, + [2505] = 2505, + [2506] = 2506, + [2507] = 2505, + [2508] = 2508, + [2509] = 2503, + [2510] = 2510, + [2511] = 2511, + [2512] = 2512, + [2513] = 2513, + [2514] = 2514, + [2515] = 2515, + [2516] = 2503, + [2517] = 2505, + [2518] = 2505, + [2519] = 2505, + [2520] = 2520, + [2521] = 2501, + [2522] = 2500, + [2523] = 2501, + [2524] = 2510, + [2525] = 2501, + [2526] = 2526, + [2527] = 2527, + [2528] = 2502, + [2529] = 2505, + [2530] = 2505, + [2531] = 2501, + [2532] = 2499, + [2533] = 2501, + [2534] = 2503, + [2535] = 2505, + [2536] = 2505, + [2537] = 2500, + [2538] = 2501, + [2539] = 2539, + [2540] = 2503, + [2541] = 2500, + [2542] = 2501, + [2543] = 2501, + [2544] = 2505, + [2545] = 2505, + [2546] = 2520, + [2547] = 2547, + [2548] = 2505, + [2549] = 2501, + [2550] = 2503, + [2551] = 2551, + [2552] = 2505, + [2553] = 2503, + [2554] = 2502, + [2555] = 2500, + [2556] = 2503, + [2557] = 2501, + [2558] = 2506, + [2559] = 2505, + [2560] = 2510, + [2561] = 2505, + [2562] = 2513, + [2563] = 2505, + [2564] = 2564, + [2565] = 2505, + [2566] = 2566, + [2567] = 2567, + [2568] = 2501, + [2569] = 2510, + [2570] = 2506, + [2571] = 2503, + [2572] = 2508, + [2573] = 2508, + [2574] = 2503, + [2575] = 2503, + [2576] = 2501, + [2577] = 2577, + [2578] = 2505, + [2579] = 2501, + [2580] = 2501, + [2581] = 2513, + [2582] = 2502, + [2583] = 2502, + [2584] = 2508, + [2585] = 2503, + [2586] = 2513, + [2587] = 2503, + [2588] = 2508, + [2589] = 2502, + [2590] = 2503, + [2591] = 2503, + [2592] = 2503, + [2593] = 2499, + [2594] = 2501, + [2595] = 2501, + [2596] = 2506, + [2597] = 2512, + [2598] = 2501, + [2599] = 2503, + [2600] = 2505, + [2601] = 2503, + [2602] = 2481, + [2603] = 2503, + [2604] = 2500, + [2605] = 2605, + [2606] = 2500, + [2607] = 2512, + [2608] = 2520, + [2609] = 2502, + [2610] = 2512, + [2611] = 2505, + [2612] = 2612, + [2613] = 2613, + [2614] = 2614, + [2615] = 2615, + [2616] = 2616, + [2617] = 2616, + [2618] = 2618, + [2619] = 2618, + [2620] = 2616, + [2621] = 2621, + [2622] = 2621, + [2623] = 2618, + [2624] = 2624, + [2625] = 2625, + [2626] = 2616, + [2627] = 2618, + [2628] = 2613, + [2629] = 2629, + [2630] = 2616, + [2631] = 2618, + [2632] = 2632, + [2633] = 2633, + [2634] = 2616, + [2635] = 2618, + [2636] = 2621, + [2637] = 2612, + [2638] = 2618, + [2639] = 2639, + [2640] = 2618, + [2641] = 2618, + [2642] = 2618, + [2643] = 2618, + [2644] = 2618, + [2645] = 2616, + [2646] = 2618, + [2647] = 2647, + [2648] = 2648, + [2649] = 2649, + [2650] = 2613, + [2651] = 2651, + [2652] = 2652, + [2653] = 2653, + [2654] = 2654, + [2655] = 2629, + [2656] = 2613, + [2657] = 2657, + [2658] = 2658, + [2659] = 2659, + [2660] = 2660, + [2661] = 2661, + [2662] = 2662, + [2663] = 2613, + [2664] = 2664, + [2665] = 2665, + [2666] = 2660, + [2667] = 2667, + [2668] = 2614, + [2669] = 2659, + [2670] = 2670, + [2671] = 2671, + [2672] = 2614, + [2673] = 2673, + [2674] = 2613, + [2675] = 2675, + [2676] = 2676, + [2677] = 2670, + [2678] = 2678, + [2679] = 2621, + [2680] = 2639, + [2681] = 2648, + [2682] = 2658, + [2683] = 2654, + [2684] = 2614, + [2685] = 2659, + [2686] = 2654, + [2687] = 2612, + [2688] = 2688, + [2689] = 2613, + [2690] = 2690, + [2691] = 2691, + [2692] = 2676, + [2693] = 2670, + [2694] = 2673, + [2695] = 2688, + [2696] = 2654, + [2697] = 2660, + [2698] = 2688, + [2699] = 2658, + [2700] = 2659, + [2701] = 2690, + [2702] = 2690, + [2703] = 2612, + [2704] = 2670, + [2705] = 2705, + [2706] = 2612, + [2707] = 2660, + [2708] = 2691, + [2709] = 2676, + [2710] = 2691, + [2711] = 2670, + [2712] = 2673, + [2713] = 2660, + [2714] = 2658, + [2715] = 2690, + [2716] = 2691, + [2717] = 2717, + [2718] = 2718, + [2719] = 2691, + [2720] = 2654, + [2721] = 2629, + [2722] = 2722, + [2723] = 2660, + [2724] = 2649, + [2725] = 2616, + [2726] = 2614, + [2727] = 2660, + [2728] = 2658, + [2729] = 2616, + [2730] = 2613, + [2731] = 2659, + [2732] = 2670, + [2733] = 2616, + [2734] = 2658, + [2735] = 2616, + [2736] = 2690, + [2737] = 2616, + [2738] = 2690, + [2739] = 2616, + [2740] = 2688, + [2741] = 2616, + [2742] = 2618, + [2743] = 2647, + [2744] = 2649, + [2745] = 2673, + [2746] = 2613, + [2747] = 2664, + [2748] = 2616, + [2749] = 2618, + [2750] = 2647, + [2751] = 2649, + [2752] = 2658, + [2753] = 2691, + [2754] = 2616, + [2755] = 2618, + [2756] = 2676, + [2757] = 2648, + [2758] = 2616, + [2759] = 2618, + [2760] = 2639, + [2761] = 2670, + [2762] = 2618, + [2763] = 2660, + [2764] = 2618, + [2765] = 2629, + [2766] = 2766, + [2767] = 2670, + [2768] = 2670, + [2769] = 2690, + [2770] = 2691, + [2771] = 2771, + [2772] = 2639, + [2773] = 2773, + [2774] = 2670, + [2775] = 2647, + [2776] = 2648, + [2777] = 2658, + [2778] = 2670, + [2779] = 2673, + [2780] = 2690, + [2781] = 2670, + [2782] = 2670, + [2783] = 2618, + [2784] = 2670, + [2785] = 2616, + [2786] = 2673, + [2787] = 2616, + [2788] = 2691, + [2789] = 2676, + [2790] = 2718, + [2791] = 2670, + [2792] = 2673, + [2793] = 2793, + [2794] = 2794, + [2795] = 2664, + [2796] = 2796, + [2797] = 2616, + [2798] = 2798, + [2799] = 2799, + [2800] = 2800, + [2801] = 2801, +}; + +static inline bool aux_sym_annotation_token1_character_set_1(int32_t c) { + return (c < 192 + ? (c < 'A' + ? (c < '0' + ? c == '$' + : c <= '9') + : (c <= 'Z' || (c < 'a' + ? c == '_' + : c <= 'z'))) + : (c <= 214 || (c < 256 + ? (c < 248 + ? (c >= 216 && c <= 246) + : c <= 248) + : (c <= 55295 || (c >= 57344 && c <= 65534))))); +} + +static inline bool sym_identifier_character_set_1(int32_t c) { + return (c < 192 + ? (c < '_' + ? (c < 'A' + ? c == '$' + : c <= 'Z') + : (c <= '_' || (c >= 'a' && c <= 'z'))) + : (c <= 214 || (c < 256 + ? (c < 248 + ? (c >= 216 && c <= 246) + : c <= 248) + : (c <= 55295 || (c >= 57344 && c <= 65534))))); +} + +static inline bool sym_identifier_character_set_2(int32_t c) { + return (c < 192 + ? (c < '_' + ? (c < 'A' + ? (c >= '0' && c <= '9') + : c <= 'Z') + : (c <= '_' || (c >= 'a' && c <= 'z'))) + : (c <= 214 || (c < 256 + ? (c < 248 + ? (c >= 216 && c <= 246) + : c <= 248) + : (c <= 55295 || (c >= 57344 && c <= 65534))))); +} + +static inline bool sym_escape_sequence_character_set_1(int32_t c) { + return (c < '\\' + ? (c < '$' + ? (c < '"' + ? c == '\n' + : c <= '"') + : (c <= '$' || c == '\'')) + : (c <= '\\' || (c < 'n' + ? (c < 'f' + ? c == 'b' + : c <= 'f') + : (c <= 'n' || (c >= 'r' && c <= 't'))))); +} + +static bool ts_lex(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (eof) ADVANCE(99); + if (lookahead == '!') ADVANCE(322); + if (lookahead == '"') ADVANCE(288); + if (lookahead == '#') ADVANCE(6); + if (lookahead == '$') ADVANCE(314); + if (lookahead == '%') ADVANCE(141); + if (lookahead == '&') ADVANCE(183); + if (lookahead == '\'') ADVANCE(269); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(109); + if (lookahead == '+') ADVANCE(146); + if (lookahead == ',') ADVANCE(194); + if (lookahead == '-') ADVANCE(148); + if (lookahead == '.') ADVANCE(116); + if (lookahead == '/') ADVANCE(143); + if (lookahead == '0') ADVANCE(259); + if (lookahead == ':') ADVANCE(256); + if (lookahead == ';') ADVANCE(104); + if (lookahead == '<') ADVANCE(165); + if (lookahead == '=') ADVANCE(124); + if (lookahead == '>') ADVANCE(170); + if (lookahead == '?') ADVANCE(318); + if (lookahead == '@') ADVANCE(121); + if (lookahead == '[') ADVANCE(254); + if (lookahead == '\\') ADVANCE(43); + if (lookahead == ']') ADVANCE(255); + if (lookahead == '^') ADVANCE(185); + if (lookahead == '{') ADVANCE(195); + if (lookahead == '|') ADVANCE(186); + if (lookahead == '}') ADVANCE(197); + if (lookahead == '~') ADVANCE(320); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(0) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(260); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z') || + (192 <= lookahead && lookahead <= 214) || + (216 <= lookahead && lookahead <= 246) || + lookahead == 248 || + (256 <= lookahead && lookahead <= 55295) || + (57344 <= lookahead && lookahead <= 65534)) ADVANCE(252); + END_STATE(); + case 1: + if (lookahead == '\n') SKIP(14) + if (lookahead == '"') ADVANCE(287); + if (lookahead == '$') ADVANCE(313); + if (lookahead == '/') ADVANCE(290); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(291); + if (lookahead != 0) ADVANCE(292); + END_STATE(); + case 2: + if (lookahead == '\n') SKIP(24) + if (lookahead == '\'') ADVANCE(268); + if (lookahead == '/') ADVANCE(271); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(272); + if (lookahead != 0) ADVANCE(273); + END_STATE(); + case 3: + if (lookahead == '\n') SKIP(44) + if (lookahead == '/') ADVANCE(225); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(226); + if (lookahead != 0 && + lookahead != '.') ADVANCE(227); + END_STATE(); + case 4: + if (lookahead == '!') ADVANCE(322); + if (lookahead == '"') ADVANCE(288); + if (lookahead == '$') ADVANCE(251); + if (lookahead == '%') ADVANCE(141); + if (lookahead == '&') ADVANCE(183); + if (lookahead == '\'') ADVANCE(269); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(109); + if (lookahead == '+') ADVANCE(146); + if (lookahead == ',') ADVANCE(194); + if (lookahead == '-') ADVANCE(148); + if (lookahead == '.') ADVANCE(117); + if (lookahead == '/') ADVANCE(143); + if (lookahead == '0') ADVANCE(259); + if (lookahead == ';') ADVANCE(104); + if (lookahead == '<') ADVANCE(165); + if (lookahead == '=') ADVANCE(124); + if (lookahead == '>') ADVANCE(170); + if (lookahead == '?') ADVANCE(318); + if (lookahead == '@') ADVANCE(121); + if (lookahead == '[') ADVANCE(254); + if (lookahead == '^') ADVANCE(185); + if (lookahead == '{') ADVANCE(195); + if (lookahead == '|') ADVANCE(186); + if (lookahead == '}') ADVANCE(197); + if (lookahead == '~') ADVANCE(320); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(4) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(260); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (192 <= lookahead && lookahead <= 214) || + (216 <= lookahead && lookahead <= 246) || + lookahead == 248 || + (256 <= lookahead && lookahead <= 55295) || + (57344 <= lookahead && lookahead <= 65534)) ADVANCE(252); + END_STATE(); + case 5: + if (lookahead == '!') ADVANCE(322); + if (lookahead == '"') ADVANCE(288); + if (lookahead == '$') ADVANCE(251); + if (lookahead == '%') ADVANCE(140); + if (lookahead == '&') ADVANCE(182); + if (lookahead == '\'') ADVANCE(269); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(111); + if (lookahead == '+') ADVANCE(145); + if (lookahead == ',') ADVANCE(194); + if (lookahead == '-') ADVANCE(150); + if (lookahead == '.') ADVANCE(117); + if (lookahead == '/') ADVANCE(142); + if (lookahead == '0') ADVANCE(259); + if (lookahead == ':') ADVANCE(256); + if (lookahead == ';') ADVANCE(104); + if (lookahead == '<') ADVANCE(166); + if (lookahead == '=') ADVANCE(52); + if (lookahead == '>') ADVANCE(171); + if (lookahead == '?') ADVANCE(317); + if (lookahead == '@') ADVANCE(121); + if (lookahead == '[') ADVANCE(253); + if (lookahead == '^') ADVANCE(184); + if (lookahead == '{') ADVANCE(195); + if (lookahead == '|') ADVANCE(187); + if (lookahead == '}') ADVANCE(197); + if (lookahead == '~') ADVANCE(320); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(5) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(260); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (192 <= lookahead && lookahead <= 214) || + (216 <= lookahead && lookahead <= 246) || + lookahead == 248 || + (256 <= lookahead && lookahead <= 55295) || + (57344 <= lookahead && lookahead <= 65534)) ADVANCE(252); + END_STATE(); + case 6: + if (lookahead == '!') ADVANCE(100); + END_STATE(); + case 7: + if (lookahead == '!') ADVANCE(321); + if (lookahead == '"') ADVANCE(288); + if (lookahead == '$') ADVANCE(251); + if (lookahead == '\'') ADVANCE(269); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(113); + if (lookahead == '+') ADVANCE(145); + if (lookahead == '-') ADVANCE(151); + if (lookahead == '/') ADVANCE(142); + if (lookahead == '0') ADVANCE(259); + if (lookahead == ';') ADVANCE(104); + if (lookahead == '@') ADVANCE(120); + if (lookahead == '[') ADVANCE(253); + if (lookahead == '{') ADVANCE(195); + if (lookahead == '~') ADVANCE(320); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(7) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(260); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (192 <= lookahead && lookahead <= 214) || + (216 <= lookahead && lookahead <= 246) || + lookahead == 248 || + (256 <= lookahead && lookahead <= 55295) || + (57344 <= lookahead && lookahead <= 65534)) ADVANCE(252); + END_STATE(); + case 8: + if (lookahead == '!') ADVANCE(49); + if (lookahead == '%') ADVANCE(140); + if (lookahead == '&') ADVANCE(182); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(110); + if (lookahead == '+') ADVANCE(145); + if (lookahead == ',') ADVANCE(194); + if (lookahead == '-') ADVANCE(152); + if (lookahead == '.') ADVANCE(116); + if (lookahead == '/') ADVANCE(142); + if (lookahead == ':') ADVANCE(256); + if (lookahead == ';') ADVANCE(104); + if (lookahead == '<') ADVANCE(166); + if (lookahead == '=') ADVANCE(52); + if (lookahead == '>') ADVANCE(171); + if (lookahead == '?') ADVANCE(317); + if (lookahead == '[') ADVANCE(253); + if (lookahead == ']') ADVANCE(255); + if (lookahead == '^') ADVANCE(184); + if (lookahead == '{') ADVANCE(195); + if (lookahead == '|') ADVANCE(187); + if (lookahead == '}') ADVANCE(197); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(8) + if (sym_identifier_character_set_1(lookahead)) ADVANCE(252); + END_STATE(); + case 9: + if (lookahead == '!') ADVANCE(49); + if (lookahead == '%') ADVANCE(140); + if (lookahead == '&') ADVANCE(182); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(110); + if (lookahead == '+') ADVANCE(145); + if (lookahead == '-') ADVANCE(147); + if (lookahead == '.') ADVANCE(117); + if (lookahead == '/') ADVANCE(142); + if (lookahead == '<') ADVANCE(166); + if (lookahead == '=') ADVANCE(52); + if (lookahead == '>') ADVANCE(171); + if (lookahead == '?') ADVANCE(317); + if (lookahead == '[') ADVANCE(254); + if (lookahead == '^') ADVANCE(184); + if (lookahead == '|') ADVANCE(187); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(9) + if (sym_identifier_character_set_1(lookahead)) ADVANCE(252); + END_STATE(); + case 10: + if (lookahead == '!') ADVANCE(49); + if (lookahead == '%') ADVANCE(140); + if (lookahead == '&') ADVANCE(182); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(110); + if (lookahead == '+') ADVANCE(144); + if (lookahead == ',') ADVANCE(194); + if (lookahead == '-') ADVANCE(153); + if (lookahead == '.') ADVANCE(117); + if (lookahead == '/') ADVANCE(142); + if (lookahead == ':') ADVANCE(256); + if (lookahead == ';') ADVANCE(104); + if (lookahead == '<') ADVANCE(166); + if (lookahead == '=') ADVANCE(52); + if (lookahead == '>') ADVANCE(171); + if (lookahead == '?') ADVANCE(317); + if (lookahead == '[') ADVANCE(253); + if (lookahead == ']') ADVANCE(255); + if (lookahead == '^') ADVANCE(184); + if (lookahead == '|') ADVANCE(187); + if (lookahead == '}') ADVANCE(197); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(10) + if (sym_identifier_character_set_1(lookahead)) ADVANCE(252); + END_STATE(); + case 11: + if (lookahead == '"') ADVANCE(293); + END_STATE(); + case 12: + if (lookahead == '"') ADVANCE(300); + if (lookahead == '$') ADVANCE(313); + if (lookahead == '/') ADVANCE(297); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(295); + if (lookahead != 0) ADVANCE(298); + END_STATE(); + case 13: + if (lookahead == '"') ADVANCE(92); + if (lookahead != 0 && + lookahead != '$' && + lookahead != '\\') ADVANCE(298); + END_STATE(); + case 14: + if (lookahead == '"') ADVANCE(287); + if (lookahead == '$') ADVANCE(313); + if (lookahead == '/') ADVANCE(27); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(14) + END_STATE(); + case 15: + if (lookahead == '$') ADVANCE(315); + if (lookahead == '/') ADVANCE(16); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(306); + if (lookahead != 0) ADVANCE(308); + END_STATE(); + case 16: + if (lookahead == '$') ADVANCE(311); + if (lookahead == '*') ADVANCE(307); + if (lookahead == '/') ADVANCE(305); + if (lookahead != 0) ADVANCE(308); + END_STATE(); + case 17: + if (lookahead == '$') ADVANCE(313); + if (lookahead == '/') ADVANCE(142); + if (lookahead == '\\') ADVANCE(42); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(301); + if (lookahead != 0) ADVANCE(302); + END_STATE(); + case 18: + if (lookahead == '$') ADVANCE(313); + if (lookahead == '/') ADVANCE(27); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == '{') ADVANCE(195); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(18) + END_STATE(); + case 19: + if (lookahead == '$') ADVANCE(313); + if (lookahead == '/') ADVANCE(27); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == '{') ADVANCE(195); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(18) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(316); + END_STATE(); + case 20: + if (lookahead == '%') ADVANCE(50); + if (lookahead == '&') ADVANCE(51); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(38); + if (lookahead == '+') ADVANCE(39); + if (lookahead == ',') ADVANCE(194); + if (lookahead == '-') ADVANCE(40); + if (lookahead == '.') ADVANCE(115); + if (lookahead == '/') ADVANCE(28); + if (lookahead == '0') ADVANCE(259); + if (lookahead == ';') ADVANCE(104); + if (lookahead == '<') ADVANCE(48); + if (lookahead == '=') ADVANCE(123); + if (lookahead == '>') ADVANCE(61); + if (lookahead == '?') ADVANCE(53); + if (lookahead == '[') ADVANCE(253); + if (lookahead == ']') ADVANCE(255); + if (lookahead == '^') ADVANCE(54); + if (lookahead == '|') ADVANCE(55); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(20) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(260); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(252); + END_STATE(); + case 21: + if (lookahead == '\'') ADVANCE(274); + END_STATE(); + case 22: + if (lookahead == '\'') ADVANCE(276); + if (lookahead == '/') ADVANCE(279); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(281); + if (lookahead != 0) ADVANCE(280); + END_STATE(); + case 23: + if (lookahead == '\'') ADVANCE(93); + if (lookahead != 0 && + lookahead != '\\') ADVANCE(280); + END_STATE(); + case 24: + if (lookahead == '\'') ADVANCE(268); + if (lookahead == '/') ADVANCE(27); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(24) + END_STATE(); + case 25: + if (lookahead == '\'') ADVANCE(284); + if (lookahead == '/') ADVANCE(279); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(282); + if (lookahead != 0) ADVANCE(280); + END_STATE(); + case 26: + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == ',') ADVANCE(194); + if (lookahead == '-') ADVANCE(60); + if (lookahead == '.') ADVANCE(115); + if (lookahead == '/') ADVANCE(27); + if (lookahead == '<') ADVANCE(164); + if (lookahead == '=') ADVANCE(123); + if (lookahead == '>') ADVANCE(169); + if (lookahead == '[') ADVANCE(254); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(26) + if (sym_identifier_character_set_1(lookahead)) ADVANCE(252); + END_STATE(); + case 27: + if (lookahead == '*') ADVANCE(211); + if (lookahead == '/') ADVANCE(210); + END_STATE(); + case 28: + if (lookahead == '*') ADVANCE(211); + if (lookahead == '/') ADVANCE(210); + if (lookahead == '=') ADVANCE(127); + END_STATE(); + case 29: + if (lookahead == '*') ADVANCE(46); + if (lookahead == '/') ADVANCE(30); + if (lookahead == '@') ADVANCE(247); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(37); + if (lookahead != 0) ADVANCE(31); + END_STATE(); + case 30: + if (lookahead == '*') ADVANCE(212); + if (lookahead == '/') ADVANCE(208); + if (lookahead == '@') ADVANCE(62); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') ADVANCE(232); + END_STATE(); + case 31: + if (lookahead == '*') ADVANCE(95); + if (lookahead == '@') ADVANCE(62); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') ADVANCE(232); + END_STATE(); + case 32: + if (lookahead == '*') ADVANCE(223); + if (lookahead == '/') ADVANCE(27); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(222); + END_STATE(); + case 33: + if (lookahead == '*') ADVANCE(33); + if (lookahead == '/') ADVANCE(216); + if (lookahead != 0) ADVANCE(35); + END_STATE(); + case 34: + if (lookahead == '*') ADVANCE(33); + if (lookahead == '/') ADVANCE(36); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(34); + if (lookahead != 0) ADVANCE(35); + END_STATE(); + case 35: + if (lookahead == '*') ADVANCE(33); + if (lookahead != 0) ADVANCE(35); + END_STATE(); + case 36: + if (lookahead == '*') ADVANCE(215); + if (lookahead == '/') ADVANCE(206); + if (lookahead != 0) ADVANCE(35); + END_STATE(); + case 37: + if (lookahead == '*') ADVANCE(47); + if (lookahead == '/') ADVANCE(230); + if (lookahead == '@') ADVANCE(246); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(37); + if (lookahead != 0) ADVANCE(232); + END_STATE(); + case 38: + if (lookahead == '*') ADVANCE(56); + if (lookahead == '=') ADVANCE(126); + END_STATE(); + case 39: + if (lookahead == '+') ADVANCE(138); + if (lookahead == '=') ADVANCE(129); + END_STATE(); + case 40: + if (lookahead == '-') ADVANCE(139); + if (lookahead == '0') ADVANCE(259); + if (lookahead == '=') ADVANCE(130); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(260); + END_STATE(); + case 41: + if (lookahead == '.') ADVANCE(163); + END_STATE(); + case 42: + if (lookahead == '/') ADVANCE(303); + END_STATE(); + case 43: + if (lookahead == '/') ADVANCE(303); + if (lookahead == 'u') ADVANCE(89); + if (sym_escape_sequence_character_set_1(lookahead)) ADVANCE(312); + END_STATE(); + case 44: + if (lookahead == '/') ADVANCE(27); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(44) + END_STATE(); + case 45: + if (lookahead == '/') ADVANCE(27); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(44) + if (sym_identifier_character_set_1(lookahead)) ADVANCE(122); + END_STATE(); + case 46: + if (lookahead == '/') ADVANCE(233); + if (lookahead != 0) ADVANCE(31); + END_STATE(); + case 47: + if (lookahead == '/') ADVANCE(233); + if (lookahead != 0) ADVANCE(231); + END_STATE(); + case 48: + if (lookahead == '<') ADVANCE(57); + END_STATE(); + case 49: + if (lookahead == '=') ADVANCE(176); + if (lookahead == 'i') ADVANCE(72); + END_STATE(); + case 50: + if (lookahead == '=') ADVANCE(128); + END_STATE(); + case 51: + if (lookahead == '=') ADVANCE(134); + END_STATE(); + case 52: + if (lookahead == '=') ADVANCE(175); + if (lookahead == '~') ADVANCE(180); + END_STATE(); + case 53: + if (lookahead == '=') ADVANCE(137); + END_STATE(); + case 54: + if (lookahead == '=') ADVANCE(135); + END_STATE(); + case 55: + if (lookahead == '=') ADVANCE(136); + END_STATE(); + case 56: + if (lookahead == '=') ADVANCE(125); + END_STATE(); + case 57: + if (lookahead == '=') ADVANCE(131); + END_STATE(); + case 58: + if (lookahead == '=') ADVANCE(132); + if (lookahead == '>') ADVANCE(59); + END_STATE(); + case 59: + if (lookahead == '=') ADVANCE(133); + END_STATE(); + case 60: + if (lookahead == '>') ADVANCE(196); + END_STATE(); + case 61: + if (lookahead == '>') ADVANCE(58); + END_STATE(); + case 62: + if (lookahead == '@') ADVANCE(231); + END_STATE(); + case 63: + if (lookahead == 'a') ADVANCE(74); + END_STATE(); + case 64: + if (lookahead == 'a') ADVANCE(66); + END_STATE(); + case 65: + if (lookahead == 'c') ADVANCE(68); + END_STATE(); + case 66: + if (lookahead == 'c') ADVANCE(69); + END_STATE(); + case 67: + if (lookahead == 'e') ADVANCE(76); + END_STATE(); + case 68: + if (lookahead == 'e') ADVANCE(75); + END_STATE(); + case 69: + if (lookahead == 'e') ADVANCE(193); + END_STATE(); + case 70: + if (lookahead == 'f') ADVANCE(174); + END_STATE(); + case 71: + if (lookahead == 'f') ADVANCE(64); + END_STATE(); + case 72: + if (lookahead == 'n') ADVANCE(173); + END_STATE(); + case 73: + if (lookahead == 'n') ADVANCE(77); + END_STATE(); + case 74: + if (lookahead == 'n') ADVANCE(65); + END_STATE(); + case 75: + if (lookahead == 'o') ADVANCE(70); + END_STATE(); + case 76: + if (lookahead == 'r') ADVANCE(71); + END_STATE(); + case 77: + if (lookahead == 't') ADVANCE(67); + END_STATE(); + case 78: + if (lookahead == 't') ADVANCE(63); + END_STATE(); + case 79: + if (lookahead == 'u') ADVANCE(89); + if (sym_escape_sequence_character_set_1(lookahead)) ADVANCE(312); + END_STATE(); + case 80: + if (lookahead == '0' || + lookahead == '1') ADVANCE(264); + END_STATE(); + case 81: + if (lookahead == '8' || + lookahead == '9') ADVANCE(260); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(258); + END_STATE(); + case 82: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(260); + END_STATE(); + case 83: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(266); + END_STATE(); + case 84: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(267); + END_STATE(); + case 85: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(312); + END_STATE(); + case 86: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(262); + END_STATE(); + case 87: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(85); + END_STATE(); + case 88: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(87); + END_STATE(); + case 89: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(88); + END_STATE(); + case 90: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(316); + END_STATE(); + case 91: + if (lookahead != 0 && + lookahead != '$' && + lookahead != '/' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || '{' < lookahead)) ADVANCE(308); + END_STATE(); + case 92: + if (lookahead != 0 && + lookahead != '"' && + lookahead != '$' && + lookahead != '\\') ADVANCE(298); + END_STATE(); + case 93: + if (lookahead != 0 && + lookahead != '\'' && + lookahead != '\\') ADVANCE(280); + END_STATE(); + case 94: + if (lookahead != 0 && + lookahead != '$') ADVANCE(308); + END_STATE(); + case 95: + if (lookahead != 0 && + lookahead != '/') ADVANCE(231); + END_STATE(); + case 96: + if (eof) ADVANCE(99); + if (lookahead == '!') ADVANCE(321); + if (lookahead == '"') ADVANCE(288); + if (lookahead == '#') ADVANCE(6); + if (lookahead == '$') ADVANCE(251); + if (lookahead == '\'') ADVANCE(269); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(113); + if (lookahead == '+') ADVANCE(145); + if (lookahead == ',') ADVANCE(194); + if (lookahead == '-') ADVANCE(150); + if (lookahead == '.') ADVANCE(118); + if (lookahead == '/') ADVANCE(142); + if (lookahead == '0') ADVANCE(259); + if (lookahead == ':') ADVANCE(256); + if (lookahead == ';') ADVANCE(104); + if (lookahead == '=') ADVANCE(123); + if (lookahead == '>') ADVANCE(169); + if (lookahead == '@') ADVANCE(121); + if (lookahead == '[') ADVANCE(253); + if (lookahead == ']') ADVANCE(255); + if (lookahead == '{') ADVANCE(195); + if (lookahead == '}') ADVANCE(197); + if (lookahead == '~') ADVANCE(320); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(96) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(260); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (192 <= lookahead && lookahead <= 214) || + (216 <= lookahead && lookahead <= 246) || + lookahead == 248 || + (256 <= lookahead && lookahead <= 55295) || + (57344 <= lookahead && lookahead <= 65534)) ADVANCE(252); + END_STATE(); + case 97: + if (eof) ADVANCE(99); + if (lookahead == '!') ADVANCE(321); + if (lookahead == '"') ADVANCE(288); + if (lookahead == '$') ADVANCE(251); + if (lookahead == '%') ADVANCE(50); + if (lookahead == '&') ADVANCE(51); + if (lookahead == '\'') ADVANCE(269); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(112); + if (lookahead == '+') ADVANCE(146); + if (lookahead == ',') ADVANCE(194); + if (lookahead == '-') ADVANCE(149); + if (lookahead == '.') ADVANCE(115); + if (lookahead == '/') ADVANCE(143); + if (lookahead == '0') ADVANCE(259); + if (lookahead == ';') ADVANCE(104); + if (lookahead == '<') ADVANCE(167); + if (lookahead == '=') ADVANCE(123); + if (lookahead == '>') ADVANCE(61); + if (lookahead == '?') ADVANCE(53); + if (lookahead == '@') ADVANCE(121); + if (lookahead == '[') ADVANCE(254); + if (lookahead == '^') ADVANCE(54); + if (lookahead == '{') ADVANCE(195); + if (lookahead == '|') ADVANCE(55); + if (lookahead == '}') ADVANCE(197); + if (lookahead == '~') ADVANCE(320); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(97) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(260); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (192 <= lookahead && lookahead <= 214) || + (216 <= lookahead && lookahead <= 246) || + lookahead == 248 || + (256 <= lookahead && lookahead <= 55295) || + (57344 <= lookahead && lookahead <= 65534)) ADVANCE(252); + END_STATE(); + case 98: + if (eof) ADVANCE(99); + if (lookahead == '!') ADVANCE(49); + if (lookahead == '"') ADVANCE(288); + if (lookahead == '$') ADVANCE(251); + if (lookahead == '%') ADVANCE(140); + if (lookahead == '&') ADVANCE(182); + if (lookahead == '\'') ADVANCE(269); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(110); + if (lookahead == '+') ADVANCE(145); + if (lookahead == ',') ADVANCE(194); + if (lookahead == '-') ADVANCE(147); + if (lookahead == '.') ADVANCE(116); + if (lookahead == '/') ADVANCE(142); + if (lookahead == ':') ADVANCE(256); + if (lookahead == ';') ADVANCE(104); + if (lookahead == '<') ADVANCE(166); + if (lookahead == '=') ADVANCE(52); + if (lookahead == '>') ADVANCE(171); + if (lookahead == '?') ADVANCE(317); + if (lookahead == '@') ADVANCE(121); + if (lookahead == '[') ADVANCE(253); + if (lookahead == '^') ADVANCE(184); + if (lookahead == '{') ADVANCE(195); + if (lookahead == '|') ADVANCE(187); + if (lookahead == '}') ADVANCE(197); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(98) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (192 <= lookahead && lookahead <= 214) || + (216 <= lookahead && lookahead <= 246) || + lookahead == 248 || + (256 <= lookahead && lookahead <= 55295) || + (57344 <= lookahead && lookahead <= 65534)) ADVANCE(252); + END_STATE(); + case 99: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 100: + ACCEPT_TOKEN(anon_sym_POUND_BANG); + END_STATE(); + case 101: + ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead == '*') ADVANCE(214); + if (lookahead == '/') ADVANCE(103); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(103); + END_STATE(); + case 102: + ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead == '/') ADVANCE(101); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(102); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(103); + END_STATE(); + case 103: + ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(103); + END_STATE(); + case 104: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 105: + ACCEPT_TOKEN(anon_sym_DOT_AMP); + END_STATE(); + case 106: + ACCEPT_TOKEN(anon_sym_DOT_AT); + END_STATE(); + case 107: + ACCEPT_TOKEN(anon_sym_QMARK_DOT); + END_STATE(); + case 108: + ACCEPT_TOKEN(anon_sym_STAR_DOT); + END_STATE(); + case 109: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(192); + if (lookahead == '.') ADVANCE(108); + if (lookahead == ':') ADVANCE(114); + if (lookahead == '=') ADVANCE(126); + END_STATE(); + case 110: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(191); + if (lookahead == '.') ADVANCE(108); + END_STATE(); + case 111: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(191); + if (lookahead == '.') ADVANCE(108); + if (lookahead == ':') ADVANCE(114); + END_STATE(); + case 112: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(56); + if (lookahead == ':') ADVANCE(114); + if (lookahead == '=') ADVANCE(126); + END_STATE(); + case 113: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == ':') ADVANCE(114); + END_STATE(); + case 114: + ACCEPT_TOKEN(anon_sym_STAR_COLON); + END_STATE(); + case 115: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 116: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '&') ADVANCE(105); + if (lookahead == '*') ADVANCE(119); + if (lookahead == '.') ADVANCE(160); + if (lookahead == '@') ADVANCE(106); + END_STATE(); + case 117: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '&') ADVANCE(105); + if (lookahead == '.') ADVANCE(160); + if (lookahead == '@') ADVANCE(106); + END_STATE(); + case 118: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '*') ADVANCE(119); + END_STATE(); + case 119: + ACCEPT_TOKEN(anon_sym_DOT_STAR); + END_STATE(); + case 120: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 121: + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == 'i') ADVANCE(73); + END_STATE(); + case 122: + ACCEPT_TOKEN(aux_sym_annotation_token1); + if (aux_sym_annotation_token1_character_set_1(lookahead)) ADVANCE(122); + END_STATE(); + case 123: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 124: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(175); + if (lookahead == '~') ADVANCE(180); + END_STATE(); + case 125: + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + END_STATE(); + case 126: + ACCEPT_TOKEN(anon_sym_STAR_EQ); + END_STATE(); + case 127: + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + END_STATE(); + case 128: + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + END_STATE(); + case 129: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + END_STATE(); + case 130: + ACCEPT_TOKEN(anon_sym_DASH_EQ); + END_STATE(); + case 131: + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + END_STATE(); + case 132: + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + END_STATE(); + case 133: + ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); + END_STATE(); + case 134: + ACCEPT_TOKEN(anon_sym_AMP_EQ); + END_STATE(); + case 135: + ACCEPT_TOKEN(anon_sym_CARET_EQ); + END_STATE(); + case 136: + ACCEPT_TOKEN(anon_sym_PIPE_EQ); + END_STATE(); + case 137: + ACCEPT_TOKEN(anon_sym_QMARK_EQ); + END_STATE(); + case 138: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + END_STATE(); + case 139: + ACCEPT_TOKEN(anon_sym_DASH_DASH); + END_STATE(); + case 140: + ACCEPT_TOKEN(anon_sym_PERCENT); + END_STATE(); + case 141: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(128); + END_STATE(); + case 142: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(211); + if (lookahead == '/') ADVANCE(210); + END_STATE(); + case 143: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(211); + if (lookahead == '/') ADVANCE(210); + if (lookahead == '=') ADVANCE(127); + END_STATE(); + case 144: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); + case 145: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(138); + END_STATE(); + case 146: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(138); + if (lookahead == '=') ADVANCE(129); + END_STATE(); + case 147: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(139); + END_STATE(); + case 148: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(139); + if (lookahead == '0') ADVANCE(259); + if (lookahead == '=') ADVANCE(130); + if (lookahead == '>') ADVANCE(196); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(260); + END_STATE(); + case 149: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(139); + if (lookahead == '0') ADVANCE(259); + if (lookahead == '=') ADVANCE(130); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(260); + END_STATE(); + case 150: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(139); + if (lookahead == '0') ADVANCE(259); + if (lookahead == '>') ADVANCE(196); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(260); + END_STATE(); + case 151: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(139); + if (lookahead == '0') ADVANCE(259); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(260); + END_STATE(); + case 152: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(139); + if (lookahead == '>') ADVANCE(196); + END_STATE(); + case 153: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '>') ADVANCE(196); + END_STATE(); + case 154: + ACCEPT_TOKEN(anon_sym_LT_LT); + END_STATE(); + case 155: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(131); + END_STATE(); + case 156: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(132); + if (lookahead == '>') ADVANCE(159); + END_STATE(); + case 157: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '>') ADVANCE(158); + END_STATE(); + case 158: + ACCEPT_TOKEN(anon_sym_GT_GT_GT); + END_STATE(); + case 159: + ACCEPT_TOKEN(anon_sym_GT_GT_GT); + if (lookahead == '=') ADVANCE(133); + END_STATE(); + case 160: + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '<') ADVANCE(161); + END_STATE(); + case 161: + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); + END_STATE(); + case 162: + ACCEPT_TOKEN(anon_sym_LT_DOT_DOT_LT); + END_STATE(); + case 163: + ACCEPT_TOKEN(anon_sym_LT_DOT_DOT); + if (lookahead == '<') ADVANCE(162); + END_STATE(); + case 164: + ACCEPT_TOKEN(anon_sym_LT); + END_STATE(); + case 165: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '.') ADVANCE(41); + if (lookahead == '<') ADVANCE(155); + if (lookahead == '=') ADVANCE(168); + END_STATE(); + case 166: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '.') ADVANCE(41); + if (lookahead == '<') ADVANCE(154); + if (lookahead == '=') ADVANCE(168); + END_STATE(); + case 167: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(57); + END_STATE(); + case 168: + ACCEPT_TOKEN(anon_sym_LT_EQ); + if (lookahead == '>') ADVANCE(177); + END_STATE(); + case 169: + ACCEPT_TOKEN(anon_sym_GT); + END_STATE(); + case 170: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(172); + if (lookahead == '>') ADVANCE(156); + END_STATE(); + case 171: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(172); + if (lookahead == '>') ADVANCE(157); + END_STATE(); + case 172: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 173: + ACCEPT_TOKEN(anon_sym_BANGin); + if (lookahead == 's') ADVANCE(78); + END_STATE(); + case 174: + ACCEPT_TOKEN(anon_sym_BANGinstanceof); + END_STATE(); + case 175: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '=') ADVANCE(178); + if (lookahead == '~') ADVANCE(181); + END_STATE(); + case 176: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '=') ADVANCE(179); + END_STATE(); + case 177: + ACCEPT_TOKEN(anon_sym_LT_EQ_GT); + END_STATE(); + case 178: + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + END_STATE(); + case 179: + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); + END_STATE(); + case 180: + ACCEPT_TOKEN(anon_sym_EQ_TILDE); + END_STATE(); + case 181: + ACCEPT_TOKEN(anon_sym_EQ_EQ_TILDE); + END_STATE(); + case 182: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(188); + END_STATE(); + case 183: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(188); + if (lookahead == '=') ADVANCE(134); + END_STATE(); + case 184: + ACCEPT_TOKEN(anon_sym_CARET); + END_STATE(); + case 185: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(135); + END_STATE(); + case 186: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(136); + if (lookahead == '|') ADVANCE(189); + END_STATE(); + case 187: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(189); + END_STATE(); + case 188: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + END_STATE(); + case 189: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + END_STATE(); + case 190: + ACCEPT_TOKEN(anon_sym_QMARK_COLON); + END_STATE(); + case 191: + ACCEPT_TOKEN(anon_sym_STAR_STAR); + END_STATE(); + case 192: + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(125); + END_STATE(); + case 193: + ACCEPT_TOKEN(anon_sym_ATinterface); + END_STATE(); + case 194: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 195: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 196: + ACCEPT_TOKEN(anon_sym_DASH_GT); + END_STATE(); + case 197: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 198: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == '\n') ADVANCE(231); + if (lookahead == '/') ADVANCE(210); + if (lookahead != 0) ADVANCE(207); + END_STATE(); + case 199: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == '\n') ADVANCE(308); + if (lookahead == '$') ADVANCE(210); + if (lookahead != 0) ADVANCE(305); + END_STATE(); + case 200: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == '\n') ADVANCE(308); + if (lookahead == '$' || + lookahead == '/' || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= '{')) ADVANCE(210); + if (lookahead != 0) ADVANCE(305); + END_STATE(); + case 201: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == '\n') ADVANCE(298); + if (lookahead == '"') ADVANCE(202); + if (lookahead == '$' || + lookahead == '\\') ADVANCE(210); + if (lookahead != 0) ADVANCE(294); + END_STATE(); + case 202: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == '\n') ADVANCE(298); + if (lookahead == '"' || + lookahead == '$' || + lookahead == '\\') ADVANCE(210); + if (lookahead != 0) ADVANCE(294); + END_STATE(); + case 203: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == '\n') ADVANCE(280); + if (lookahead == '\'') ADVANCE(204); + if (lookahead == '\\') ADVANCE(210); + if (lookahead != 0) ADVANCE(277); + END_STATE(); + case 204: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == '\n') ADVANCE(280); + if (lookahead == '\'' || + lookahead == '\\') ADVANCE(210); + if (lookahead != 0) ADVANCE(277); + END_STATE(); + case 205: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == '\n') ADVANCE(35); + if (lookahead == '*') ADVANCE(205); + if (lookahead == '/') ADVANCE(210); + if (lookahead != 0) ADVANCE(206); + END_STATE(); + case 206: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == '\n') ADVANCE(35); + if (lookahead == '*') ADVANCE(205); + if (lookahead != 0) ADVANCE(206); + END_STATE(); + case 207: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == '*') ADVANCE(198); + if (lookahead == '@') ADVANCE(209); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(210); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(208); + END_STATE(); + case 208: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == '*') ADVANCE(198); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') ADVANCE(208); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(210); + END_STATE(); + case 209: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == '@') ADVANCE(207); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(210); + END_STATE(); + case 210: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(210); + END_STATE(); + case 211: + ACCEPT_TOKEN(anon_sym_SLASH_STAR); + if (lookahead == '*') ADVANCE(217); + END_STATE(); + case 212: + ACCEPT_TOKEN(anon_sym_SLASH_STAR); + if (lookahead == '*') ADVANCE(218); + if (lookahead != 0 && + lookahead != '/') ADVANCE(231); + END_STATE(); + case 213: + ACCEPT_TOKEN(anon_sym_SLASH_STAR); + if (lookahead == '*') ADVANCE(220); + if (lookahead == '.') ADVANCE(224); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(227); + END_STATE(); + case 214: + ACCEPT_TOKEN(anon_sym_SLASH_STAR); + if (lookahead == '*') ADVANCE(221); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(103); + END_STATE(); + case 215: + ACCEPT_TOKEN(anon_sym_SLASH_STAR); + if (lookahead == '*') ADVANCE(219); + if (lookahead == '/') ADVANCE(216); + if (lookahead != 0) ADVANCE(35); + END_STATE(); + case 216: + ACCEPT_TOKEN(aux_sym_comment_token2); + END_STATE(); + case 217: + ACCEPT_TOKEN(anon_sym_SLASH_STAR_STAR); + END_STATE(); + case 218: + ACCEPT_TOKEN(anon_sym_SLASH_STAR_STAR); + if (lookahead == '*') ADVANCE(95); + if (lookahead == '@') ADVANCE(62); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') ADVANCE(232); + END_STATE(); + case 219: + ACCEPT_TOKEN(anon_sym_SLASH_STAR_STAR); + if (lookahead == '*') ADVANCE(33); + if (lookahead == '/') ADVANCE(216); + if (lookahead != 0) ADVANCE(35); + END_STATE(); + case 220: + ACCEPT_TOKEN(anon_sym_SLASH_STAR_STAR); + if (lookahead == '.') ADVANCE(224); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(227); + END_STATE(); + case 221: + ACCEPT_TOKEN(anon_sym_SLASH_STAR_STAR); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(103); + END_STATE(); + case 222: + ACCEPT_TOKEN(aux_sym_groovy_doc_token1); + if (lookahead == '*') ADVANCE(223); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(222); + END_STATE(); + case 223: + ACCEPT_TOKEN(aux_sym_groovy_doc_token1); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == '*') ADVANCE(223); + END_STATE(); + case 224: + ACCEPT_TOKEN(aux_sym_groovy_doc_token2); + END_STATE(); + case 225: + ACCEPT_TOKEN(aux_sym_groovy_doc_token2); + if (lookahead == '*') ADVANCE(213); + if (lookahead == '.') ADVANCE(224); + if (lookahead == '/') ADVANCE(228); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(227); + END_STATE(); + case 226: + ACCEPT_TOKEN(aux_sym_groovy_doc_token2); + if (lookahead == '.') ADVANCE(224); + if (lookahead == '/') ADVANCE(225); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(226); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(227); + END_STATE(); + case 227: + ACCEPT_TOKEN(aux_sym_groovy_doc_token2); + if (lookahead == '.') ADVANCE(224); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(227); + END_STATE(); + case 228: + ACCEPT_TOKEN(aux_sym_groovy_doc_token2); + if (lookahead == '.') ADVANCE(229); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(228); + END_STATE(); + case 229: + ACCEPT_TOKEN(aux_sym_groovy_doc_token2); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(210); + END_STATE(); + case 230: + ACCEPT_TOKEN(aux_sym_groovy_doc_token3); + if (lookahead == '*') ADVANCE(212); + if (lookahead == '/') ADVANCE(208); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') ADVANCE(232); + END_STATE(); + case 231: + ACCEPT_TOKEN(aux_sym_groovy_doc_token3); + if (lookahead == '*') ADVANCE(95); + if (lookahead == '@') ADVANCE(62); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') ADVANCE(232); + END_STATE(); + case 232: + ACCEPT_TOKEN(aux_sym_groovy_doc_token3); + if (lookahead == '*') ADVANCE(95); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') ADVANCE(232); + END_STATE(); + case 233: + ACCEPT_TOKEN(anon_sym_STAR_SLASH); + END_STATE(); + case 234: + ACCEPT_TOKEN(anon_sym_ATparam); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '*' && + lookahead != '@') ADVANCE(248); + END_STATE(); + case 235: + ACCEPT_TOKEN(anon_sym_ATthrows); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '*' && + lookahead != '@') ADVANCE(248); + END_STATE(); + case 236: + ACCEPT_TOKEN(sym_groovy_doc_tag); + if (lookahead == 'a') ADVANCE(242); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(245); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '*' && + lookahead != '@') ADVANCE(248); + END_STATE(); + case 237: + ACCEPT_TOKEN(sym_groovy_doc_tag); + if (lookahead == 'a') ADVANCE(239); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(245); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '*' && + lookahead != '@') ADVANCE(248); + END_STATE(); + case 238: + ACCEPT_TOKEN(sym_groovy_doc_tag); + if (lookahead == 'h') ADVANCE(241); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '*' && + lookahead != '@') ADVANCE(248); + END_STATE(); + case 239: + ACCEPT_TOKEN(sym_groovy_doc_tag); + if (lookahead == 'm') ADVANCE(234); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '*' && + lookahead != '@') ADVANCE(248); + END_STATE(); + case 240: + ACCEPT_TOKEN(sym_groovy_doc_tag); + if (lookahead == 'o') ADVANCE(244); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '*' && + lookahead != '@') ADVANCE(248); + END_STATE(); + case 241: + ACCEPT_TOKEN(sym_groovy_doc_tag); + if (lookahead == 'r') ADVANCE(240); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '*' && + lookahead != '@') ADVANCE(248); + END_STATE(); + case 242: + ACCEPT_TOKEN(sym_groovy_doc_tag); + if (lookahead == 'r') ADVANCE(237); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '*' && + lookahead != '@') ADVANCE(248); + END_STATE(); + case 243: + ACCEPT_TOKEN(sym_groovy_doc_tag); + if (lookahead == 's') ADVANCE(235); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '*' && + lookahead != '@') ADVANCE(248); + END_STATE(); + case 244: + ACCEPT_TOKEN(sym_groovy_doc_tag); + if (lookahead == 'w') ADVANCE(243); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '*' && + lookahead != '@') ADVANCE(248); + END_STATE(); + case 245: + ACCEPT_TOKEN(sym_groovy_doc_tag); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '*' && + lookahead != '@') ADVANCE(248); + END_STATE(); + case 246: + ACCEPT_TOKEN(sym_groovy_doc_at_text); + if (lookahead == '@') ADVANCE(231); + if (lookahead == 'p') ADVANCE(236); + if (lookahead == 't') ADVANCE(238); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '*') ADVANCE(248); + END_STATE(); + case 247: + ACCEPT_TOKEN(sym_groovy_doc_at_text); + if (lookahead == 'p') ADVANCE(236); + if (lookahead == 't') ADVANCE(238); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '*' && + lookahead != '@') ADVANCE(248); + END_STATE(); + case 248: + ACCEPT_TOKEN(sym_groovy_doc_at_text); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '*' && + lookahead != '@') ADVANCE(248); + END_STATE(); + case 249: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 250: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 251: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '/') ADVANCE(304); + if (aux_sym_annotation_token1_character_set_1(lookahead)) ADVANCE(252); + END_STATE(); + case 252: + ACCEPT_TOKEN(sym_identifier); + if (aux_sym_annotation_token1_character_set_1(lookahead)) ADVANCE(252); + END_STATE(); + case 253: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 254: + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == ']') ADVANCE(319); + END_STATE(); + case 255: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 256: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 257: + ACCEPT_TOKEN(aux_sym_number_literal_token1); + END_STATE(); + case 258: + ACCEPT_TOKEN(aux_sym_number_literal_token1); + if (lookahead == '.') ADVANCE(83); + if (lookahead == '_') ADVANCE(81); + if (lookahead == '8' || + lookahead == '9') ADVANCE(260); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(258); + if (lookahead == 'D' || + lookahead == 'F' || + lookahead == 'G' || + lookahead == 'I' || + lookahead == 'L' || + lookahead == 'd' || + lookahead == 'f' || + lookahead == 'g' || + lookahead == 'i' || + lookahead == 'l') ADVANCE(257); + END_STATE(); + case 259: + ACCEPT_TOKEN(aux_sym_number_literal_token1); + if (lookahead == '.') ADVANCE(83); + if (lookahead == '_') ADVANCE(82); + if (lookahead == 'b') ADVANCE(80); + if (lookahead == 'x') ADVANCE(86); + if (lookahead == '8' || + lookahead == '9') ADVANCE(260); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(258); + if (lookahead == 'D' || + lookahead == 'F' || + lookahead == 'G' || + lookahead == 'I' || + lookahead == 'L' || + lookahead == 'd' || + lookahead == 'f' || + lookahead == 'g' || + lookahead == 'i' || + lookahead == 'l') ADVANCE(257); + END_STATE(); + case 260: + ACCEPT_TOKEN(aux_sym_number_literal_token1); + if (lookahead == '.') ADVANCE(83); + if (lookahead == '_') ADVANCE(82); + if (lookahead == 'D' || + lookahead == 'F' || + lookahead == 'G' || + lookahead == 'I' || + lookahead == 'L' || + lookahead == 'd' || + lookahead == 'f' || + lookahead == 'g' || + lookahead == 'i' || + lookahead == 'l') ADVANCE(257); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(260); + END_STATE(); + case 261: + ACCEPT_TOKEN(aux_sym_number_literal_token2); + END_STATE(); + case 262: + ACCEPT_TOKEN(aux_sym_number_literal_token2); + if (lookahead == '_') ADVANCE(86); + if (lookahead == 'D' || + lookahead == 'F' || + lookahead == 'd' || + lookahead == 'f') ADVANCE(262); + if (lookahead == 'G' || + lookahead == 'I' || + lookahead == 'L' || + lookahead == 'g' || + lookahead == 'i' || + lookahead == 'l') ADVANCE(261); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'E') || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(262); + END_STATE(); + case 263: + ACCEPT_TOKEN(aux_sym_number_literal_token3); + END_STATE(); + case 264: + ACCEPT_TOKEN(aux_sym_number_literal_token3); + if (lookahead == '_') ADVANCE(80); + if (lookahead == '0' || + lookahead == '1') ADVANCE(264); + if (lookahead == 'D' || + lookahead == 'F' || + lookahead == 'G' || + lookahead == 'I' || + lookahead == 'L' || + lookahead == 'd' || + lookahead == 'f' || + lookahead == 'g' || + lookahead == 'i' || + lookahead == 'l') ADVANCE(263); + END_STATE(); + case 265: + ACCEPT_TOKEN(aux_sym_number_literal_token5); + END_STATE(); + case 266: + ACCEPT_TOKEN(aux_sym_number_literal_token5); + if (lookahead == '_') ADVANCE(83); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(84); + if (('D' <= lookahead && lookahead <= 'G') || + lookahead == 'I' || + lookahead == 'L' || + ('d' <= lookahead && lookahead <= 'g') || + lookahead == 'i' || + lookahead == 'l') ADVANCE(265); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(266); + END_STATE(); + case 267: + ACCEPT_TOKEN(aux_sym_number_literal_token5); + if (lookahead == 'D' || + lookahead == 'F' || + lookahead == 'G' || + lookahead == 'I' || + lookahead == 'L' || + lookahead == 'd' || + lookahead == 'f' || + lookahead == 'g' || + lookahead == 'i' || + lookahead == 'l') ADVANCE(265); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(267); + END_STATE(); + case 268: + ACCEPT_TOKEN(anon_sym_SQUOTE); + END_STATE(); + case 269: + ACCEPT_TOKEN(anon_sym_SQUOTE); + if (lookahead == '\'') ADVANCE(21); + END_STATE(); + case 270: + ACCEPT_TOKEN(aux_sym__plain_string_token1); + if (lookahead == '*') ADVANCE(273); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(273); + END_STATE(); + case 271: + ACCEPT_TOKEN(aux_sym__plain_string_token1); + if (lookahead == '*') ADVANCE(270); + if (lookahead == '/') ADVANCE(273); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(273); + END_STATE(); + case 272: + ACCEPT_TOKEN(aux_sym__plain_string_token1); + if (lookahead == '/') ADVANCE(271); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(272); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(273); + END_STATE(); + case 273: + ACCEPT_TOKEN(aux_sym__plain_string_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(273); + END_STATE(); + case 274: + ACCEPT_TOKEN(anon_sym_SQUOTE_SQUOTE_SQUOTE); + END_STATE(); + case 275: + ACCEPT_TOKEN(aux_sym__plain_string_token2); + if (lookahead == '\'') ADVANCE(274); + if (lookahead != 0 && + lookahead != '\\') ADVANCE(280); + END_STATE(); + case 276: + ACCEPT_TOKEN(aux_sym__plain_string_token2); + if (lookahead == '\'') ADVANCE(275); + if (lookahead != 0 && + lookahead != '\\') ADVANCE(280); + END_STATE(); + case 277: + ACCEPT_TOKEN(aux_sym__plain_string_token3); + if (lookahead == '\n') ADVANCE(280); + if (lookahead == '\'') ADVANCE(203); + if (lookahead != 0 && + lookahead != '\\') ADVANCE(277); + END_STATE(); + case 278: + ACCEPT_TOKEN(aux_sym__plain_string_token3); + if (lookahead == '\'') ADVANCE(23); + if (lookahead == '*') ADVANCE(280); + if (lookahead != 0 && + lookahead != '\\') ADVANCE(280); + END_STATE(); + case 279: + ACCEPT_TOKEN(aux_sym__plain_string_token3); + if (lookahead == '\'') ADVANCE(23); + if (lookahead == '*') ADVANCE(278); + if (lookahead == '/') ADVANCE(277); + if (lookahead != 0 && + lookahead != '\\') ADVANCE(280); + END_STATE(); + case 280: + ACCEPT_TOKEN(aux_sym__plain_string_token3); + if (lookahead == '\'') ADVANCE(23); + if (lookahead != 0 && + lookahead != '\\') ADVANCE(280); + END_STATE(); + case 281: + ACCEPT_TOKEN(aux_sym__plain_string_token3); + if (lookahead == '\'') ADVANCE(285); + if (lookahead == '/') ADVANCE(279); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(281); + if (lookahead != 0 && + lookahead != '\\') ADVANCE(280); + END_STATE(); + case 282: + ACCEPT_TOKEN(aux_sym__plain_string_token3); + if (lookahead == '\'') ADVANCE(284); + if (lookahead == '/') ADVANCE(279); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(282); + if (lookahead != 0 && + lookahead != '\\') ADVANCE(280); + END_STATE(); + case 283: + ACCEPT_TOKEN(aux_sym__plain_string_token4); + if (lookahead == '\'') ADVANCE(274); + if (lookahead != 0 && + lookahead != '\\') ADVANCE(280); + END_STATE(); + case 284: + ACCEPT_TOKEN(aux_sym__plain_string_token4); + if (lookahead == '\'') ADVANCE(286); + if (lookahead != 0 && + lookahead != '\\') ADVANCE(280); + END_STATE(); + case 285: + ACCEPT_TOKEN(aux_sym__plain_string_token4); + if (lookahead == '\'') ADVANCE(283); + if (lookahead != 0 && + lookahead != '\\') ADVANCE(280); + END_STATE(); + case 286: + ACCEPT_TOKEN(aux_sym__plain_string_token4); + if (lookahead != 0 && + lookahead != '\'' && + lookahead != '\\') ADVANCE(280); + END_STATE(); + case 287: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 288: + ACCEPT_TOKEN(anon_sym_DQUOTE); + if (lookahead == '"') ADVANCE(11); + END_STATE(); + case 289: + ACCEPT_TOKEN(aux_sym__interpolate_string_token1); + if (lookahead == '*') ADVANCE(292); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '$' && + lookahead != '\\') ADVANCE(292); + END_STATE(); + case 290: + ACCEPT_TOKEN(aux_sym__interpolate_string_token1); + if (lookahead == '*') ADVANCE(289); + if (lookahead == '/') ADVANCE(292); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '$' && + lookahead != '\\') ADVANCE(292); + END_STATE(); + case 291: + ACCEPT_TOKEN(aux_sym__interpolate_string_token1); + if (lookahead == '/') ADVANCE(290); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(291); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '$' && + lookahead != '\\') ADVANCE(292); + END_STATE(); + case 292: + ACCEPT_TOKEN(aux_sym__interpolate_string_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '$' && + lookahead != '\\') ADVANCE(292); + END_STATE(); + case 293: + ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE_DQUOTE); + END_STATE(); + case 294: + ACCEPT_TOKEN(aux_sym__interpolate_string_token2); + if (lookahead == '\n') ADVANCE(298); + if (lookahead == '"') ADVANCE(201); + if (lookahead != 0 && + lookahead != '$' && + lookahead != '\\') ADVANCE(294); + END_STATE(); + case 295: + ACCEPT_TOKEN(aux_sym__interpolate_string_token2); + if (lookahead == '"') ADVANCE(300); + if (lookahead == '/') ADVANCE(297); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(295); + if (lookahead != 0 && + lookahead != '$' && + lookahead != '\\') ADVANCE(298); + END_STATE(); + case 296: + ACCEPT_TOKEN(aux_sym__interpolate_string_token2); + if (lookahead == '"') ADVANCE(13); + if (lookahead == '*') ADVANCE(298); + if (lookahead != 0 && + lookahead != '$' && + lookahead != '\\') ADVANCE(298); + END_STATE(); + case 297: + ACCEPT_TOKEN(aux_sym__interpolate_string_token2); + if (lookahead == '"') ADVANCE(13); + if (lookahead == '*') ADVANCE(296); + if (lookahead == '/') ADVANCE(294); + if (lookahead != 0 && + lookahead != '$' && + lookahead != '\\') ADVANCE(298); + END_STATE(); + case 298: + ACCEPT_TOKEN(aux_sym__interpolate_string_token2); + if (lookahead == '"') ADVANCE(13); + if (lookahead != 0 && + lookahead != '$' && + lookahead != '\\') ADVANCE(298); + END_STATE(); + case 299: + ACCEPT_TOKEN(aux_sym__interpolate_string_token3); + if (lookahead == '"') ADVANCE(293); + if (lookahead != 0 && + lookahead != '$' && + lookahead != '\\') ADVANCE(298); + END_STATE(); + case 300: + ACCEPT_TOKEN(aux_sym__interpolate_string_token3); + if (lookahead == '"') ADVANCE(299); + if (lookahead != 0 && + lookahead != '$' && + lookahead != '\\') ADVANCE(298); + END_STATE(); + case 301: + ACCEPT_TOKEN(aux_sym__interpolate_string_token4); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(301); + if (lookahead != 0 && + lookahead != '$' && + lookahead != '/' && + lookahead != '\\') ADVANCE(302); + END_STATE(); + case 302: + ACCEPT_TOKEN(aux_sym__interpolate_string_token4); + if (lookahead != 0 && + lookahead != '$' && + lookahead != '/' && + lookahead != '\\') ADVANCE(302); + END_STATE(); + case 303: + ACCEPT_TOKEN(anon_sym_BSLASH_SLASH); + END_STATE(); + case 304: + ACCEPT_TOKEN(anon_sym_DOLLAR_SLASH); + END_STATE(); + case 305: + ACCEPT_TOKEN(aux_sym__interpolate_string_token5); + if (lookahead == '\n') ADVANCE(308); + if (lookahead == '$') ADVANCE(200); + if (lookahead == '/') ADVANCE(199); + if (lookahead != 0) ADVANCE(305); + END_STATE(); + case 306: + ACCEPT_TOKEN(aux_sym__interpolate_string_token5); + if (lookahead == '$') ADVANCE(315); + if (lookahead == '/') ADVANCE(16); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(306); + if (lookahead != 0) ADVANCE(308); + END_STATE(); + case 307: + ACCEPT_TOKEN(aux_sym__interpolate_string_token5); + if (lookahead == '$') ADVANCE(91); + if (lookahead == '*') ADVANCE(308); + if (lookahead == '/') ADVANCE(94); + if (lookahead != 0) ADVANCE(308); + END_STATE(); + case 308: + ACCEPT_TOKEN(aux_sym__interpolate_string_token5); + if (lookahead == '$') ADVANCE(91); + if (lookahead == '/') ADVANCE(94); + if (lookahead != 0) ADVANCE(308); + END_STATE(); + case 309: + ACCEPT_TOKEN(anon_sym_DOLLAR_DOLLAR); + END_STATE(); + case 310: + ACCEPT_TOKEN(anon_sym_DOLLAR_DOLLAR); + if (aux_sym_annotation_token1_character_set_1(lookahead)) ADVANCE(252); + END_STATE(); + case 311: + ACCEPT_TOKEN(anon_sym_SLASH_DOLLAR); + END_STATE(); + case 312: + ACCEPT_TOKEN(sym_escape_sequence); + END_STATE(); + case 313: + ACCEPT_TOKEN(anon_sym_DOLLAR); + END_STATE(); + case 314: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '$') ADVANCE(310); + if (lookahead == '/') ADVANCE(304); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(252); + END_STATE(); + case 315: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '$') ADVANCE(309); + if (lookahead == '/') ADVANCE(304); + if (lookahead != 0 && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || '{' < lookahead)) ADVANCE(308); + END_STATE(); + case 316: + ACCEPT_TOKEN(aux_sym_interpolation_token1); + if (lookahead == '.') ADVANCE(90); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(316); + END_STATE(); + case 317: + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '.') ADVANCE(107); + if (lookahead == ':') ADVANCE(190); + END_STATE(); + case 318: + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '.') ADVANCE(107); + if (lookahead == ':') ADVANCE(190); + if (lookahead == '=') ADVANCE(137); + END_STATE(); + case 319: + ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); + END_STATE(); + case 320: + ACCEPT_TOKEN(anon_sym_TILDE); + END_STATE(); + case 321: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 322: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(176); + if (lookahead == 'i') ADVANCE(72); + END_STATE(); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (lookahead == 'a') ADVANCE(1); + if (lookahead == 'b') ADVANCE(2); + if (lookahead == 'c') ADVANCE(3); + if (lookahead == 'd') ADVANCE(4); + if (lookahead == 'e') ADVANCE(5); + if (lookahead == 'f') ADVANCE(6); + if (lookahead == 'i') ADVANCE(7); + if (lookahead == 'l') ADVANCE(8); + if (lookahead == 'n') ADVANCE(9); + if (lookahead == 'p') ADVANCE(10); + if (lookahead == 'r') ADVANCE(11); + if (lookahead == 's') ADVANCE(12); + if (lookahead == 't') ADVANCE(13); + if (lookahead == 'v') ADVANCE(14); + if (lookahead == 'w') ADVANCE(15); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(0) + END_STATE(); + case 1: + if (lookahead == 's') ADVANCE(16); + END_STATE(); + case 2: + if (lookahead == 'o') ADVANCE(17); + if (lookahead == 'r') ADVANCE(18); + END_STATE(); + case 3: + if (lookahead == 'a') ADVANCE(19); + if (lookahead == 'h') ADVANCE(20); + if (lookahead == 'l') ADVANCE(21); + if (lookahead == 'o') ADVANCE(22); + END_STATE(); + case 4: + if (lookahead == 'e') ADVANCE(23); + if (lookahead == 'o') ADVANCE(24); + END_STATE(); + case 5: + if (lookahead == 'l') ADVANCE(25); + if (lookahead == 'x') ADVANCE(26); + END_STATE(); + case 6: + if (lookahead == 'a') ADVANCE(27); + if (lookahead == 'i') ADVANCE(28); + if (lookahead == 'l') ADVANCE(29); + if (lookahead == 'o') ADVANCE(30); + END_STATE(); + case 7: + if (lookahead == 'f') ADVANCE(31); + if (lookahead == 'm') ADVANCE(32); + if (lookahead == 'n') ADVANCE(33); + END_STATE(); + case 8: + if (lookahead == 'o') ADVANCE(34); + END_STATE(); + case 9: + if (lookahead == 'e') ADVANCE(35); + if (lookahead == 'u') ADVANCE(36); + END_STATE(); + case 10: + if (lookahead == 'a') ADVANCE(37); + if (lookahead == 'i') ADVANCE(38); + if (lookahead == 'r') ADVANCE(39); + if (lookahead == 'u') ADVANCE(40); + END_STATE(); + case 11: + if (lookahead == 'e') ADVANCE(41); + END_STATE(); + case 12: + if (lookahead == 'h') ADVANCE(42); + if (lookahead == 't') ADVANCE(43); + if (lookahead == 'w') ADVANCE(44); + if (lookahead == 'y') ADVANCE(45); + END_STATE(); + case 13: + if (lookahead == 'h') ADVANCE(46); + if (lookahead == 'r') ADVANCE(47); + END_STATE(); + case 14: + if (lookahead == 'o') ADVANCE(48); + END_STATE(); + case 15: + if (lookahead == 'h') ADVANCE(49); + END_STATE(); + case 16: + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 's') ADVANCE(50); + END_STATE(); + case 17: + if (lookahead == 'o') ADVANCE(51); + END_STATE(); + case 18: + if (lookahead == 'e') ADVANCE(52); + END_STATE(); + case 19: + if (lookahead == 's') ADVANCE(53); + if (lookahead == 't') ADVANCE(54); + END_STATE(); + case 20: + if (lookahead == 'a') ADVANCE(55); + END_STATE(); + case 21: + if (lookahead == 'a') ADVANCE(56); + END_STATE(); + case 22: + if (lookahead == 'n') ADVANCE(57); + END_STATE(); + case 23: + if (lookahead == 'f') ADVANCE(58); + END_STATE(); + case 24: + ACCEPT_TOKEN(anon_sym_do); + if (lookahead == 'u') ADVANCE(59); + END_STATE(); + case 25: + if (lookahead == 's') ADVANCE(60); + END_STATE(); + case 26: + if (lookahead == 't') ADVANCE(61); + END_STATE(); + case 27: + if (lookahead == 'l') ADVANCE(62); + END_STATE(); + case 28: + if (lookahead == 'n') ADVANCE(63); + END_STATE(); + case 29: + if (lookahead == 'o') ADVANCE(64); + END_STATE(); + case 30: + if (lookahead == 'r') ADVANCE(65); + END_STATE(); + case 31: + ACCEPT_TOKEN(anon_sym_if); + END_STATE(); + case 32: + if (lookahead == 'p') ADVANCE(66); + END_STATE(); + case 33: + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 's') ADVANCE(67); + if (lookahead == 't') ADVANCE(68); + END_STATE(); + case 34: + if (lookahead == 'n') ADVANCE(69); + END_STATE(); + case 35: + if (lookahead == 'w') ADVANCE(70); + END_STATE(); + case 36: + if (lookahead == 'l') ADVANCE(71); + END_STATE(); + case 37: + if (lookahead == 'c') ADVANCE(72); + END_STATE(); + case 38: + if (lookahead == 'p') ADVANCE(73); + END_STATE(); + case 39: + if (lookahead == 'i') ADVANCE(74); + if (lookahead == 'o') ADVANCE(75); + END_STATE(); + case 40: + if (lookahead == 'b') ADVANCE(76); + END_STATE(); + case 41: + if (lookahead == 't') ADVANCE(77); + END_STATE(); + case 42: + if (lookahead == 'o') ADVANCE(78); + END_STATE(); + case 43: + if (lookahead == 'a') ADVANCE(79); + END_STATE(); + case 44: + if (lookahead == 'i') ADVANCE(80); + END_STATE(); + case 45: + if (lookahead == 'n') ADVANCE(81); + END_STATE(); + case 46: + if (lookahead == 'i') ADVANCE(82); + END_STATE(); + case 47: + if (lookahead == 'u') ADVANCE(83); + if (lookahead == 'y') ADVANCE(84); + END_STATE(); + case 48: + if (lookahead == 'i') ADVANCE(85); + END_STATE(); + case 49: + if (lookahead == 'i') ADVANCE(86); + END_STATE(); + case 50: + if (lookahead == 'e') ADVANCE(87); + END_STATE(); + case 51: + if (lookahead == 'l') ADVANCE(88); + END_STATE(); + case 52: + if (lookahead == 'a') ADVANCE(89); + END_STATE(); + case 53: + if (lookahead == 'e') ADVANCE(90); + END_STATE(); + case 54: + if (lookahead == 'c') ADVANCE(91); + END_STATE(); + case 55: + if (lookahead == 'r') ADVANCE(92); + END_STATE(); + case 56: + if (lookahead == 's') ADVANCE(93); + END_STATE(); + case 57: + if (lookahead == 't') ADVANCE(94); + END_STATE(); + case 58: + ACCEPT_TOKEN(anon_sym_def); + if (lookahead == 'a') ADVANCE(95); + END_STATE(); + case 59: + if (lookahead == 'b') ADVANCE(96); + END_STATE(); + case 60: + if (lookahead == 'e') ADVANCE(97); + END_STATE(); + case 61: + if (lookahead == 'e') ADVANCE(98); + END_STATE(); + case 62: + if (lookahead == 's') ADVANCE(99); + END_STATE(); + case 63: + if (lookahead == 'a') ADVANCE(100); + END_STATE(); + case 64: + if (lookahead == 'a') ADVANCE(101); + END_STATE(); + case 65: + ACCEPT_TOKEN(anon_sym_for); + END_STATE(); + case 66: + if (lookahead == 'o') ADVANCE(102); + END_STATE(); + case 67: + if (lookahead == 't') ADVANCE(103); + END_STATE(); + case 68: + ACCEPT_TOKEN(anon_sym_int); + if (lookahead == 'e') ADVANCE(104); + END_STATE(); + case 69: + if (lookahead == 'g') ADVANCE(105); + END_STATE(); + case 70: + ACCEPT_TOKEN(anon_sym_new); + END_STATE(); + case 71: + if (lookahead == 'l') ADVANCE(106); + END_STATE(); + case 72: + if (lookahead == 'k') ADVANCE(107); + END_STATE(); + case 73: + if (lookahead == 'e') ADVANCE(108); + END_STATE(); + case 74: + if (lookahead == 'v') ADVANCE(109); + END_STATE(); + case 75: + if (lookahead == 't') ADVANCE(110); + END_STATE(); + case 76: + if (lookahead == 'l') ADVANCE(111); + END_STATE(); + case 77: + if (lookahead == 'u') ADVANCE(112); + END_STATE(); + case 78: + if (lookahead == 'r') ADVANCE(113); + END_STATE(); + case 79: + if (lookahead == 't') ADVANCE(114); + END_STATE(); + case 80: + if (lookahead == 't') ADVANCE(115); + END_STATE(); + case 81: + if (lookahead == 'c') ADVANCE(116); + END_STATE(); + case 82: + if (lookahead == 's') ADVANCE(117); + END_STATE(); + case 83: + if (lookahead == 'e') ADVANCE(118); + END_STATE(); + case 84: + ACCEPT_TOKEN(anon_sym_try); + END_STATE(); + case 85: + if (lookahead == 'd') ADVANCE(119); + END_STATE(); + case 86: + if (lookahead == 'l') ADVANCE(120); + END_STATE(); + case 87: + if (lookahead == 'r') ADVANCE(121); + END_STATE(); + case 88: + if (lookahead == 'e') ADVANCE(122); + END_STATE(); + case 89: + if (lookahead == 'k') ADVANCE(123); + END_STATE(); + case 90: + ACCEPT_TOKEN(anon_sym_case); + END_STATE(); + case 91: + if (lookahead == 'h') ADVANCE(124); + END_STATE(); + case 92: + ACCEPT_TOKEN(anon_sym_char); + END_STATE(); + case 93: + if (lookahead == 's') ADVANCE(125); + END_STATE(); + case 94: + if (lookahead == 'i') ADVANCE(126); + END_STATE(); + case 95: + if (lookahead == 'u') ADVANCE(127); + END_STATE(); + case 96: + if (lookahead == 'l') ADVANCE(128); + END_STATE(); + case 97: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 98: + if (lookahead == 'n') ADVANCE(129); + END_STATE(); + case 99: + if (lookahead == 'e') ADVANCE(130); + END_STATE(); + case 100: + if (lookahead == 'l') ADVANCE(131); + END_STATE(); + case 101: + if (lookahead == 't') ADVANCE(132); + END_STATE(); + case 102: + if (lookahead == 'r') ADVANCE(133); + END_STATE(); + case 103: + if (lookahead == 'a') ADVANCE(134); + END_STATE(); + case 104: + if (lookahead == 'r') ADVANCE(135); + END_STATE(); + case 105: + ACCEPT_TOKEN(anon_sym_long); + END_STATE(); + case 106: + ACCEPT_TOKEN(anon_sym_null); + END_STATE(); + case 107: + if (lookahead == 'a') ADVANCE(136); + END_STATE(); + case 108: + if (lookahead == 'l') ADVANCE(137); + END_STATE(); + case 109: + if (lookahead == 'a') ADVANCE(138); + END_STATE(); + case 110: + if (lookahead == 'e') ADVANCE(139); + END_STATE(); + case 111: + if (lookahead == 'i') ADVANCE(140); + END_STATE(); + case 112: + if (lookahead == 'r') ADVANCE(141); + END_STATE(); + case 113: + if (lookahead == 't') ADVANCE(142); + END_STATE(); + case 114: + if (lookahead == 'i') ADVANCE(143); + END_STATE(); + case 115: + if (lookahead == 'c') ADVANCE(144); + END_STATE(); + case 116: + if (lookahead == 'h') ADVANCE(145); + END_STATE(); + case 117: + ACCEPT_TOKEN(anon_sym_this); + END_STATE(); + case 118: + ACCEPT_TOKEN(anon_sym_true); + END_STATE(); + case 119: + ACCEPT_TOKEN(anon_sym_void); + END_STATE(); + case 120: + if (lookahead == 'e') ADVANCE(146); + END_STATE(); + case 121: + if (lookahead == 't') ADVANCE(147); + END_STATE(); + case 122: + if (lookahead == 'a') ADVANCE(148); + END_STATE(); + case 123: + ACCEPT_TOKEN(anon_sym_break); + END_STATE(); + case 124: + ACCEPT_TOKEN(anon_sym_catch); + END_STATE(); + case 125: + ACCEPT_TOKEN(anon_sym_class); + END_STATE(); + case 126: + if (lookahead == 'n') ADVANCE(149); + END_STATE(); + case 127: + if (lookahead == 'l') ADVANCE(150); + END_STATE(); + case 128: + if (lookahead == 'e') ADVANCE(151); + END_STATE(); + case 129: + if (lookahead == 'd') ADVANCE(152); + END_STATE(); + case 130: + ACCEPT_TOKEN(anon_sym_false); + END_STATE(); + case 131: + ACCEPT_TOKEN(anon_sym_final); + if (lookahead == 'l') ADVANCE(153); + END_STATE(); + case 132: + ACCEPT_TOKEN(anon_sym_float); + END_STATE(); + case 133: + if (lookahead == 't') ADVANCE(154); + END_STATE(); + case 134: + if (lookahead == 'n') ADVANCE(155); + END_STATE(); + case 135: + if (lookahead == 'f') ADVANCE(156); + END_STATE(); + case 136: + if (lookahead == 'g') ADVANCE(157); + END_STATE(); + case 137: + if (lookahead == 'i') ADVANCE(158); + END_STATE(); + case 138: + if (lookahead == 't') ADVANCE(159); + END_STATE(); + case 139: + if (lookahead == 'c') ADVANCE(160); + END_STATE(); + case 140: + if (lookahead == 'c') ADVANCE(161); + END_STATE(); + case 141: + if (lookahead == 'n') ADVANCE(162); + END_STATE(); + case 142: + ACCEPT_TOKEN(anon_sym_short); + END_STATE(); + case 143: + if (lookahead == 'c') ADVANCE(163); + END_STATE(); + case 144: + if (lookahead == 'h') ADVANCE(164); + END_STATE(); + case 145: + if (lookahead == 'r') ADVANCE(165); + END_STATE(); + case 146: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); + case 147: + ACCEPT_TOKEN(anon_sym_assert); + END_STATE(); + case 148: + if (lookahead == 'n') ADVANCE(166); + END_STATE(); + case 149: + if (lookahead == 'u') ADVANCE(167); + END_STATE(); + case 150: + if (lookahead == 't') ADVANCE(168); + END_STATE(); + case 151: + ACCEPT_TOKEN(anon_sym_double); + END_STATE(); + case 152: + if (lookahead == 's') ADVANCE(169); + END_STATE(); + case 153: + if (lookahead == 'y') ADVANCE(170); + END_STATE(); + case 154: + ACCEPT_TOKEN(anon_sym_import); + END_STATE(); + case 155: + if (lookahead == 'c') ADVANCE(171); + END_STATE(); + case 156: + if (lookahead == 'a') ADVANCE(172); + END_STATE(); + case 157: + if (lookahead == 'e') ADVANCE(173); + END_STATE(); + case 158: + if (lookahead == 'n') ADVANCE(174); + END_STATE(); + case 159: + if (lookahead == 'e') ADVANCE(175); + END_STATE(); + case 160: + if (lookahead == 't') ADVANCE(176); + END_STATE(); + case 161: + ACCEPT_TOKEN(anon_sym_public); + END_STATE(); + case 162: + ACCEPT_TOKEN(anon_sym_return); + END_STATE(); + case 163: + ACCEPT_TOKEN(anon_sym_static); + END_STATE(); + case 164: + ACCEPT_TOKEN(anon_sym_switch); + END_STATE(); + case 165: + if (lookahead == 'o') ADVANCE(177); + END_STATE(); + case 166: + ACCEPT_TOKEN(anon_sym_boolean); + END_STATE(); + case 167: + if (lookahead == 'e') ADVANCE(178); + END_STATE(); + case 168: + ACCEPT_TOKEN(anon_sym_default); + END_STATE(); + case 169: + ACCEPT_TOKEN(anon_sym_extends); + END_STATE(); + case 170: + ACCEPT_TOKEN(anon_sym_finally); + END_STATE(); + case 171: + if (lookahead == 'e') ADVANCE(179); + END_STATE(); + case 172: + if (lookahead == 'c') ADVANCE(180); + END_STATE(); + case 173: + ACCEPT_TOKEN(anon_sym_package); + END_STATE(); + case 174: + if (lookahead == 'e') ADVANCE(181); + END_STATE(); + case 175: + ACCEPT_TOKEN(anon_sym_private); + END_STATE(); + case 176: + if (lookahead == 'e') ADVANCE(182); + END_STATE(); + case 177: + if (lookahead == 'n') ADVANCE(183); + END_STATE(); + case 178: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 179: + if (lookahead == 'o') ADVANCE(184); + END_STATE(); + case 180: + if (lookahead == 'e') ADVANCE(185); + END_STATE(); + case 181: + ACCEPT_TOKEN(anon_sym_pipeline); + END_STATE(); + case 182: + if (lookahead == 'd') ADVANCE(186); + END_STATE(); + case 183: + if (lookahead == 'i') ADVANCE(187); + END_STATE(); + case 184: + if (lookahead == 'f') ADVANCE(188); + END_STATE(); + case 185: + ACCEPT_TOKEN(anon_sym_interface); + END_STATE(); + case 186: + ACCEPT_TOKEN(anon_sym_protected); + END_STATE(); + case 187: + if (lookahead == 'z') ADVANCE(189); + END_STATE(); + case 188: + ACCEPT_TOKEN(anon_sym_instanceof); + END_STATE(); + case 189: + if (lookahead == 'e') ADVANCE(190); + END_STATE(); + case 190: + if (lookahead == 'd') ADVANCE(191); + END_STATE(); + case 191: + ACCEPT_TOKEN(anon_sym_synchronized); + END_STATE(); + default: + return false; + } +} + +static const TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0}, + [1] = {.lex_state = 96}, + [2] = {.lex_state = 4}, + [3] = {.lex_state = 4}, + [4] = {.lex_state = 4}, + [5] = {.lex_state = 4}, + [6] = {.lex_state = 4}, + [7] = {.lex_state = 4}, + [8] = {.lex_state = 96}, + [9] = {.lex_state = 96}, + [10] = {.lex_state = 96}, + [11] = {.lex_state = 96}, + [12] = {.lex_state = 96}, + [13] = {.lex_state = 96}, + [14] = {.lex_state = 96}, + [15] = {.lex_state = 96}, + [16] = {.lex_state = 96}, + [17] = {.lex_state = 96}, + [18] = {.lex_state = 96}, + [19] = {.lex_state = 96}, + [20] = {.lex_state = 96}, + [21] = {.lex_state = 96}, + [22] = {.lex_state = 96}, + [23] = {.lex_state = 96}, + [24] = {.lex_state = 96}, + [25] = {.lex_state = 96}, + [26] = {.lex_state = 96}, + [27] = {.lex_state = 96}, + [28] = {.lex_state = 96}, + [29] = {.lex_state = 96}, + [30] = {.lex_state = 96}, + [31] = {.lex_state = 96}, + [32] = {.lex_state = 96}, + [33] = {.lex_state = 96}, + [34] = {.lex_state = 96}, + [35] = {.lex_state = 96}, + [36] = {.lex_state = 96}, + [37] = {.lex_state = 96}, + [38] = {.lex_state = 96}, + [39] = {.lex_state = 96}, + [40] = {.lex_state = 96}, + [41] = {.lex_state = 96}, + [42] = {.lex_state = 96}, + [43] = {.lex_state = 96}, + [44] = {.lex_state = 96}, + [45] = {.lex_state = 96}, + [46] = {.lex_state = 96}, + [47] = {.lex_state = 96}, + [48] = {.lex_state = 96}, + [49] = {.lex_state = 96}, + [50] = {.lex_state = 96}, + [51] = {.lex_state = 96}, + [52] = {.lex_state = 96}, + [53] = {.lex_state = 96}, + [54] = {.lex_state = 96}, + [55] = {.lex_state = 96}, + [56] = {.lex_state = 96}, + [57] = {.lex_state = 96}, + [58] = {.lex_state = 96}, + [59] = {.lex_state = 96}, + [60] = {.lex_state = 96}, + [61] = {.lex_state = 96}, + [62] = {.lex_state = 5}, + [63] = {.lex_state = 5}, + [64] = {.lex_state = 5}, + [65] = {.lex_state = 5}, + [66] = {.lex_state = 5}, + [67] = {.lex_state = 5}, + [68] = {.lex_state = 5}, + [69] = {.lex_state = 5}, + [70] = {.lex_state = 5}, + [71] = {.lex_state = 5}, + [72] = {.lex_state = 5}, + [73] = {.lex_state = 5}, + [74] = {.lex_state = 5}, + [75] = {.lex_state = 5}, + [76] = {.lex_state = 5}, + [77] = {.lex_state = 5}, + [78] = {.lex_state = 5}, + [79] = {.lex_state = 5}, + [80] = {.lex_state = 5}, + [81] = {.lex_state = 5}, + [82] = {.lex_state = 5}, + [83] = {.lex_state = 5}, + [84] = {.lex_state = 5}, + [85] = {.lex_state = 5}, + [86] = {.lex_state = 5}, + [87] = {.lex_state = 5}, + [88] = {.lex_state = 5}, + [89] = {.lex_state = 5}, + [90] = {.lex_state = 5}, + [91] = {.lex_state = 5}, + [92] = {.lex_state = 5}, + [93] = {.lex_state = 5}, + [94] = {.lex_state = 5}, + [95] = {.lex_state = 5}, + [96] = {.lex_state = 5}, + [97] = {.lex_state = 5}, + [98] = {.lex_state = 5}, + [99] = {.lex_state = 5}, + [100] = {.lex_state = 5}, + [101] = {.lex_state = 5}, + [102] = {.lex_state = 5}, + [103] = {.lex_state = 5}, + [104] = {.lex_state = 5}, + [105] = {.lex_state = 5}, + [106] = {.lex_state = 5}, + [107] = {.lex_state = 5}, + [108] = {.lex_state = 5}, + [109] = {.lex_state = 5}, + [110] = {.lex_state = 5}, + [111] = {.lex_state = 5}, + [112] = {.lex_state = 5}, + [113] = {.lex_state = 5}, + [114] = {.lex_state = 5}, + [115] = {.lex_state = 5}, + [116] = {.lex_state = 5}, + [117] = {.lex_state = 5}, + [118] = {.lex_state = 5}, + [119] = {.lex_state = 5}, + [120] = {.lex_state = 5}, + [121] = {.lex_state = 5}, + [122] = {.lex_state = 5}, + [123] = {.lex_state = 5}, + [124] = {.lex_state = 5}, + [125] = {.lex_state = 5}, + [126] = {.lex_state = 5}, + [127] = {.lex_state = 5}, + [128] = {.lex_state = 5}, + [129] = {.lex_state = 5}, + [130] = {.lex_state = 5}, + [131] = {.lex_state = 5}, + [132] = {.lex_state = 5}, + [133] = {.lex_state = 5}, + [134] = {.lex_state = 5}, + [135] = {.lex_state = 5}, + [136] = {.lex_state = 5}, + [137] = {.lex_state = 5}, + [138] = {.lex_state = 5}, + [139] = {.lex_state = 5}, + [140] = {.lex_state = 5}, + [141] = {.lex_state = 5}, + [142] = {.lex_state = 5}, + [143] = {.lex_state = 5}, + [144] = {.lex_state = 5}, + [145] = {.lex_state = 5}, + [146] = {.lex_state = 5}, + [147] = {.lex_state = 5}, + [148] = {.lex_state = 5}, + [149] = {.lex_state = 5}, + [150] = {.lex_state = 5}, + [151] = {.lex_state = 5}, + [152] = {.lex_state = 5}, + [153] = {.lex_state = 5}, + [154] = {.lex_state = 5}, + [155] = {.lex_state = 5}, + [156] = {.lex_state = 5}, + [157] = {.lex_state = 5}, + [158] = {.lex_state = 5}, + [159] = {.lex_state = 5}, + [160] = {.lex_state = 5}, + [161] = {.lex_state = 5}, + [162] = {.lex_state = 5}, + [163] = {.lex_state = 5}, + [164] = {.lex_state = 5}, + [165] = {.lex_state = 5}, + [166] = {.lex_state = 5}, + [167] = {.lex_state = 5}, + [168] = {.lex_state = 5}, + [169] = {.lex_state = 5}, + [170] = {.lex_state = 5}, + [171] = {.lex_state = 5}, + [172] = {.lex_state = 5}, + [173] = {.lex_state = 5}, + [174] = {.lex_state = 5}, + [175] = {.lex_state = 5}, + [176] = {.lex_state = 5}, + [177] = {.lex_state = 5}, + [178] = {.lex_state = 5}, + [179] = {.lex_state = 5}, + [180] = {.lex_state = 5}, + [181] = {.lex_state = 5}, + [182] = {.lex_state = 5}, + [183] = {.lex_state = 5}, + [184] = {.lex_state = 5}, + [185] = {.lex_state = 5}, + [186] = {.lex_state = 5}, + [187] = {.lex_state = 5}, + [188] = {.lex_state = 5}, + [189] = {.lex_state = 5}, + [190] = {.lex_state = 5}, + [191] = {.lex_state = 5}, + [192] = {.lex_state = 5}, + [193] = {.lex_state = 5}, + [194] = {.lex_state = 5}, + [195] = {.lex_state = 5}, + [196] = {.lex_state = 5}, + [197] = {.lex_state = 5}, + [198] = {.lex_state = 96}, + [199] = {.lex_state = 5}, + [200] = {.lex_state = 98}, + [201] = {.lex_state = 98}, + [202] = {.lex_state = 98}, + [203] = {.lex_state = 98}, + [204] = {.lex_state = 98}, + [205] = {.lex_state = 98}, + [206] = {.lex_state = 98}, + [207] = {.lex_state = 98}, + [208] = {.lex_state = 98}, + [209] = {.lex_state = 98}, + [210] = {.lex_state = 98}, + [211] = {.lex_state = 98}, + [212] = {.lex_state = 98}, + [213] = {.lex_state = 98}, + [214] = {.lex_state = 98}, + [215] = {.lex_state = 98}, + [216] = {.lex_state = 98}, + [217] = {.lex_state = 98}, + [218] = {.lex_state = 98}, + [219] = {.lex_state = 98}, + [220] = {.lex_state = 98}, + [221] = {.lex_state = 98}, + [222] = {.lex_state = 98}, + [223] = {.lex_state = 98}, + [224] = {.lex_state = 98}, + [225] = {.lex_state = 98}, + [226] = {.lex_state = 98}, + [227] = {.lex_state = 98}, + [228] = {.lex_state = 98}, + [229] = {.lex_state = 98}, + [230] = {.lex_state = 98}, + [231] = {.lex_state = 98}, + [232] = {.lex_state = 98}, + [233] = {.lex_state = 98}, + [234] = {.lex_state = 98}, + [235] = {.lex_state = 98}, + [236] = {.lex_state = 98}, + [237] = {.lex_state = 98}, + [238] = {.lex_state = 98}, + [239] = {.lex_state = 98}, + [240] = {.lex_state = 98}, + [241] = {.lex_state = 98}, + [242] = {.lex_state = 98}, + [243] = {.lex_state = 98}, + [244] = {.lex_state = 98}, + [245] = {.lex_state = 98}, + [246] = {.lex_state = 98}, + [247] = {.lex_state = 98}, + [248] = {.lex_state = 98}, + [249] = {.lex_state = 98}, + [250] = {.lex_state = 98}, + [251] = {.lex_state = 98}, + [252] = {.lex_state = 98}, + [253] = {.lex_state = 98}, + [254] = {.lex_state = 98}, + [255] = {.lex_state = 98}, + [256] = {.lex_state = 98}, + [257] = {.lex_state = 98}, + [258] = {.lex_state = 98}, + [259] = {.lex_state = 98}, + [260] = {.lex_state = 98}, + [261] = {.lex_state = 98}, + [262] = {.lex_state = 98}, + [263] = {.lex_state = 98}, + [264] = {.lex_state = 98}, + [265] = {.lex_state = 98}, + [266] = {.lex_state = 98}, + [267] = {.lex_state = 98}, + [268] = {.lex_state = 98}, + [269] = {.lex_state = 98}, + [270] = {.lex_state = 98}, + [271] = {.lex_state = 98}, + [272] = {.lex_state = 98}, + [273] = {.lex_state = 98}, + [274] = {.lex_state = 98}, + [275] = {.lex_state = 98}, + [276] = {.lex_state = 98}, + [277] = {.lex_state = 98}, + [278] = {.lex_state = 98}, + [279] = {.lex_state = 98}, + [280] = {.lex_state = 98}, + [281] = {.lex_state = 98}, + [282] = {.lex_state = 98}, + [283] = {.lex_state = 98}, + [284] = {.lex_state = 98}, + [285] = {.lex_state = 98}, + [286] = {.lex_state = 98}, + [287] = {.lex_state = 98}, + [288] = {.lex_state = 98}, + [289] = {.lex_state = 98}, + [290] = {.lex_state = 98}, + [291] = {.lex_state = 98}, + [292] = {.lex_state = 98}, + [293] = {.lex_state = 98}, + [294] = {.lex_state = 98}, + [295] = {.lex_state = 98}, + [296] = {.lex_state = 98}, + [297] = {.lex_state = 98}, + [298] = {.lex_state = 98}, + [299] = {.lex_state = 98}, + [300] = {.lex_state = 98}, + [301] = {.lex_state = 98}, + [302] = {.lex_state = 98}, + [303] = {.lex_state = 98}, + [304] = {.lex_state = 98}, + [305] = {.lex_state = 98}, + [306] = {.lex_state = 98}, + [307] = {.lex_state = 98}, + [308] = {.lex_state = 98}, + [309] = {.lex_state = 98}, + [310] = {.lex_state = 98}, + [311] = {.lex_state = 98}, + [312] = {.lex_state = 98}, + [313] = {.lex_state = 98}, + [314] = {.lex_state = 98}, + [315] = {.lex_state = 98}, + [316] = {.lex_state = 98}, + [317] = {.lex_state = 98}, + [318] = {.lex_state = 98}, + [319] = {.lex_state = 98}, + [320] = {.lex_state = 98}, + [321] = {.lex_state = 98}, + [322] = {.lex_state = 98}, + [323] = {.lex_state = 98}, + [324] = {.lex_state = 98}, + [325] = {.lex_state = 98}, + [326] = {.lex_state = 98}, + [327] = {.lex_state = 98}, + [328] = {.lex_state = 98}, + [329] = {.lex_state = 98}, + [330] = {.lex_state = 98}, + [331] = {.lex_state = 98}, + [332] = {.lex_state = 98}, + [333] = {.lex_state = 98}, + [334] = {.lex_state = 98}, + [335] = {.lex_state = 98}, + [336] = {.lex_state = 98}, + [337] = {.lex_state = 98}, + [338] = {.lex_state = 98}, + [339] = {.lex_state = 98}, + [340] = {.lex_state = 98}, + [341] = {.lex_state = 98}, + [342] = {.lex_state = 98}, + [343] = {.lex_state = 98}, + [344] = {.lex_state = 98}, + [345] = {.lex_state = 98}, + [346] = {.lex_state = 98}, + [347] = {.lex_state = 98}, + [348] = {.lex_state = 98}, + [349] = {.lex_state = 98}, + [350] = {.lex_state = 98}, + [351] = {.lex_state = 98}, + [352] = {.lex_state = 98}, + [353] = {.lex_state = 98}, + [354] = {.lex_state = 98}, + [355] = {.lex_state = 98}, + [356] = {.lex_state = 98}, + [357] = {.lex_state = 98}, + [358] = {.lex_state = 98}, + [359] = {.lex_state = 98}, + [360] = {.lex_state = 98}, + [361] = {.lex_state = 98}, + [362] = {.lex_state = 98}, + [363] = {.lex_state = 98}, + [364] = {.lex_state = 98}, + [365] = {.lex_state = 98}, + [366] = {.lex_state = 98}, + [367] = {.lex_state = 98}, + [368] = {.lex_state = 98}, + [369] = {.lex_state = 98}, + [370] = {.lex_state = 98}, + [371] = {.lex_state = 98}, + [372] = {.lex_state = 98}, + [373] = {.lex_state = 98}, + [374] = {.lex_state = 98}, + [375] = {.lex_state = 98}, + [376] = {.lex_state = 98}, + [377] = {.lex_state = 98}, + [378] = {.lex_state = 98}, + [379] = {.lex_state = 98}, + [380] = {.lex_state = 98}, + [381] = {.lex_state = 98}, + [382] = {.lex_state = 98}, + [383] = {.lex_state = 98}, + [384] = {.lex_state = 98}, + [385] = {.lex_state = 98}, + [386] = {.lex_state = 98}, + [387] = {.lex_state = 98}, + [388] = {.lex_state = 98}, + [389] = {.lex_state = 98}, + [390] = {.lex_state = 98}, + [391] = {.lex_state = 98}, + [392] = {.lex_state = 98}, + [393] = {.lex_state = 98}, + [394] = {.lex_state = 98}, + [395] = {.lex_state = 98}, + [396] = {.lex_state = 98}, + [397] = {.lex_state = 98}, + [398] = {.lex_state = 98}, + [399] = {.lex_state = 98}, + [400] = {.lex_state = 98}, + [401] = {.lex_state = 98}, + [402] = {.lex_state = 98}, + [403] = {.lex_state = 98}, + [404] = {.lex_state = 98}, + [405] = {.lex_state = 98}, + [406] = {.lex_state = 98}, + [407] = {.lex_state = 98}, + [408] = {.lex_state = 98}, + [409] = {.lex_state = 98}, + [410] = {.lex_state = 98}, + [411] = {.lex_state = 98}, + [412] = {.lex_state = 98}, + [413] = {.lex_state = 98}, + [414] = {.lex_state = 98}, + [415] = {.lex_state = 98}, + [416] = {.lex_state = 98}, + [417] = {.lex_state = 98}, + [418] = {.lex_state = 98}, + [419] = {.lex_state = 98}, + [420] = {.lex_state = 98}, + [421] = {.lex_state = 98}, + [422] = {.lex_state = 97}, + [423] = {.lex_state = 98}, + [424] = {.lex_state = 98}, + [425] = {.lex_state = 98}, + [426] = {.lex_state = 98}, + [427] = {.lex_state = 98}, + [428] = {.lex_state = 98}, + [429] = {.lex_state = 97}, + [430] = {.lex_state = 98}, + [431] = {.lex_state = 98}, + [432] = {.lex_state = 98}, + [433] = {.lex_state = 98}, + [434] = {.lex_state = 98}, + [435] = {.lex_state = 98}, + [436] = {.lex_state = 98}, + [437] = {.lex_state = 98}, + [438] = {.lex_state = 97}, + [439] = {.lex_state = 98}, + [440] = {.lex_state = 98}, + [441] = {.lex_state = 98}, + [442] = {.lex_state = 98}, + [443] = {.lex_state = 98}, + [444] = {.lex_state = 98}, + [445] = {.lex_state = 98}, + [446] = {.lex_state = 98}, + [447] = {.lex_state = 98}, + [448] = {.lex_state = 98}, + [449] = {.lex_state = 98}, + [450] = {.lex_state = 98}, + [451] = {.lex_state = 97}, + [452] = {.lex_state = 98}, + [453] = {.lex_state = 98}, + [454] = {.lex_state = 98}, + [455] = {.lex_state = 98}, + [456] = {.lex_state = 98}, + [457] = {.lex_state = 97}, + [458] = {.lex_state = 98}, + [459] = {.lex_state = 98}, + [460] = {.lex_state = 98}, + [461] = {.lex_state = 98}, + [462] = {.lex_state = 96}, + [463] = {.lex_state = 98}, + [464] = {.lex_state = 98}, + [465] = {.lex_state = 98}, + [466] = {.lex_state = 98}, + [467] = {.lex_state = 98}, + [468] = {.lex_state = 98}, + [469] = {.lex_state = 98}, + [470] = {.lex_state = 98}, + [471] = {.lex_state = 98}, + [472] = {.lex_state = 98}, + [473] = {.lex_state = 98}, + [474] = {.lex_state = 97}, + [475] = {.lex_state = 97}, + [476] = {.lex_state = 97}, + [477] = {.lex_state = 97}, + [478] = {.lex_state = 97}, + [479] = {.lex_state = 97}, + [480] = {.lex_state = 97}, + [481] = {.lex_state = 97}, + [482] = {.lex_state = 97}, + [483] = {.lex_state = 96}, + [484] = {.lex_state = 97}, + [485] = {.lex_state = 4}, + [486] = {.lex_state = 97}, + [487] = {.lex_state = 96}, + [488] = {.lex_state = 97}, + [489] = {.lex_state = 96}, + [490] = {.lex_state = 96}, + [491] = {.lex_state = 4}, + [492] = {.lex_state = 97}, + [493] = {.lex_state = 4}, + [494] = {.lex_state = 96}, + [495] = {.lex_state = 4}, + [496] = {.lex_state = 97}, + [497] = {.lex_state = 96}, + [498] = {.lex_state = 96}, + [499] = {.lex_state = 97}, + [500] = {.lex_state = 4}, + [501] = {.lex_state = 96}, + [502] = {.lex_state = 96}, + [503] = {.lex_state = 96}, + [504] = {.lex_state = 4}, + [505] = {.lex_state = 97}, + [506] = {.lex_state = 4}, + [507] = {.lex_state = 97}, + [508] = {.lex_state = 97}, + [509] = {.lex_state = 96}, + [510] = {.lex_state = 96}, + [511] = {.lex_state = 4}, + [512] = {.lex_state = 4}, + [513] = {.lex_state = 97}, + [514] = {.lex_state = 96}, + [515] = {.lex_state = 97}, + [516] = {.lex_state = 97}, + [517] = {.lex_state = 96}, + [518] = {.lex_state = 97}, + [519] = {.lex_state = 97}, + [520] = {.lex_state = 96}, + [521] = {.lex_state = 96}, + [522] = {.lex_state = 96}, + [523] = {.lex_state = 96}, + [524] = {.lex_state = 96}, + [525] = {.lex_state = 96}, + [526] = {.lex_state = 97}, + [527] = {.lex_state = 96}, + [528] = {.lex_state = 96}, + [529] = {.lex_state = 96}, + [530] = {.lex_state = 96}, + [531] = {.lex_state = 96}, + [532] = {.lex_state = 96}, + [533] = {.lex_state = 96}, + [534] = {.lex_state = 96}, + [535] = {.lex_state = 96}, + [536] = {.lex_state = 96}, + [537] = {.lex_state = 96}, + [538] = {.lex_state = 96}, + [539] = {.lex_state = 96}, + [540] = {.lex_state = 96}, + [541] = {.lex_state = 96}, + [542] = {.lex_state = 96}, + [543] = {.lex_state = 96}, + [544] = {.lex_state = 96}, + [545] = {.lex_state = 96}, + [546] = {.lex_state = 96}, + [547] = {.lex_state = 96}, + [548] = {.lex_state = 96}, + [549] = {.lex_state = 96}, + [550] = {.lex_state = 96}, + [551] = {.lex_state = 96}, + [552] = {.lex_state = 96}, + [553] = {.lex_state = 96}, + [554] = {.lex_state = 96}, + [555] = {.lex_state = 96}, + [556] = {.lex_state = 96}, + [557] = {.lex_state = 96}, + [558] = {.lex_state = 96}, + [559] = {.lex_state = 96}, + [560] = {.lex_state = 96}, + [561] = {.lex_state = 96}, + [562] = {.lex_state = 96}, + [563] = {.lex_state = 96}, + [564] = {.lex_state = 96}, + [565] = {.lex_state = 96}, + [566] = {.lex_state = 96}, + [567] = {.lex_state = 96}, + [568] = {.lex_state = 96}, + [569] = {.lex_state = 96}, + [570] = {.lex_state = 96}, + [571] = {.lex_state = 96}, + [572] = {.lex_state = 96}, + [573] = {.lex_state = 96}, + [574] = {.lex_state = 96}, + [575] = {.lex_state = 96}, + [576] = {.lex_state = 96}, + [577] = {.lex_state = 96}, + [578] = {.lex_state = 96}, + [579] = {.lex_state = 96}, + [580] = {.lex_state = 96}, + [581] = {.lex_state = 96}, + [582] = {.lex_state = 96}, + [583] = {.lex_state = 96}, + [584] = {.lex_state = 96}, + [585] = {.lex_state = 96}, + [586] = {.lex_state = 96}, + [587] = {.lex_state = 96}, + [588] = {.lex_state = 96}, + [589] = {.lex_state = 96}, + [590] = {.lex_state = 96}, + [591] = {.lex_state = 96}, + [592] = {.lex_state = 96}, + [593] = {.lex_state = 96}, + [594] = {.lex_state = 96}, + [595] = {.lex_state = 96}, + [596] = {.lex_state = 96}, + [597] = {.lex_state = 96}, + [598] = {.lex_state = 96}, + [599] = {.lex_state = 96}, + [600] = {.lex_state = 96}, + [601] = {.lex_state = 96}, + [602] = {.lex_state = 96}, + [603] = {.lex_state = 96}, + [604] = {.lex_state = 96}, + [605] = {.lex_state = 96}, + [606] = {.lex_state = 96}, + [607] = {.lex_state = 96}, + [608] = {.lex_state = 96}, + [609] = {.lex_state = 96}, + [610] = {.lex_state = 96}, + [611] = {.lex_state = 96}, + [612] = {.lex_state = 96}, + [613] = {.lex_state = 96}, + [614] = {.lex_state = 96}, + [615] = {.lex_state = 96}, + [616] = {.lex_state = 96}, + [617] = {.lex_state = 96}, + [618] = {.lex_state = 96}, + [619] = {.lex_state = 96}, + [620] = {.lex_state = 96}, + [621] = {.lex_state = 96}, + [622] = {.lex_state = 96}, + [623] = {.lex_state = 96}, + [624] = {.lex_state = 96}, + [625] = {.lex_state = 96}, + [626] = {.lex_state = 96}, + [627] = {.lex_state = 96}, + [628] = {.lex_state = 96}, + [629] = {.lex_state = 96}, + [630] = {.lex_state = 96}, + [631] = {.lex_state = 96}, + [632] = {.lex_state = 96}, + [633] = {.lex_state = 96}, + [634] = {.lex_state = 96}, + [635] = {.lex_state = 96}, + [636] = {.lex_state = 96}, + [637] = {.lex_state = 96}, + [638] = {.lex_state = 96}, + [639] = {.lex_state = 96}, + [640] = {.lex_state = 96}, + [641] = {.lex_state = 96}, + [642] = {.lex_state = 7}, + [643] = {.lex_state = 7}, + [644] = {.lex_state = 7}, + [645] = {.lex_state = 7}, + [646] = {.lex_state = 7}, + [647] = {.lex_state = 96}, + [648] = {.lex_state = 96}, + [649] = {.lex_state = 96}, + [650] = {.lex_state = 96}, + [651] = {.lex_state = 96}, + [652] = {.lex_state = 96}, + [653] = {.lex_state = 96}, + [654] = {.lex_state = 96}, + [655] = {.lex_state = 96}, + [656] = {.lex_state = 96}, + [657] = {.lex_state = 96}, + [658] = {.lex_state = 96}, + [659] = {.lex_state = 96}, + [660] = {.lex_state = 96}, + [661] = {.lex_state = 96}, + [662] = {.lex_state = 96}, + [663] = {.lex_state = 96}, + [664] = {.lex_state = 96}, + [665] = {.lex_state = 96}, + [666] = {.lex_state = 96}, + [667] = {.lex_state = 96}, + [668] = {.lex_state = 96}, + [669] = {.lex_state = 96}, + [670] = {.lex_state = 96}, + [671] = {.lex_state = 96}, + [672] = {.lex_state = 96}, + [673] = {.lex_state = 96}, + [674] = {.lex_state = 96}, + [675] = {.lex_state = 96}, + [676] = {.lex_state = 96}, + [677] = {.lex_state = 96}, + [678] = {.lex_state = 96}, + [679] = {.lex_state = 96}, + [680] = {.lex_state = 96}, + [681] = {.lex_state = 96}, + [682] = {.lex_state = 96}, + [683] = {.lex_state = 96}, + [684] = {.lex_state = 96}, + [685] = {.lex_state = 96}, + [686] = {.lex_state = 96}, + [687] = {.lex_state = 96}, + [688] = {.lex_state = 96}, + [689] = {.lex_state = 96}, + [690] = {.lex_state = 96}, + [691] = {.lex_state = 96}, + [692] = {.lex_state = 96}, + [693] = {.lex_state = 96}, + [694] = {.lex_state = 96}, + [695] = {.lex_state = 96}, + [696] = {.lex_state = 96}, + [697] = {.lex_state = 96}, + [698] = {.lex_state = 96}, + [699] = {.lex_state = 96}, + [700] = {.lex_state = 96}, + [701] = {.lex_state = 96}, + [702] = {.lex_state = 96}, + [703] = {.lex_state = 96}, + [704] = {.lex_state = 96}, + [705] = {.lex_state = 96}, + [706] = {.lex_state = 96}, + [707] = {.lex_state = 96}, + [708] = {.lex_state = 96}, + [709] = {.lex_state = 96}, + [710] = {.lex_state = 96}, + [711] = {.lex_state = 96}, + [712] = {.lex_state = 96}, + [713] = {.lex_state = 96}, + [714] = {.lex_state = 96}, + [715] = {.lex_state = 96}, + [716] = {.lex_state = 96}, + [717] = {.lex_state = 96}, + [718] = {.lex_state = 96}, + [719] = {.lex_state = 96}, + [720] = {.lex_state = 96}, + [721] = {.lex_state = 96}, + [722] = {.lex_state = 96}, + [723] = {.lex_state = 96}, + [724] = {.lex_state = 96}, + [725] = {.lex_state = 96}, + [726] = {.lex_state = 96}, + [727] = {.lex_state = 96}, + [728] = {.lex_state = 96}, + [729] = {.lex_state = 96}, + [730] = {.lex_state = 96}, + [731] = {.lex_state = 96}, + [732] = {.lex_state = 96}, + [733] = {.lex_state = 96}, + [734] = {.lex_state = 96}, + [735] = {.lex_state = 96}, + [736] = {.lex_state = 96}, + [737] = {.lex_state = 96}, + [738] = {.lex_state = 96}, + [739] = {.lex_state = 96}, + [740] = {.lex_state = 96}, + [741] = {.lex_state = 96}, + [742] = {.lex_state = 96}, + [743] = {.lex_state = 96}, + [744] = {.lex_state = 96}, + [745] = {.lex_state = 96}, + [746] = {.lex_state = 96}, + [747] = {.lex_state = 96}, + [748] = {.lex_state = 96}, + [749] = {.lex_state = 96}, + [750] = {.lex_state = 96}, + [751] = {.lex_state = 96}, + [752] = {.lex_state = 96}, + [753] = {.lex_state = 96}, + [754] = {.lex_state = 96}, + [755] = {.lex_state = 96}, + [756] = {.lex_state = 96}, + [757] = {.lex_state = 96}, + [758] = {.lex_state = 96}, + [759] = {.lex_state = 96}, + [760] = {.lex_state = 96}, + [761] = {.lex_state = 96}, + [762] = {.lex_state = 96}, + [763] = {.lex_state = 96}, + [764] = {.lex_state = 96}, + [765] = {.lex_state = 96}, + [766] = {.lex_state = 96}, + [767] = {.lex_state = 96}, + [768] = {.lex_state = 96}, + [769] = {.lex_state = 96}, + [770] = {.lex_state = 96}, + [771] = {.lex_state = 96}, + [772] = {.lex_state = 96}, + [773] = {.lex_state = 96}, + [774] = {.lex_state = 96}, + [775] = {.lex_state = 96}, + [776] = {.lex_state = 96}, + [777] = {.lex_state = 96}, + [778] = {.lex_state = 96}, + [779] = {.lex_state = 96}, + [780] = {.lex_state = 96}, + [781] = {.lex_state = 96}, + [782] = {.lex_state = 96}, + [783] = {.lex_state = 96}, + [784] = {.lex_state = 96}, + [785] = {.lex_state = 96}, + [786] = {.lex_state = 96}, + [787] = {.lex_state = 96}, + [788] = {.lex_state = 96}, + [789] = {.lex_state = 96}, + [790] = {.lex_state = 96}, + [791] = {.lex_state = 96}, + [792] = {.lex_state = 96}, + [793] = {.lex_state = 96}, + [794] = {.lex_state = 96}, + [795] = {.lex_state = 96}, + [796] = {.lex_state = 96}, + [797] = {.lex_state = 96}, + [798] = {.lex_state = 96}, + [799] = {.lex_state = 96}, + [800] = {.lex_state = 96}, + [801] = {.lex_state = 96}, + [802] = {.lex_state = 96}, + [803] = {.lex_state = 96}, + [804] = {.lex_state = 96}, + [805] = {.lex_state = 96}, + [806] = {.lex_state = 96}, + [807] = {.lex_state = 96}, + [808] = {.lex_state = 96}, + [809] = {.lex_state = 96}, + [810] = {.lex_state = 96}, + [811] = {.lex_state = 96}, + [812] = {.lex_state = 96}, + [813] = {.lex_state = 96}, + [814] = {.lex_state = 96}, + [815] = {.lex_state = 96}, + [816] = {.lex_state = 96}, + [817] = {.lex_state = 96}, + [818] = {.lex_state = 96}, + [819] = {.lex_state = 96}, + [820] = {.lex_state = 96}, + [821] = {.lex_state = 96}, + [822] = {.lex_state = 96}, + [823] = {.lex_state = 96}, + [824] = {.lex_state = 96}, + [825] = {.lex_state = 96}, + [826] = {.lex_state = 96}, + [827] = {.lex_state = 96}, + [828] = {.lex_state = 96}, + [829] = {.lex_state = 96}, + [830] = {.lex_state = 96}, + [831] = {.lex_state = 96}, + [832] = {.lex_state = 96}, + [833] = {.lex_state = 96}, + [834] = {.lex_state = 8}, + [835] = {.lex_state = 8}, + [836] = {.lex_state = 8}, + [837] = {.lex_state = 8}, + [838] = {.lex_state = 8}, + [839] = {.lex_state = 8}, + [840] = {.lex_state = 8}, + [841] = {.lex_state = 8}, + [842] = {.lex_state = 8}, + [843] = {.lex_state = 8}, + [844] = {.lex_state = 8}, + [845] = {.lex_state = 8}, + [846] = {.lex_state = 8}, + [847] = {.lex_state = 10}, + [848] = {.lex_state = 10}, + [849] = {.lex_state = 10}, + [850] = {.lex_state = 10}, + [851] = {.lex_state = 10}, + [852] = {.lex_state = 10}, + [853] = {.lex_state = 10}, + [854] = {.lex_state = 10}, + [855] = {.lex_state = 10}, + [856] = {.lex_state = 10}, + [857] = {.lex_state = 10}, + [858] = {.lex_state = 10}, + [859] = {.lex_state = 10}, + [860] = {.lex_state = 8}, + [861] = {.lex_state = 10}, + [862] = {.lex_state = 96}, + [863] = {.lex_state = 96}, + [864] = {.lex_state = 96}, + [865] = {.lex_state = 97}, + [866] = {.lex_state = 96}, + [867] = {.lex_state = 96}, + [868] = {.lex_state = 10}, + [869] = {.lex_state = 96}, + [870] = {.lex_state = 10}, + [871] = {.lex_state = 10}, + [872] = {.lex_state = 10}, + [873] = {.lex_state = 10}, + [874] = {.lex_state = 10}, + [875] = {.lex_state = 10}, + [876] = {.lex_state = 10}, + [877] = {.lex_state = 96}, + [878] = {.lex_state = 96}, + [879] = {.lex_state = 96}, + [880] = {.lex_state = 10}, + [881] = {.lex_state = 10}, + [882] = {.lex_state = 10}, + [883] = {.lex_state = 10}, + [884] = {.lex_state = 96}, + [885] = {.lex_state = 10}, + [886] = {.lex_state = 10}, + [887] = {.lex_state = 10}, + [888] = {.lex_state = 96}, + [889] = {.lex_state = 10}, + [890] = {.lex_state = 96}, + [891] = {.lex_state = 10}, + [892] = {.lex_state = 96}, + [893] = {.lex_state = 96}, + [894] = {.lex_state = 10}, + [895] = {.lex_state = 10}, + [896] = {.lex_state = 10}, + [897] = {.lex_state = 96}, + [898] = {.lex_state = 96}, + [899] = {.lex_state = 96}, + [900] = {.lex_state = 10}, + [901] = {.lex_state = 10}, + [902] = {.lex_state = 10}, + [903] = {.lex_state = 10}, + [904] = {.lex_state = 10}, + [905] = {.lex_state = 96}, + [906] = {.lex_state = 96}, + [907] = {.lex_state = 96}, + [908] = {.lex_state = 10}, + [909] = {.lex_state = 10}, + [910] = {.lex_state = 10}, + [911] = {.lex_state = 10}, + [912] = {.lex_state = 10}, + [913] = {.lex_state = 96}, + [914] = {.lex_state = 10}, + [915] = {.lex_state = 96}, + [916] = {.lex_state = 10}, + [917] = {.lex_state = 10}, + [918] = {.lex_state = 10}, + [919] = {.lex_state = 96}, + [920] = {.lex_state = 96}, + [921] = {.lex_state = 96}, + [922] = {.lex_state = 96}, + [923] = {.lex_state = 96}, + [924] = {.lex_state = 96}, + [925] = {.lex_state = 96}, + [926] = {.lex_state = 96}, + [927] = {.lex_state = 96}, + [928] = {.lex_state = 96}, + [929] = {.lex_state = 96}, + [930] = {.lex_state = 96}, + [931] = {.lex_state = 96}, + [932] = {.lex_state = 96}, + [933] = {.lex_state = 96}, + [934] = {.lex_state = 96}, + [935] = {.lex_state = 96}, + [936] = {.lex_state = 96}, + [937] = {.lex_state = 96}, + [938] = {.lex_state = 96}, + [939] = {.lex_state = 97}, + [940] = {.lex_state = 96}, + [941] = {.lex_state = 96}, + [942] = {.lex_state = 96}, + [943] = {.lex_state = 96}, + [944] = {.lex_state = 96}, + [945] = {.lex_state = 96}, + [946] = {.lex_state = 96}, + [947] = {.lex_state = 96}, + [948] = {.lex_state = 96}, + [949] = {.lex_state = 96}, + [950] = {.lex_state = 96}, + [951] = {.lex_state = 96}, + [952] = {.lex_state = 96}, + [953] = {.lex_state = 96}, + [954] = {.lex_state = 96}, + [955] = {.lex_state = 96}, + [956] = {.lex_state = 96}, + [957] = {.lex_state = 96}, + [958] = {.lex_state = 96}, + [959] = {.lex_state = 96}, + [960] = {.lex_state = 96}, + [961] = {.lex_state = 96}, + [962] = {.lex_state = 10}, + [963] = {.lex_state = 96}, + [964] = {.lex_state = 96}, + [965] = {.lex_state = 96}, + [966] = {.lex_state = 10}, + [967] = {.lex_state = 96}, + [968] = {.lex_state = 96}, + [969] = {.lex_state = 96}, + [970] = {.lex_state = 96}, + [971] = {.lex_state = 96}, + [972] = {.lex_state = 9}, + [973] = {.lex_state = 9}, + [974] = {.lex_state = 96}, + [975] = {.lex_state = 96}, + [976] = {.lex_state = 96}, + [977] = {.lex_state = 96}, + [978] = {.lex_state = 9}, + [979] = {.lex_state = 96}, + [980] = {.lex_state = 9}, + [981] = {.lex_state = 9}, + [982] = {.lex_state = 96}, + [983] = {.lex_state = 96}, + [984] = {.lex_state = 96}, + [985] = {.lex_state = 10}, + [986] = {.lex_state = 96}, + [987] = {.lex_state = 96}, + [988] = {.lex_state = 96}, + [989] = {.lex_state = 96}, + [990] = {.lex_state = 9}, + [991] = {.lex_state = 96}, + [992] = {.lex_state = 96}, + [993] = {.lex_state = 96}, + [994] = {.lex_state = 96}, + [995] = {.lex_state = 96}, + [996] = {.lex_state = 96}, + [997] = {.lex_state = 96}, + [998] = {.lex_state = 96}, + [999] = {.lex_state = 96}, + [1000] = {.lex_state = 96}, + [1001] = {.lex_state = 96}, + [1002] = {.lex_state = 96}, + [1003] = {.lex_state = 96}, + [1004] = {.lex_state = 96}, + [1005] = {.lex_state = 96}, + [1006] = {.lex_state = 96}, + [1007] = {.lex_state = 96}, + [1008] = {.lex_state = 96}, + [1009] = {.lex_state = 96}, + [1010] = {.lex_state = 96}, + [1011] = {.lex_state = 96}, + [1012] = {.lex_state = 96}, + [1013] = {.lex_state = 96}, + [1014] = {.lex_state = 96}, + [1015] = {.lex_state = 9}, + [1016] = {.lex_state = 96}, + [1017] = {.lex_state = 96}, + [1018] = {.lex_state = 96}, + [1019] = {.lex_state = 96}, + [1020] = {.lex_state = 96}, + [1021] = {.lex_state = 96}, + [1022] = {.lex_state = 96}, + [1023] = {.lex_state = 96}, + [1024] = {.lex_state = 96}, + [1025] = {.lex_state = 96}, + [1026] = {.lex_state = 96}, + [1027] = {.lex_state = 96}, + [1028] = {.lex_state = 96}, + [1029] = {.lex_state = 96}, + [1030] = {.lex_state = 96}, + [1031] = {.lex_state = 96}, + [1032] = {.lex_state = 96}, + [1033] = {.lex_state = 96}, + [1034] = {.lex_state = 96}, + [1035] = {.lex_state = 96}, + [1036] = {.lex_state = 96}, + [1037] = {.lex_state = 96}, + [1038] = {.lex_state = 96}, + [1039] = {.lex_state = 96}, + [1040] = {.lex_state = 96}, + [1041] = {.lex_state = 96}, + [1042] = {.lex_state = 96}, + [1043] = {.lex_state = 96}, + [1044] = {.lex_state = 96}, + [1045] = {.lex_state = 96}, + [1046] = {.lex_state = 96}, + [1047] = {.lex_state = 96}, + [1048] = {.lex_state = 96}, + [1049] = {.lex_state = 9}, + [1050] = {.lex_state = 96}, + [1051] = {.lex_state = 96}, + [1052] = {.lex_state = 96}, + [1053] = {.lex_state = 96}, + [1054] = {.lex_state = 96}, + [1055] = {.lex_state = 96}, + [1056] = {.lex_state = 96}, + [1057] = {.lex_state = 96}, + [1058] = {.lex_state = 96}, + [1059] = {.lex_state = 96}, + [1060] = {.lex_state = 96}, + [1061] = {.lex_state = 96}, + [1062] = {.lex_state = 9}, + [1063] = {.lex_state = 96}, + [1064] = {.lex_state = 9}, + [1065] = {.lex_state = 96}, + [1066] = {.lex_state = 96}, + [1067] = {.lex_state = 9}, + [1068] = {.lex_state = 9}, + [1069] = {.lex_state = 96}, + [1070] = {.lex_state = 96}, + [1071] = {.lex_state = 96}, + [1072] = {.lex_state = 9}, + [1073] = {.lex_state = 96}, + [1074] = {.lex_state = 96}, + [1075] = {.lex_state = 96}, + [1076] = {.lex_state = 96}, + [1077] = {.lex_state = 96}, + [1078] = {.lex_state = 96}, + [1079] = {.lex_state = 96}, + [1080] = {.lex_state = 96}, + [1081] = {.lex_state = 96}, + [1082] = {.lex_state = 96}, + [1083] = {.lex_state = 96}, + [1084] = {.lex_state = 96}, + [1085] = {.lex_state = 96}, + [1086] = {.lex_state = 96}, + [1087] = {.lex_state = 96}, + [1088] = {.lex_state = 10}, + [1089] = {.lex_state = 96}, + [1090] = {.lex_state = 96}, + [1091] = {.lex_state = 10}, + [1092] = {.lex_state = 96}, + [1093] = {.lex_state = 10}, + [1094] = {.lex_state = 10}, + [1095] = {.lex_state = 96}, + [1096] = {.lex_state = 96}, + [1097] = {.lex_state = 96}, + [1098] = {.lex_state = 96}, + [1099] = {.lex_state = 10}, + [1100] = {.lex_state = 96}, + [1101] = {.lex_state = 10}, + [1102] = {.lex_state = 96}, + [1103] = {.lex_state = 96}, + [1104] = {.lex_state = 96}, + [1105] = {.lex_state = 96}, + [1106] = {.lex_state = 10}, + [1107] = {.lex_state = 96}, + [1108] = {.lex_state = 96}, + [1109] = {.lex_state = 10}, + [1110] = {.lex_state = 96}, + [1111] = {.lex_state = 10}, + [1112] = {.lex_state = 96}, + [1113] = {.lex_state = 96}, + [1114] = {.lex_state = 96}, + [1115] = {.lex_state = 10}, + [1116] = {.lex_state = 10}, + [1117] = {.lex_state = 96}, + [1118] = {.lex_state = 10}, + [1119] = {.lex_state = 96}, + [1120] = {.lex_state = 96}, + [1121] = {.lex_state = 96}, + [1122] = {.lex_state = 96}, + [1123] = {.lex_state = 96}, + [1124] = {.lex_state = 10}, + [1125] = {.lex_state = 10}, + [1126] = {.lex_state = 10}, + [1127] = {.lex_state = 96}, + [1128] = {.lex_state = 97}, + [1129] = {.lex_state = 96}, + [1130] = {.lex_state = 96}, + [1131] = {.lex_state = 96}, + [1132] = {.lex_state = 96}, + [1133] = {.lex_state = 96}, + [1134] = {.lex_state = 96}, + [1135] = {.lex_state = 96}, + [1136] = {.lex_state = 96}, + [1137] = {.lex_state = 96}, + [1138] = {.lex_state = 96}, + [1139] = {.lex_state = 96}, + [1140] = {.lex_state = 96}, + [1141] = {.lex_state = 96}, + [1142] = {.lex_state = 96}, + [1143] = {.lex_state = 96}, + [1144] = {.lex_state = 96}, + [1145] = {.lex_state = 96}, + [1146] = {.lex_state = 96}, + [1147] = {.lex_state = 96}, + [1148] = {.lex_state = 96}, + [1149] = {.lex_state = 96}, + [1150] = {.lex_state = 96}, + [1151] = {.lex_state = 96}, + [1152] = {.lex_state = 96}, + [1153] = {.lex_state = 96}, + [1154] = {.lex_state = 97}, + [1155] = {.lex_state = 96}, + [1156] = {.lex_state = 96}, + [1157] = {.lex_state = 96}, + [1158] = {.lex_state = 96}, + [1159] = {.lex_state = 96}, + [1160] = {.lex_state = 96}, + [1161] = {.lex_state = 96}, + [1162] = {.lex_state = 96}, + [1163] = {.lex_state = 96}, + [1164] = {.lex_state = 96}, + [1165] = {.lex_state = 96}, + [1166] = {.lex_state = 96}, + [1167] = {.lex_state = 96}, + [1168] = {.lex_state = 96}, + [1169] = {.lex_state = 96}, + [1170] = {.lex_state = 96}, + [1171] = {.lex_state = 96}, + [1172] = {.lex_state = 96}, + [1173] = {.lex_state = 96}, + [1174] = {.lex_state = 96}, + [1175] = {.lex_state = 96}, + [1176] = {.lex_state = 96}, + [1177] = {.lex_state = 96}, + [1178] = {.lex_state = 96}, + [1179] = {.lex_state = 96}, + [1180] = {.lex_state = 96}, + [1181] = {.lex_state = 96}, + [1182] = {.lex_state = 96}, + [1183] = {.lex_state = 96}, + [1184] = {.lex_state = 96}, + [1185] = {.lex_state = 96}, + [1186] = {.lex_state = 96}, + [1187] = {.lex_state = 96}, + [1188] = {.lex_state = 96}, + [1189] = {.lex_state = 96}, + [1190] = {.lex_state = 96}, + [1191] = {.lex_state = 96}, + [1192] = {.lex_state = 96}, + [1193] = {.lex_state = 96}, + [1194] = {.lex_state = 96}, + [1195] = {.lex_state = 96}, + [1196] = {.lex_state = 96}, + [1197] = {.lex_state = 96}, + [1198] = {.lex_state = 96}, + [1199] = {.lex_state = 96}, + [1200] = {.lex_state = 96}, + [1201] = {.lex_state = 96}, + [1202] = {.lex_state = 96}, + [1203] = {.lex_state = 96}, + [1204] = {.lex_state = 96}, + [1205] = {.lex_state = 96}, + [1206] = {.lex_state = 96}, + [1207] = {.lex_state = 96}, + [1208] = {.lex_state = 96}, + [1209] = {.lex_state = 96}, + [1210] = {.lex_state = 96}, + [1211] = {.lex_state = 96}, + [1212] = {.lex_state = 96}, + [1213] = {.lex_state = 96}, + [1214] = {.lex_state = 96}, + [1215] = {.lex_state = 96}, + [1216] = {.lex_state = 96}, + [1217] = {.lex_state = 96}, + [1218] = {.lex_state = 96}, + [1219] = {.lex_state = 96}, + [1220] = {.lex_state = 96}, + [1221] = {.lex_state = 96}, + [1222] = {.lex_state = 96}, + [1223] = {.lex_state = 96}, + [1224] = {.lex_state = 96}, + [1225] = {.lex_state = 96}, + [1226] = {.lex_state = 96}, + [1227] = {.lex_state = 96}, + [1228] = {.lex_state = 96}, + [1229] = {.lex_state = 96}, + [1230] = {.lex_state = 97}, + [1231] = {.lex_state = 96}, + [1232] = {.lex_state = 96}, + [1233] = {.lex_state = 96}, + [1234] = {.lex_state = 96}, + [1235] = {.lex_state = 96}, + [1236] = {.lex_state = 96}, + [1237] = {.lex_state = 96}, + [1238] = {.lex_state = 96}, + [1239] = {.lex_state = 96}, + [1240] = {.lex_state = 96}, + [1241] = {.lex_state = 96}, + [1242] = {.lex_state = 96}, + [1243] = {.lex_state = 96}, + [1244] = {.lex_state = 96}, + [1245] = {.lex_state = 97}, + [1246] = {.lex_state = 96}, + [1247] = {.lex_state = 96}, + [1248] = {.lex_state = 96}, + [1249] = {.lex_state = 96}, + [1250] = {.lex_state = 96}, + [1251] = {.lex_state = 96}, + [1252] = {.lex_state = 96}, + [1253] = {.lex_state = 96}, + [1254] = {.lex_state = 96}, + [1255] = {.lex_state = 96}, + [1256] = {.lex_state = 96}, + [1257] = {.lex_state = 96}, + [1258] = {.lex_state = 97}, + [1259] = {.lex_state = 96}, + [1260] = {.lex_state = 96}, + [1261] = {.lex_state = 96}, + [1262] = {.lex_state = 96}, + [1263] = {.lex_state = 96}, + [1264] = {.lex_state = 96}, + [1265] = {.lex_state = 96}, + [1266] = {.lex_state = 96}, + [1267] = {.lex_state = 96}, + [1268] = {.lex_state = 96}, + [1269] = {.lex_state = 96}, + [1270] = {.lex_state = 96}, + [1271] = {.lex_state = 96}, + [1272] = {.lex_state = 96}, + [1273] = {.lex_state = 96}, + [1274] = {.lex_state = 96}, + [1275] = {.lex_state = 96}, + [1276] = {.lex_state = 96}, + [1277] = {.lex_state = 96}, + [1278] = {.lex_state = 96}, + [1279] = {.lex_state = 96}, + [1280] = {.lex_state = 96}, + [1281] = {.lex_state = 96}, + [1282] = {.lex_state = 96}, + [1283] = {.lex_state = 96}, + [1284] = {.lex_state = 96}, + [1285] = {.lex_state = 97}, + [1286] = {.lex_state = 96}, + [1287] = {.lex_state = 96}, + [1288] = {.lex_state = 96}, + [1289] = {.lex_state = 96}, + [1290] = {.lex_state = 96}, + [1291] = {.lex_state = 96}, + [1292] = {.lex_state = 96}, + [1293] = {.lex_state = 96}, + [1294] = {.lex_state = 96}, + [1295] = {.lex_state = 96}, + [1296] = {.lex_state = 96}, + [1297] = {.lex_state = 96}, + [1298] = {.lex_state = 96}, + [1299] = {.lex_state = 96}, + [1300] = {.lex_state = 96}, + [1301] = {.lex_state = 96}, + [1302] = {.lex_state = 96}, + [1303] = {.lex_state = 96}, + [1304] = {.lex_state = 96}, + [1305] = {.lex_state = 96}, + [1306] = {.lex_state = 96}, + [1307] = {.lex_state = 96}, + [1308] = {.lex_state = 96}, + [1309] = {.lex_state = 96}, + [1310] = {.lex_state = 96}, + [1311] = {.lex_state = 96}, + [1312] = {.lex_state = 96}, + [1313] = {.lex_state = 96}, + [1314] = {.lex_state = 96}, + [1315] = {.lex_state = 96}, + [1316] = {.lex_state = 96}, + [1317] = {.lex_state = 96}, + [1318] = {.lex_state = 96}, + [1319] = {.lex_state = 96}, + [1320] = {.lex_state = 96}, + [1321] = {.lex_state = 96}, + [1322] = {.lex_state = 97}, + [1323] = {.lex_state = 96}, + [1324] = {.lex_state = 96}, + [1325] = {.lex_state = 96}, + [1326] = {.lex_state = 96}, + [1327] = {.lex_state = 96}, + [1328] = {.lex_state = 96}, + [1329] = {.lex_state = 96}, + [1330] = {.lex_state = 96}, + [1331] = {.lex_state = 97}, + [1332] = {.lex_state = 96}, + [1333] = {.lex_state = 96}, + [1334] = {.lex_state = 96}, + [1335] = {.lex_state = 96}, + [1336] = {.lex_state = 96}, + [1337] = {.lex_state = 96}, + [1338] = {.lex_state = 96}, + [1339] = {.lex_state = 96}, + [1340] = {.lex_state = 96}, + [1341] = {.lex_state = 96}, + [1342] = {.lex_state = 96}, + [1343] = {.lex_state = 96}, + [1344] = {.lex_state = 96}, + [1345] = {.lex_state = 96}, + [1346] = {.lex_state = 96}, + [1347] = {.lex_state = 96}, + [1348] = {.lex_state = 96}, + [1349] = {.lex_state = 96}, + [1350] = {.lex_state = 96}, + [1351] = {.lex_state = 96}, + [1352] = {.lex_state = 96}, + [1353] = {.lex_state = 96}, + [1354] = {.lex_state = 96}, + [1355] = {.lex_state = 96}, + [1356] = {.lex_state = 96}, + [1357] = {.lex_state = 96}, + [1358] = {.lex_state = 96}, + [1359] = {.lex_state = 96}, + [1360] = {.lex_state = 96}, + [1361] = {.lex_state = 96}, + [1362] = {.lex_state = 96}, + [1363] = {.lex_state = 96}, + [1364] = {.lex_state = 96}, + [1365] = {.lex_state = 96}, + [1366] = {.lex_state = 96}, + [1367] = {.lex_state = 96}, + [1368] = {.lex_state = 96}, + [1369] = {.lex_state = 96}, + [1370] = {.lex_state = 96}, + [1371] = {.lex_state = 96}, + [1372] = {.lex_state = 96}, + [1373] = {.lex_state = 96}, + [1374] = {.lex_state = 96}, + [1375] = {.lex_state = 96}, + [1376] = {.lex_state = 96}, + [1377] = {.lex_state = 96}, + [1378] = {.lex_state = 96}, + [1379] = {.lex_state = 96}, + [1380] = {.lex_state = 96}, + [1381] = {.lex_state = 96}, + [1382] = {.lex_state = 96}, + [1383] = {.lex_state = 96}, + [1384] = {.lex_state = 96}, + [1385] = {.lex_state = 96}, + [1386] = {.lex_state = 96}, + [1387] = {.lex_state = 96}, + [1388] = {.lex_state = 96}, + [1389] = {.lex_state = 96}, + [1390] = {.lex_state = 96}, + [1391] = {.lex_state = 96}, + [1392] = {.lex_state = 96}, + [1393] = {.lex_state = 96}, + [1394] = {.lex_state = 96}, + [1395] = {.lex_state = 96}, + [1396] = {.lex_state = 96}, + [1397] = {.lex_state = 96}, + [1398] = {.lex_state = 96}, + [1399] = {.lex_state = 96}, + [1400] = {.lex_state = 96}, + [1401] = {.lex_state = 96}, + [1402] = {.lex_state = 96}, + [1403] = {.lex_state = 96}, + [1404] = {.lex_state = 96}, + [1405] = {.lex_state = 96}, + [1406] = {.lex_state = 96}, + [1407] = {.lex_state = 96}, + [1408] = {.lex_state = 96}, + [1409] = {.lex_state = 96}, + [1410] = {.lex_state = 96}, + [1411] = {.lex_state = 96}, + [1412] = {.lex_state = 96}, + [1413] = {.lex_state = 97}, + [1414] = {.lex_state = 96}, + [1415] = {.lex_state = 96}, + [1416] = {.lex_state = 96}, + [1417] = {.lex_state = 96}, + [1418] = {.lex_state = 96}, + [1419] = {.lex_state = 96}, + [1420] = {.lex_state = 96}, + [1421] = {.lex_state = 96}, + [1422] = {.lex_state = 96}, + [1423] = {.lex_state = 96}, + [1424] = {.lex_state = 96}, + [1425] = {.lex_state = 96}, + [1426] = {.lex_state = 96}, + [1427] = {.lex_state = 96}, + [1428] = {.lex_state = 96}, + [1429] = {.lex_state = 96}, + [1430] = {.lex_state = 96}, + [1431] = {.lex_state = 96}, + [1432] = {.lex_state = 96}, + [1433] = {.lex_state = 96}, + [1434] = {.lex_state = 96}, + [1435] = {.lex_state = 96}, + [1436] = {.lex_state = 96}, + [1437] = {.lex_state = 96}, + [1438] = {.lex_state = 96}, + [1439] = {.lex_state = 96}, + [1440] = {.lex_state = 96}, + [1441] = {.lex_state = 96}, + [1442] = {.lex_state = 96}, + [1443] = {.lex_state = 97}, + [1444] = {.lex_state = 96}, + [1445] = {.lex_state = 96}, + [1446] = {.lex_state = 96}, + [1447] = {.lex_state = 96}, + [1448] = {.lex_state = 96}, + [1449] = {.lex_state = 96}, + [1450] = {.lex_state = 97}, + [1451] = {.lex_state = 96}, + [1452] = {.lex_state = 96}, + [1453] = {.lex_state = 96}, + [1454] = {.lex_state = 97}, + [1455] = {.lex_state = 96}, + [1456] = {.lex_state = 96}, + [1457] = {.lex_state = 96}, + [1458] = {.lex_state = 96}, + [1459] = {.lex_state = 97}, + [1460] = {.lex_state = 96}, + [1461] = {.lex_state = 96}, + [1462] = {.lex_state = 96}, + [1463] = {.lex_state = 96}, + [1464] = {.lex_state = 96}, + [1465] = {.lex_state = 96}, + [1466] = {.lex_state = 96}, + [1467] = {.lex_state = 96}, + [1468] = {.lex_state = 96}, + [1469] = {.lex_state = 96}, + [1470] = {.lex_state = 96}, + [1471] = {.lex_state = 97}, + [1472] = {.lex_state = 96}, + [1473] = {.lex_state = 96}, + [1474] = {.lex_state = 96}, + [1475] = {.lex_state = 96}, + [1476] = {.lex_state = 97}, + [1477] = {.lex_state = 96}, + [1478] = {.lex_state = 96}, + [1479] = {.lex_state = 96}, + [1480] = {.lex_state = 96}, + [1481] = {.lex_state = 97}, + [1482] = {.lex_state = 96}, + [1483] = {.lex_state = 96}, + [1484] = {.lex_state = 96}, + [1485] = {.lex_state = 96}, + [1486] = {.lex_state = 96}, + [1487] = {.lex_state = 96}, + [1488] = {.lex_state = 96}, + [1489] = {.lex_state = 96}, + [1490] = {.lex_state = 96}, + [1491] = {.lex_state = 97}, + [1492] = {.lex_state = 96}, + [1493] = {.lex_state = 96}, + [1494] = {.lex_state = 96}, + [1495] = {.lex_state = 96}, + [1496] = {.lex_state = 96}, + [1497] = {.lex_state = 96}, + [1498] = {.lex_state = 96}, + [1499] = {.lex_state = 96}, + [1500] = {.lex_state = 96}, + [1501] = {.lex_state = 96}, + [1502] = {.lex_state = 96}, + [1503] = {.lex_state = 96}, + [1504] = {.lex_state = 96}, + [1505] = {.lex_state = 96}, + [1506] = {.lex_state = 96}, + [1507] = {.lex_state = 96}, + [1508] = {.lex_state = 96}, + [1509] = {.lex_state = 96}, + [1510] = {.lex_state = 10}, + [1511] = {.lex_state = 10}, + [1512] = {.lex_state = 96}, + [1513] = {.lex_state = 96}, + [1514] = {.lex_state = 96}, + [1515] = {.lex_state = 10}, + [1516] = {.lex_state = 10}, + [1517] = {.lex_state = 96}, + [1518] = {.lex_state = 10}, + [1519] = {.lex_state = 10}, + [1520] = {.lex_state = 10}, + [1521] = {.lex_state = 10}, + [1522] = {.lex_state = 10}, + [1523] = {.lex_state = 10}, + [1524] = {.lex_state = 10}, + [1525] = {.lex_state = 10}, + [1526] = {.lex_state = 10}, + [1527] = {.lex_state = 10}, + [1528] = {.lex_state = 10}, + [1529] = {.lex_state = 10}, + [1530] = {.lex_state = 10}, + [1531] = {.lex_state = 10}, + [1532] = {.lex_state = 10}, + [1533] = {.lex_state = 10}, + [1534] = {.lex_state = 10}, + [1535] = {.lex_state = 10}, + [1536] = {.lex_state = 10}, + [1537] = {.lex_state = 10}, + [1538] = {.lex_state = 10}, + [1539] = {.lex_state = 10}, + [1540] = {.lex_state = 10}, + [1541] = {.lex_state = 10}, + [1542] = {.lex_state = 10}, + [1543] = {.lex_state = 10}, + [1544] = {.lex_state = 10}, + [1545] = {.lex_state = 10}, + [1546] = {.lex_state = 10}, + [1547] = {.lex_state = 10}, + [1548] = {.lex_state = 10}, + [1549] = {.lex_state = 10}, + [1550] = {.lex_state = 10}, + [1551] = {.lex_state = 10}, + [1552] = {.lex_state = 10}, + [1553] = {.lex_state = 10}, + [1554] = {.lex_state = 10}, + [1555] = {.lex_state = 10}, + [1556] = {.lex_state = 10}, + [1557] = {.lex_state = 10}, + [1558] = {.lex_state = 10}, + [1559] = {.lex_state = 10}, + [1560] = {.lex_state = 10}, + [1561] = {.lex_state = 10}, + [1562] = {.lex_state = 10}, + [1563] = {.lex_state = 10}, + [1564] = {.lex_state = 10}, + [1565] = {.lex_state = 10}, + [1566] = {.lex_state = 10}, + [1567] = {.lex_state = 10}, + [1568] = {.lex_state = 10}, + [1569] = {.lex_state = 10}, + [1570] = {.lex_state = 10}, + [1571] = {.lex_state = 10}, + [1572] = {.lex_state = 10}, + [1573] = {.lex_state = 10}, + [1574] = {.lex_state = 10}, + [1575] = {.lex_state = 10}, + [1576] = {.lex_state = 10}, + [1577] = {.lex_state = 10}, + [1578] = {.lex_state = 10}, + [1579] = {.lex_state = 10}, + [1580] = {.lex_state = 10}, + [1581] = {.lex_state = 10}, + [1582] = {.lex_state = 10}, + [1583] = {.lex_state = 10}, + [1584] = {.lex_state = 10}, + [1585] = {.lex_state = 10}, + [1586] = {.lex_state = 10}, + [1587] = {.lex_state = 10}, + [1588] = {.lex_state = 10}, + [1589] = {.lex_state = 10}, + [1590] = {.lex_state = 10}, + [1591] = {.lex_state = 10}, + [1592] = {.lex_state = 10}, + [1593] = {.lex_state = 10}, + [1594] = {.lex_state = 10}, + [1595] = {.lex_state = 10}, + [1596] = {.lex_state = 10}, + [1597] = {.lex_state = 10}, + [1598] = {.lex_state = 96}, + [1599] = {.lex_state = 96}, + [1600] = {.lex_state = 10}, + [1601] = {.lex_state = 10}, + [1602] = {.lex_state = 10}, + [1603] = {.lex_state = 10}, + [1604] = {.lex_state = 96}, + [1605] = {.lex_state = 96}, + [1606] = {.lex_state = 10}, + [1607] = {.lex_state = 96}, + [1608] = {.lex_state = 96}, + [1609] = {.lex_state = 96}, + [1610] = {.lex_state = 10}, + [1611] = {.lex_state = 10}, + [1612] = {.lex_state = 96}, + [1613] = {.lex_state = 10}, + [1614] = {.lex_state = 10}, + [1615] = {.lex_state = 10}, + [1616] = {.lex_state = 10}, + [1617] = {.lex_state = 10}, + [1618] = {.lex_state = 10}, + [1619] = {.lex_state = 10}, + [1620] = {.lex_state = 10}, + [1621] = {.lex_state = 10}, + [1622] = {.lex_state = 10}, + [1623] = {.lex_state = 10}, + [1624] = {.lex_state = 96}, + [1625] = {.lex_state = 10}, + [1626] = {.lex_state = 10}, + [1627] = {.lex_state = 96}, + [1628] = {.lex_state = 96}, + [1629] = {.lex_state = 10}, + [1630] = {.lex_state = 10}, + [1631] = {.lex_state = 10}, + [1632] = {.lex_state = 10}, + [1633] = {.lex_state = 10}, + [1634] = {.lex_state = 10}, + [1635] = {.lex_state = 10}, + [1636] = {.lex_state = 10}, + [1637] = {.lex_state = 10}, + [1638] = {.lex_state = 10}, + [1639] = {.lex_state = 10}, + [1640] = {.lex_state = 10}, + [1641] = {.lex_state = 10}, + [1642] = {.lex_state = 10}, + [1643] = {.lex_state = 96}, + [1644] = {.lex_state = 96}, + [1645] = {.lex_state = 10}, + [1646] = {.lex_state = 10}, + [1647] = {.lex_state = 10}, + [1648] = {.lex_state = 10}, + [1649] = {.lex_state = 10}, + [1650] = {.lex_state = 10}, + [1651] = {.lex_state = 10}, + [1652] = {.lex_state = 10}, + [1653] = {.lex_state = 10}, + [1654] = {.lex_state = 10}, + [1655] = {.lex_state = 10}, + [1656] = {.lex_state = 10}, + [1657] = {.lex_state = 10}, + [1658] = {.lex_state = 10}, + [1659] = {.lex_state = 10}, + [1660] = {.lex_state = 10}, + [1661] = {.lex_state = 10}, + [1662] = {.lex_state = 10}, + [1663] = {.lex_state = 10}, + [1664] = {.lex_state = 10}, + [1665] = {.lex_state = 10}, + [1666] = {.lex_state = 10}, + [1667] = {.lex_state = 10}, + [1668] = {.lex_state = 10}, + [1669] = {.lex_state = 10}, + [1670] = {.lex_state = 10}, + [1671] = {.lex_state = 96}, + [1672] = {.lex_state = 10}, + [1673] = {.lex_state = 10}, + [1674] = {.lex_state = 10}, + [1675] = {.lex_state = 10}, + [1676] = {.lex_state = 10}, + [1677] = {.lex_state = 10}, + [1678] = {.lex_state = 10}, + [1679] = {.lex_state = 10}, + [1680] = {.lex_state = 10}, + [1681] = {.lex_state = 10}, + [1682] = {.lex_state = 10}, + [1683] = {.lex_state = 10}, + [1684] = {.lex_state = 10}, + [1685] = {.lex_state = 10}, + [1686] = {.lex_state = 10}, + [1687] = {.lex_state = 10}, + [1688] = {.lex_state = 10}, + [1689] = {.lex_state = 10}, + [1690] = {.lex_state = 10}, + [1691] = {.lex_state = 10}, + [1692] = {.lex_state = 10}, + [1693] = {.lex_state = 10}, + [1694] = {.lex_state = 96}, + [1695] = {.lex_state = 10}, + [1696] = {.lex_state = 10}, + [1697] = {.lex_state = 10}, + [1698] = {.lex_state = 10}, + [1699] = {.lex_state = 10}, + [1700] = {.lex_state = 10}, + [1701] = {.lex_state = 10}, + [1702] = {.lex_state = 10}, + [1703] = {.lex_state = 10}, + [1704] = {.lex_state = 10}, + [1705] = {.lex_state = 96}, + [1706] = {.lex_state = 96}, + [1707] = {.lex_state = 10}, + [1708] = {.lex_state = 10}, + [1709] = {.lex_state = 10}, + [1710] = {.lex_state = 10}, + [1711] = {.lex_state = 10}, + [1712] = {.lex_state = 10}, + [1713] = {.lex_state = 10}, + [1714] = {.lex_state = 10}, + [1715] = {.lex_state = 10}, + [1716] = {.lex_state = 10}, + [1717] = {.lex_state = 10}, + [1718] = {.lex_state = 10}, + [1719] = {.lex_state = 10}, + [1720] = {.lex_state = 10}, + [1721] = {.lex_state = 10}, + [1722] = {.lex_state = 10}, + [1723] = {.lex_state = 10}, + [1724] = {.lex_state = 10}, + [1725] = {.lex_state = 10}, + [1726] = {.lex_state = 10}, + [1727] = {.lex_state = 10}, + [1728] = {.lex_state = 10}, + [1729] = {.lex_state = 10}, + [1730] = {.lex_state = 10}, + [1731] = {.lex_state = 10}, + [1732] = {.lex_state = 10}, + [1733] = {.lex_state = 10}, + [1734] = {.lex_state = 96}, + [1735] = {.lex_state = 10}, + [1736] = {.lex_state = 10}, + [1737] = {.lex_state = 10}, + [1738] = {.lex_state = 10}, + [1739] = {.lex_state = 10}, + [1740] = {.lex_state = 10}, + [1741] = {.lex_state = 10}, + [1742] = {.lex_state = 10}, + [1743] = {.lex_state = 10}, + [1744] = {.lex_state = 7}, + [1745] = {.lex_state = 7}, + [1746] = {.lex_state = 7}, + [1747] = {.lex_state = 7}, + [1748] = {.lex_state = 7}, + [1749] = {.lex_state = 7}, + [1750] = {.lex_state = 7}, + [1751] = {.lex_state = 7}, + [1752] = {.lex_state = 7}, + [1753] = {.lex_state = 7}, + [1754] = {.lex_state = 7}, + [1755] = {.lex_state = 7}, + [1756] = {.lex_state = 7}, + [1757] = {.lex_state = 7}, + [1758] = {.lex_state = 7}, + [1759] = {.lex_state = 7}, + [1760] = {.lex_state = 7}, + [1761] = {.lex_state = 7}, + [1762] = {.lex_state = 7}, + [1763] = {.lex_state = 7}, + [1764] = {.lex_state = 96}, + [1765] = {.lex_state = 96}, + [1766] = {.lex_state = 96}, + [1767] = {.lex_state = 96}, + [1768] = {.lex_state = 96}, + [1769] = {.lex_state = 96}, + [1770] = {.lex_state = 96}, + [1771] = {.lex_state = 96}, + [1772] = {.lex_state = 96}, + [1773] = {.lex_state = 96}, + [1774] = {.lex_state = 96}, + [1775] = {.lex_state = 96}, + [1776] = {.lex_state = 96}, + [1777] = {.lex_state = 96}, + [1778] = {.lex_state = 96}, + [1779] = {.lex_state = 96}, + [1780] = {.lex_state = 96}, + [1781] = {.lex_state = 96}, + [1782] = {.lex_state = 96}, + [1783] = {.lex_state = 96}, + [1784] = {.lex_state = 96}, + [1785] = {.lex_state = 96}, + [1786] = {.lex_state = 96}, + [1787] = {.lex_state = 96}, + [1788] = {.lex_state = 96}, + [1789] = {.lex_state = 96}, + [1790] = {.lex_state = 96}, + [1791] = {.lex_state = 96}, + [1792] = {.lex_state = 96}, + [1793] = {.lex_state = 96}, + [1794] = {.lex_state = 96}, + [1795] = {.lex_state = 96}, + [1796] = {.lex_state = 96}, + [1797] = {.lex_state = 96}, + [1798] = {.lex_state = 96}, + [1799] = {.lex_state = 96}, + [1800] = {.lex_state = 96}, + [1801] = {.lex_state = 96}, + [1802] = {.lex_state = 96}, + [1803] = {.lex_state = 96}, + [1804] = {.lex_state = 96}, + [1805] = {.lex_state = 96}, + [1806] = {.lex_state = 96}, + [1807] = {.lex_state = 96}, + [1808] = {.lex_state = 96}, + [1809] = {.lex_state = 96}, + [1810] = {.lex_state = 96}, + [1811] = {.lex_state = 96}, + [1812] = {.lex_state = 96}, + [1813] = {.lex_state = 96}, + [1814] = {.lex_state = 96}, + [1815] = {.lex_state = 96}, + [1816] = {.lex_state = 96}, + [1817] = {.lex_state = 96}, + [1818] = {.lex_state = 96}, + [1819] = {.lex_state = 96}, + [1820] = {.lex_state = 96}, + [1821] = {.lex_state = 96}, + [1822] = {.lex_state = 96}, + [1823] = {.lex_state = 96}, + [1824] = {.lex_state = 96}, + [1825] = {.lex_state = 96}, + [1826] = {.lex_state = 96}, + [1827] = {.lex_state = 96}, + [1828] = {.lex_state = 96}, + [1829] = {.lex_state = 96}, + [1830] = {.lex_state = 96}, + [1831] = {.lex_state = 96}, + [1832] = {.lex_state = 96}, + [1833] = {.lex_state = 96}, + [1834] = {.lex_state = 96}, + [1835] = {.lex_state = 96}, + [1836] = {.lex_state = 96}, + [1837] = {.lex_state = 96}, + [1838] = {.lex_state = 96}, + [1839] = {.lex_state = 96}, + [1840] = {.lex_state = 96}, + [1841] = {.lex_state = 96}, + [1842] = {.lex_state = 96}, + [1843] = {.lex_state = 96}, + [1844] = {.lex_state = 96}, + [1845] = {.lex_state = 96}, + [1846] = {.lex_state = 96}, + [1847] = {.lex_state = 96}, + [1848] = {.lex_state = 96}, + [1849] = {.lex_state = 96}, + [1850] = {.lex_state = 96}, + [1851] = {.lex_state = 96}, + [1852] = {.lex_state = 96}, + [1853] = {.lex_state = 96}, + [1854] = {.lex_state = 96}, + [1855] = {.lex_state = 96}, + [1856] = {.lex_state = 96}, + [1857] = {.lex_state = 96}, + [1858] = {.lex_state = 96}, + [1859] = {.lex_state = 96}, + [1860] = {.lex_state = 96}, + [1861] = {.lex_state = 96}, + [1862] = {.lex_state = 96}, + [1863] = {.lex_state = 96}, + [1864] = {.lex_state = 96}, + [1865] = {.lex_state = 96}, + [1866] = {.lex_state = 96}, + [1867] = {.lex_state = 96}, + [1868] = {.lex_state = 96}, + [1869] = {.lex_state = 96}, + [1870] = {.lex_state = 96}, + [1871] = {.lex_state = 96}, + [1872] = {.lex_state = 96}, + [1873] = {.lex_state = 96}, + [1874] = {.lex_state = 96}, + [1875] = {.lex_state = 96}, + [1876] = {.lex_state = 96}, + [1877] = {.lex_state = 96}, + [1878] = {.lex_state = 96}, + [1879] = {.lex_state = 96}, + [1880] = {.lex_state = 96}, + [1881] = {.lex_state = 96}, + [1882] = {.lex_state = 96}, + [1883] = {.lex_state = 96}, + [1884] = {.lex_state = 96}, + [1885] = {.lex_state = 96}, + [1886] = {.lex_state = 96}, + [1887] = {.lex_state = 96}, + [1888] = {.lex_state = 96}, + [1889] = {.lex_state = 96}, + [1890] = {.lex_state = 96}, + [1891] = {.lex_state = 96}, + [1892] = {.lex_state = 96}, + [1893] = {.lex_state = 96}, + [1894] = {.lex_state = 96}, + [1895] = {.lex_state = 96}, + [1896] = {.lex_state = 96}, + [1897] = {.lex_state = 96}, + [1898] = {.lex_state = 96}, + [1899] = {.lex_state = 96}, + [1900] = {.lex_state = 20}, + [1901] = {.lex_state = 20}, + [1902] = {.lex_state = 96}, + [1903] = {.lex_state = 20}, + [1904] = {.lex_state = 20}, + [1905] = {.lex_state = 20}, + [1906] = {.lex_state = 20}, + [1907] = {.lex_state = 20}, + [1908] = {.lex_state = 20}, + [1909] = {.lex_state = 20}, + [1910] = {.lex_state = 20}, + [1911] = {.lex_state = 96}, + [1912] = {.lex_state = 20}, + [1913] = {.lex_state = 96}, + [1914] = {.lex_state = 20}, + [1915] = {.lex_state = 20}, + [1916] = {.lex_state = 20}, + [1917] = {.lex_state = 96}, + [1918] = {.lex_state = 96}, + [1919] = {.lex_state = 96}, + [1920] = {.lex_state = 96}, + [1921] = {.lex_state = 96}, + [1922] = {.lex_state = 96}, + [1923] = {.lex_state = 96}, + [1924] = {.lex_state = 96}, + [1925] = {.lex_state = 96}, + [1926] = {.lex_state = 96}, + [1927] = {.lex_state = 96}, + [1928] = {.lex_state = 96}, + [1929] = {.lex_state = 96}, + [1930] = {.lex_state = 96}, + [1931] = {.lex_state = 96}, + [1932] = {.lex_state = 96}, + [1933] = {.lex_state = 96}, + [1934] = {.lex_state = 96}, + [1935] = {.lex_state = 96}, + [1936] = {.lex_state = 96}, + [1937] = {.lex_state = 96}, + [1938] = {.lex_state = 96}, + [1939] = {.lex_state = 96}, + [1940] = {.lex_state = 96}, + [1941] = {.lex_state = 96}, + [1942] = {.lex_state = 96}, + [1943] = {.lex_state = 96}, + [1944] = {.lex_state = 96}, + [1945] = {.lex_state = 96}, + [1946] = {.lex_state = 96}, + [1947] = {.lex_state = 96}, + [1948] = {.lex_state = 96}, + [1949] = {.lex_state = 96}, + [1950] = {.lex_state = 96}, + [1951] = {.lex_state = 96}, + [1952] = {.lex_state = 96}, + [1953] = {.lex_state = 96}, + [1954] = {.lex_state = 96}, + [1955] = {.lex_state = 96}, + [1956] = {.lex_state = 96}, + [1957] = {.lex_state = 96}, + [1958] = {.lex_state = 96}, + [1959] = {.lex_state = 96}, + [1960] = {.lex_state = 96}, + [1961] = {.lex_state = 96}, + [1962] = {.lex_state = 96}, + [1963] = {.lex_state = 96}, + [1964] = {.lex_state = 96}, + [1965] = {.lex_state = 96}, + [1966] = {.lex_state = 96}, + [1967] = {.lex_state = 96}, + [1968] = {.lex_state = 96}, + [1969] = {.lex_state = 96}, + [1970] = {.lex_state = 96}, + [1971] = {.lex_state = 96}, + [1972] = {.lex_state = 96}, + [1973] = {.lex_state = 96}, + [1974] = {.lex_state = 96}, + [1975] = {.lex_state = 96}, + [1976] = {.lex_state = 96}, + [1977] = {.lex_state = 96}, + [1978] = {.lex_state = 96}, + [1979] = {.lex_state = 96}, + [1980] = {.lex_state = 96}, + [1981] = {.lex_state = 96}, + [1982] = {.lex_state = 96}, + [1983] = {.lex_state = 96}, + [1984] = {.lex_state = 96}, + [1985] = {.lex_state = 96}, + [1986] = {.lex_state = 96}, + [1987] = {.lex_state = 96}, + [1988] = {.lex_state = 96}, + [1989] = {.lex_state = 96}, + [1990] = {.lex_state = 96}, + [1991] = {.lex_state = 96}, + [1992] = {.lex_state = 96}, + [1993] = {.lex_state = 96}, + [1994] = {.lex_state = 96}, + [1995] = {.lex_state = 96}, + [1996] = {.lex_state = 96}, + [1997] = {.lex_state = 96}, + [1998] = {.lex_state = 96}, + [1999] = {.lex_state = 96}, + [2000] = {.lex_state = 96}, + [2001] = {.lex_state = 96}, + [2002] = {.lex_state = 96}, + [2003] = {.lex_state = 96}, + [2004] = {.lex_state = 96}, + [2005] = {.lex_state = 96}, + [2006] = {.lex_state = 8}, + [2007] = {.lex_state = 8}, + [2008] = {.lex_state = 8}, + [2009] = {.lex_state = 20}, + [2010] = {.lex_state = 20}, + [2011] = {.lex_state = 20}, + [2012] = {.lex_state = 8}, + [2013] = {.lex_state = 8}, + [2014] = {.lex_state = 20}, + [2015] = {.lex_state = 20}, + [2016] = {.lex_state = 20}, + [2017] = {.lex_state = 20}, + [2018] = {.lex_state = 20}, + [2019] = {.lex_state = 20}, + [2020] = {.lex_state = 20}, + [2021] = {.lex_state = 20}, + [2022] = {.lex_state = 20}, + [2023] = {.lex_state = 26}, + [2024] = {.lex_state = 20}, + [2025] = {.lex_state = 20}, + [2026] = {.lex_state = 20}, + [2027] = {.lex_state = 20}, + [2028] = {.lex_state = 29}, + [2029] = {.lex_state = 29}, + [2030] = {.lex_state = 29}, + [2031] = {.lex_state = 26}, + [2032] = {.lex_state = 9}, + [2033] = {.lex_state = 26}, + [2034] = {.lex_state = 20}, + [2035] = {.lex_state = 26}, + [2036] = {.lex_state = 8}, + [2037] = {.lex_state = 26}, + [2038] = {.lex_state = 26}, + [2039] = {.lex_state = 26}, + [2040] = {.lex_state = 26}, + [2041] = {.lex_state = 26}, + [2042] = {.lex_state = 26}, + [2043] = {.lex_state = 20}, + [2044] = {.lex_state = 26}, + [2045] = {.lex_state = 26}, + [2046] = {.lex_state = 26}, + [2047] = {.lex_state = 8}, + [2048] = {.lex_state = 8}, + [2049] = {.lex_state = 20}, + [2050] = {.lex_state = 20}, + [2051] = {.lex_state = 26}, + [2052] = {.lex_state = 26}, + [2053] = {.lex_state = 20}, + [2054] = {.lex_state = 20}, + [2055] = {.lex_state = 20}, + [2056] = {.lex_state = 20}, + [2057] = {.lex_state = 20}, + [2058] = {.lex_state = 20}, + [2059] = {.lex_state = 20}, + [2060] = {.lex_state = 20}, + [2061] = {.lex_state = 20}, + [2062] = {.lex_state = 20}, + [2063] = {.lex_state = 20}, + [2064] = {.lex_state = 20}, + [2065] = {.lex_state = 20}, + [2066] = {.lex_state = 20}, + [2067] = {.lex_state = 20}, + [2068] = {.lex_state = 20}, + [2069] = {.lex_state = 20}, + [2070] = {.lex_state = 20}, + [2071] = {.lex_state = 15}, + [2072] = {.lex_state = 9}, + [2073] = {.lex_state = 9}, + [2074] = {.lex_state = 9}, + [2075] = {.lex_state = 9}, + [2076] = {.lex_state = 9}, + [2077] = {.lex_state = 12}, + [2078] = {.lex_state = 12}, + [2079] = {.lex_state = 15}, + [2080] = {.lex_state = 20}, + [2081] = {.lex_state = 12}, + [2082] = {.lex_state = 9}, + [2083] = {.lex_state = 12}, + [2084] = {.lex_state = 15}, + [2085] = {.lex_state = 9}, + [2086] = {.lex_state = 15}, + [2087] = {.lex_state = 12}, + [2088] = {.lex_state = 15}, + [2089] = {.lex_state = 15}, + [2090] = {.lex_state = 0}, + [2091] = {.lex_state = 8}, + [2092] = {.lex_state = 12}, + [2093] = {.lex_state = 15}, + [2094] = {.lex_state = 9}, + [2095] = {.lex_state = 15}, + [2096] = {.lex_state = 15}, + [2097] = {.lex_state = 15}, + [2098] = {.lex_state = 15}, + [2099] = {.lex_state = 12}, + [2100] = {.lex_state = 15}, + [2101] = {.lex_state = 12}, + [2102] = {.lex_state = 15}, + [2103] = {.lex_state = 12}, + [2104] = {.lex_state = 12}, + [2105] = {.lex_state = 15}, + [2106] = {.lex_state = 12}, + [2107] = {.lex_state = 15}, + [2108] = {.lex_state = 12}, + [2109] = {.lex_state = 12}, + [2110] = {.lex_state = 15}, + [2111] = {.lex_state = 12}, + [2112] = {.lex_state = 9}, + [2113] = {.lex_state = 8}, + [2114] = {.lex_state = 9}, + [2115] = {.lex_state = 15}, + [2116] = {.lex_state = 12}, + [2117] = {.lex_state = 15}, + [2118] = {.lex_state = 9}, + [2119] = {.lex_state = 12}, + [2120] = {.lex_state = 12}, + [2121] = {.lex_state = 12}, + [2122] = {.lex_state = 9}, + [2123] = {.lex_state = 12}, + [2124] = {.lex_state = 15}, + [2125] = {.lex_state = 15}, + [2126] = {.lex_state = 12}, + [2127] = {.lex_state = 9}, + [2128] = {.lex_state = 9}, + [2129] = {.lex_state = 15}, + [2130] = {.lex_state = 15}, + [2131] = {.lex_state = 12}, + [2132] = {.lex_state = 15}, + [2133] = {.lex_state = 12}, + [2134] = {.lex_state = 12}, + [2135] = {.lex_state = 15}, + [2136] = {.lex_state = 9}, + [2137] = {.lex_state = 12}, + [2138] = {.lex_state = 9}, + [2139] = {.lex_state = 9}, + [2140] = {.lex_state = 8}, + [2141] = {.lex_state = 12}, + [2142] = {.lex_state = 12}, + [2143] = {.lex_state = 8}, + [2144] = {.lex_state = 15}, + [2145] = {.lex_state = 12}, + [2146] = {.lex_state = 15}, + [2147] = {.lex_state = 9}, + [2148] = {.lex_state = 12}, + [2149] = {.lex_state = 15}, + [2150] = {.lex_state = 15}, + [2151] = {.lex_state = 12}, + [2152] = {.lex_state = 12}, + [2153] = {.lex_state = 9}, + [2154] = {.lex_state = 9}, + [2155] = {.lex_state = 15}, + [2156] = {.lex_state = 12}, + [2157] = {.lex_state = 15}, + [2158] = {.lex_state = 15}, + [2159] = {.lex_state = 29}, + [2160] = {.lex_state = 96}, + [2161] = {.lex_state = 22}, + [2162] = {.lex_state = 1}, + [2163] = {.lex_state = 96}, + [2164] = {.lex_state = 17}, + [2165] = {.lex_state = 96}, + [2166] = {.lex_state = 96}, + [2167] = {.lex_state = 96}, + [2168] = {.lex_state = 96}, + [2169] = {.lex_state = 96}, + [2170] = {.lex_state = 96}, + [2171] = {.lex_state = 1}, + [2172] = {.lex_state = 1}, + [2173] = {.lex_state = 96}, + [2174] = {.lex_state = 22}, + [2175] = {.lex_state = 96}, + [2176] = {.lex_state = 96}, + [2177] = {.lex_state = 22}, + [2178] = {.lex_state = 1}, + [2179] = {.lex_state = 29}, + [2180] = {.lex_state = 1}, + [2181] = {.lex_state = 17}, + [2182] = {.lex_state = 96}, + [2183] = {.lex_state = 22}, + [2184] = {.lex_state = 1}, + [2185] = {.lex_state = 96}, + [2186] = {.lex_state = 96}, + [2187] = {.lex_state = 96}, + [2188] = {.lex_state = 17}, + [2189] = {.lex_state = 96}, + [2190] = {.lex_state = 96}, + [2191] = {.lex_state = 22}, + [2192] = {.lex_state = 1}, + [2193] = {.lex_state = 22}, + [2194] = {.lex_state = 29}, + [2195] = {.lex_state = 1}, + [2196] = {.lex_state = 96}, + [2197] = {.lex_state = 22}, + [2198] = {.lex_state = 1}, + [2199] = {.lex_state = 17}, + [2200] = {.lex_state = 1}, + [2201] = {.lex_state = 17}, + [2202] = {.lex_state = 96}, + [2203] = {.lex_state = 22}, + [2204] = {.lex_state = 1}, + [2205] = {.lex_state = 22}, + [2206] = {.lex_state = 96}, + [2207] = {.lex_state = 22}, + [2208] = {.lex_state = 96}, + [2209] = {.lex_state = 22}, + [2210] = {.lex_state = 17}, + [2211] = {.lex_state = 1}, + [2212] = {.lex_state = 1}, + [2213] = {.lex_state = 22}, + [2214] = {.lex_state = 1}, + [2215] = {.lex_state = 8}, + [2216] = {.lex_state = 22}, + [2217] = {.lex_state = 96}, + [2218] = {.lex_state = 22}, + [2219] = {.lex_state = 1}, + [2220] = {.lex_state = 96}, + [2221] = {.lex_state = 22}, + [2222] = {.lex_state = 17}, + [2223] = {.lex_state = 96}, + [2224] = {.lex_state = 22}, + [2225] = {.lex_state = 1}, + [2226] = {.lex_state = 1}, + [2227] = {.lex_state = 96}, + [2228] = {.lex_state = 22}, + [2229] = {.lex_state = 17}, + [2230] = {.lex_state = 8}, + [2231] = {.lex_state = 1}, + [2232] = {.lex_state = 22}, + [2233] = {.lex_state = 8}, + [2234] = {.lex_state = 96}, + [2235] = {.lex_state = 96}, + [2236] = {.lex_state = 17}, + [2237] = {.lex_state = 22}, + [2238] = {.lex_state = 1}, + [2239] = {.lex_state = 8}, + [2240] = {.lex_state = 96}, + [2241] = {.lex_state = 17}, + [2242] = {.lex_state = 22}, + [2243] = {.lex_state = 22}, + [2244] = {.lex_state = 1}, + [2245] = {.lex_state = 1}, + [2246] = {.lex_state = 1}, + [2247] = {.lex_state = 22}, + [2248] = {.lex_state = 96}, + [2249] = {.lex_state = 96}, + [2250] = {.lex_state = 17}, + [2251] = {.lex_state = 96}, + [2252] = {.lex_state = 22}, + [2253] = {.lex_state = 96}, + [2254] = {.lex_state = 1}, + [2255] = {.lex_state = 96}, + [2256] = {.lex_state = 22}, + [2257] = {.lex_state = 22}, + [2258] = {.lex_state = 1}, + [2259] = {.lex_state = 96}, + [2260] = {.lex_state = 96}, + [2261] = {.lex_state = 17}, + [2262] = {.lex_state = 96}, + [2263] = {.lex_state = 22}, + [2264] = {.lex_state = 1}, + [2265] = {.lex_state = 96}, + [2266] = {.lex_state = 1}, + [2267] = {.lex_state = 96}, + [2268] = {.lex_state = 96}, + [2269] = {.lex_state = 22}, + [2270] = {.lex_state = 22}, + [2271] = {.lex_state = 1}, + [2272] = {.lex_state = 1}, + [2273] = {.lex_state = 96}, + [2274] = {.lex_state = 96}, + [2275] = {.lex_state = 96}, + [2276] = {.lex_state = 96}, + [2277] = {.lex_state = 17}, + [2278] = {.lex_state = 1}, + [2279] = {.lex_state = 22}, + [2280] = {.lex_state = 96}, + [2281] = {.lex_state = 22}, + [2282] = {.lex_state = 1}, + [2283] = {.lex_state = 22}, + [2284] = {.lex_state = 1}, + [2285] = {.lex_state = 17}, + [2286] = {.lex_state = 17}, + [2287] = {.lex_state = 96}, + [2288] = {.lex_state = 17}, + [2289] = {.lex_state = 96}, + [2290] = {.lex_state = 96}, + [2291] = {.lex_state = 22}, + [2292] = {.lex_state = 22}, + [2293] = {.lex_state = 8}, + [2294] = {.lex_state = 17}, + [2295] = {.lex_state = 22}, + [2296] = {.lex_state = 8}, + [2297] = {.lex_state = 8}, + [2298] = {.lex_state = 26}, + [2299] = {.lex_state = 8}, + [2300] = {.lex_state = 8}, + [2301] = {.lex_state = 26}, + [2302] = {.lex_state = 8}, + [2303] = {.lex_state = 17}, + [2304] = {.lex_state = 17}, + [2305] = {.lex_state = 17}, + [2306] = {.lex_state = 17}, + [2307] = {.lex_state = 17}, + [2308] = {.lex_state = 8}, + [2309] = {.lex_state = 17}, + [2310] = {.lex_state = 8}, + [2311] = {.lex_state = 17}, + [2312] = {.lex_state = 17}, + [2313] = {.lex_state = 8}, + [2314] = {.lex_state = 17}, + [2315] = {.lex_state = 8}, + [2316] = {.lex_state = 8}, + [2317] = {.lex_state = 26}, + [2318] = {.lex_state = 17}, + [2319] = {.lex_state = 26}, + [2320] = {.lex_state = 26}, + [2321] = {.lex_state = 8}, + [2322] = {.lex_state = 8}, + [2323] = {.lex_state = 8}, + [2324] = {.lex_state = 17}, + [2325] = {.lex_state = 8}, + [2326] = {.lex_state = 8}, + [2327] = {.lex_state = 8}, + [2328] = {.lex_state = 8}, + [2329] = {.lex_state = 12}, + [2330] = {.lex_state = 8}, + [2331] = {.lex_state = 26}, + [2332] = {.lex_state = 26}, + [2333] = {.lex_state = 17}, + [2334] = {.lex_state = 8}, + [2335] = {.lex_state = 8}, + [2336] = {.lex_state = 17}, + [2337] = {.lex_state = 8}, + [2338] = {.lex_state = 8}, + [2339] = {.lex_state = 8}, + [2340] = {.lex_state = 26}, + [2341] = {.lex_state = 8}, + [2342] = {.lex_state = 8}, + [2343] = {.lex_state = 12}, + [2344] = {.lex_state = 8}, + [2345] = {.lex_state = 8}, + [2346] = {.lex_state = 8}, + [2347] = {.lex_state = 15}, + [2348] = {.lex_state = 8}, + [2349] = {.lex_state = 8}, + [2350] = {.lex_state = 15}, + [2351] = {.lex_state = 17}, + [2352] = {.lex_state = 26}, + [2353] = {.lex_state = 8}, + [2354] = {.lex_state = 15}, + [2355] = {.lex_state = 26}, + [2356] = {.lex_state = 15}, + [2357] = {.lex_state = 8}, + [2358] = {.lex_state = 8}, + [2359] = {.lex_state = 12}, + [2360] = {.lex_state = 12}, + [2361] = {.lex_state = 9}, + [2362] = {.lex_state = 9}, + [2363] = {.lex_state = 9}, + [2364] = {.lex_state = 2}, + [2365] = {.lex_state = 9}, + [2366] = {.lex_state = 9}, + [2367] = {.lex_state = 2}, + [2368] = {.lex_state = 96}, + [2369] = {.lex_state = 96}, + [2370] = {.lex_state = 9}, + [2371] = {.lex_state = 96}, + [2372] = {.lex_state = 2}, + [2373] = {.lex_state = 9}, + [2374] = {.lex_state = 2}, + [2375] = {.lex_state = 17}, + [2376] = {.lex_state = 2}, + [2377] = {.lex_state = 9}, + [2378] = {.lex_state = 9}, + [2379] = {.lex_state = 96}, + [2380] = {.lex_state = 17}, + [2381] = {.lex_state = 1}, + [2382] = {.lex_state = 2}, + [2383] = {.lex_state = 9}, + [2384] = {.lex_state = 9}, + [2385] = {.lex_state = 9}, + [2386] = {.lex_state = 9}, + [2387] = {.lex_state = 9}, + [2388] = {.lex_state = 2}, + [2389] = {.lex_state = 96}, + [2390] = {.lex_state = 96}, + [2391] = {.lex_state = 96}, + [2392] = {.lex_state = 2}, + [2393] = {.lex_state = 9}, + [2394] = {.lex_state = 2}, + [2395] = {.lex_state = 9}, + [2396] = {.lex_state = 2}, + [2397] = {.lex_state = 9}, + [2398] = {.lex_state = 9}, + [2399] = {.lex_state = 0}, + [2400] = {.lex_state = 9}, + [2401] = {.lex_state = 96}, + [2402] = {.lex_state = 96}, + [2403] = {.lex_state = 2}, + [2404] = {.lex_state = 2}, + [2405] = {.lex_state = 2}, + [2406] = {.lex_state = 9}, + [2407] = {.lex_state = 9}, + [2408] = {.lex_state = 9}, + [2409] = {.lex_state = 9}, + [2410] = {.lex_state = 9}, + [2411] = {.lex_state = 9}, + [2412] = {.lex_state = 2}, + [2413] = {.lex_state = 2}, + [2414] = {.lex_state = 9}, + [2415] = {.lex_state = 96}, + [2416] = {.lex_state = 96}, + [2417] = {.lex_state = 96}, + [2418] = {.lex_state = 9}, + [2419] = {.lex_state = 9}, + [2420] = {.lex_state = 1}, + [2421] = {.lex_state = 2}, + [2422] = {.lex_state = 2}, + [2423] = {.lex_state = 9}, + [2424] = {.lex_state = 2}, + [2425] = {.lex_state = 9}, + [2426] = {.lex_state = 2}, + [2427] = {.lex_state = 2}, + [2428] = {.lex_state = 9}, + [2429] = {.lex_state = 9}, + [2430] = {.lex_state = 2}, + [2431] = {.lex_state = 2}, + [2432] = {.lex_state = 2}, + [2433] = {.lex_state = 2}, + [2434] = {.lex_state = 9}, + [2435] = {.lex_state = 2}, + [2436] = {.lex_state = 2}, + [2437] = {.lex_state = 2}, + [2438] = {.lex_state = 9}, + [2439] = {.lex_state = 2}, + [2440] = {.lex_state = 17}, + [2441] = {.lex_state = 96}, + [2442] = {.lex_state = 1}, + [2443] = {.lex_state = 9}, + [2444] = {.lex_state = 9}, + [2445] = {.lex_state = 96}, + [2446] = {.lex_state = 96}, + [2447] = {.lex_state = 8}, + [2448] = {.lex_state = 9}, + [2449] = {.lex_state = 96}, + [2450] = {.lex_state = 9}, + [2451] = {.lex_state = 2}, + [2452] = {.lex_state = 2}, + [2453] = {.lex_state = 2}, + [2454] = {.lex_state = 8}, + [2455] = {.lex_state = 8}, + [2456] = {.lex_state = 0}, + [2457] = {.lex_state = 25}, + [2458] = {.lex_state = 8}, + [2459] = {.lex_state = 0}, + [2460] = {.lex_state = 8}, + [2461] = {.lex_state = 0}, + [2462] = {.lex_state = 8}, + [2463] = {.lex_state = 8}, + [2464] = {.lex_state = 8}, + [2465] = {.lex_state = 8}, + [2466] = {.lex_state = 0}, + [2467] = {.lex_state = 0}, + [2468] = {.lex_state = 0}, + [2469] = {.lex_state = 0}, + [2470] = {.lex_state = 8}, + [2471] = {.lex_state = 8}, + [2472] = {.lex_state = 8}, + [2473] = {.lex_state = 8}, + [2474] = {.lex_state = 8}, + [2475] = {.lex_state = 8}, + [2476] = {.lex_state = 8}, + [2477] = {.lex_state = 0}, + [2478] = {.lex_state = 19}, + [2479] = {.lex_state = 0}, + [2480] = {.lex_state = 0}, + [2481] = {.lex_state = 26}, + [2482] = {.lex_state = 8}, + [2483] = {.lex_state = 0}, + [2484] = {.lex_state = 0}, + [2485] = {.lex_state = 8}, + [2486] = {.lex_state = 8}, + [2487] = {.lex_state = 2}, + [2488] = {.lex_state = 8}, + [2489] = {.lex_state = 8}, + [2490] = {.lex_state = 8}, + [2491] = {.lex_state = 8}, + [2492] = {.lex_state = 8}, + [2493] = {.lex_state = 8}, + [2494] = {.lex_state = 0}, + [2495] = {.lex_state = 0}, + [2496] = {.lex_state = 8}, + [2497] = {.lex_state = 0}, + [2498] = {.lex_state = 0}, + [2499] = {.lex_state = 0}, + [2500] = {.lex_state = 0}, + [2501] = {.lex_state = 0}, + [2502] = {.lex_state = 0}, + [2503] = {.lex_state = 0}, + [2504] = {.lex_state = 0}, + [2505] = {.lex_state = 0}, + [2506] = {.lex_state = 0}, + [2507] = {.lex_state = 0}, + [2508] = {.lex_state = 0}, + [2509] = {.lex_state = 0}, + [2510] = {.lex_state = 19}, + [2511] = {.lex_state = 8}, + [2512] = {.lex_state = 0}, + [2513] = {.lex_state = 0}, + [2514] = {.lex_state = 0}, + [2515] = {.lex_state = 0}, + [2516] = {.lex_state = 0}, + [2517] = {.lex_state = 0}, + [2518] = {.lex_state = 0}, + [2519] = {.lex_state = 0}, + [2520] = {.lex_state = 0}, + [2521] = {.lex_state = 0}, + [2522] = {.lex_state = 0}, + [2523] = {.lex_state = 0}, + [2524] = {.lex_state = 19}, + [2525] = {.lex_state = 0}, + [2526] = {.lex_state = 26}, + [2527] = {.lex_state = 8}, + [2528] = {.lex_state = 0}, + [2529] = {.lex_state = 0}, + [2530] = {.lex_state = 0}, + [2531] = {.lex_state = 0}, + [2532] = {.lex_state = 0}, + [2533] = {.lex_state = 0}, + [2534] = {.lex_state = 0}, + [2535] = {.lex_state = 0}, + [2536] = {.lex_state = 0}, + [2537] = {.lex_state = 0}, + [2538] = {.lex_state = 0}, + [2539] = {.lex_state = 8}, + [2540] = {.lex_state = 0}, + [2541] = {.lex_state = 0}, + [2542] = {.lex_state = 0}, + [2543] = {.lex_state = 0}, + [2544] = {.lex_state = 0}, + [2545] = {.lex_state = 0}, + [2546] = {.lex_state = 0}, + [2547] = {.lex_state = 0}, + [2548] = {.lex_state = 0}, + [2549] = {.lex_state = 0}, + [2550] = {.lex_state = 0}, + [2551] = {.lex_state = 0}, + [2552] = {.lex_state = 0}, + [2553] = {.lex_state = 0}, + [2554] = {.lex_state = 0}, + [2555] = {.lex_state = 0}, + [2556] = {.lex_state = 0}, + [2557] = {.lex_state = 0}, + [2558] = {.lex_state = 0}, + [2559] = {.lex_state = 0}, + [2560] = {.lex_state = 19}, + [2561] = {.lex_state = 0}, + [2562] = {.lex_state = 0}, + [2563] = {.lex_state = 0}, + [2564] = {.lex_state = 96}, + [2565] = {.lex_state = 0}, + [2566] = {.lex_state = 26}, + [2567] = {.lex_state = 8}, + [2568] = {.lex_state = 0}, + [2569] = {.lex_state = 19}, + [2570] = {.lex_state = 0}, + [2571] = {.lex_state = 0}, + [2572] = {.lex_state = 0}, + [2573] = {.lex_state = 0}, + [2574] = {.lex_state = 0}, + [2575] = {.lex_state = 0}, + [2576] = {.lex_state = 0}, + [2577] = {.lex_state = 0}, + [2578] = {.lex_state = 0}, + [2579] = {.lex_state = 0}, + [2580] = {.lex_state = 0}, + [2581] = {.lex_state = 0}, + [2582] = {.lex_state = 0}, + [2583] = {.lex_state = 0}, + [2584] = {.lex_state = 0}, + [2585] = {.lex_state = 0}, + [2586] = {.lex_state = 0}, + [2587] = {.lex_state = 0}, + [2588] = {.lex_state = 0}, + [2589] = {.lex_state = 0}, + [2590] = {.lex_state = 0}, + [2591] = {.lex_state = 0}, + [2592] = {.lex_state = 0}, + [2593] = {.lex_state = 0}, + [2594] = {.lex_state = 0}, + [2595] = {.lex_state = 0}, + [2596] = {.lex_state = 0}, + [2597] = {.lex_state = 0}, + [2598] = {.lex_state = 0}, + [2599] = {.lex_state = 0}, + [2600] = {.lex_state = 0}, + [2601] = {.lex_state = 0}, + [2602] = {.lex_state = 8}, + [2603] = {.lex_state = 0}, + [2604] = {.lex_state = 0}, + [2605] = {.lex_state = 96}, + [2606] = {.lex_state = 0}, + [2607] = {.lex_state = 0}, + [2608] = {.lex_state = 0}, + [2609] = {.lex_state = 0}, + [2610] = {.lex_state = 0}, + [2611] = {.lex_state = 0}, + [2612] = {.lex_state = 8}, + [2613] = {.lex_state = 0}, + [2614] = {.lex_state = 8}, + [2615] = {.lex_state = 0}, + [2616] = {.lex_state = 0}, + [2617] = {.lex_state = 0}, + [2618] = {.lex_state = 0}, + [2619] = {.lex_state = 0}, + [2620] = {.lex_state = 0}, + [2621] = {.lex_state = 0}, + [2622] = {.lex_state = 0}, + [2623] = {.lex_state = 0}, + [2624] = {.lex_state = 8}, + [2625] = {.lex_state = 8}, + [2626] = {.lex_state = 0}, + [2627] = {.lex_state = 0}, + [2628] = {.lex_state = 0}, + [2629] = {.lex_state = 8}, + [2630] = {.lex_state = 0}, + [2631] = {.lex_state = 0}, + [2632] = {.lex_state = 0}, + [2633] = {.lex_state = 0}, + [2634] = {.lex_state = 0}, + [2635] = {.lex_state = 0}, + [2636] = {.lex_state = 0}, + [2637] = {.lex_state = 8}, + [2638] = {.lex_state = 0}, + [2639] = {.lex_state = 8}, + [2640] = {.lex_state = 0}, + [2641] = {.lex_state = 0}, + [2642] = {.lex_state = 0}, + [2643] = {.lex_state = 0}, + [2644] = {.lex_state = 0}, + [2645] = {.lex_state = 0}, + [2646] = {.lex_state = 0}, + [2647] = {.lex_state = 0}, + [2648] = {.lex_state = 8}, + [2649] = {.lex_state = 8}, + [2650] = {.lex_state = 0}, + [2651] = {.lex_state = 8}, + [2652] = {.lex_state = 0}, + [2653] = {.lex_state = 8}, + [2654] = {.lex_state = 0}, + [2655] = {.lex_state = 8}, + [2656] = {.lex_state = 0}, + [2657] = {.lex_state = 0}, + [2658] = {.lex_state = 8}, + [2659] = {.lex_state = 8}, + [2660] = {.lex_state = 8}, + [2661] = {.lex_state = 0}, + [2662] = {.lex_state = 0}, + [2663] = {.lex_state = 0}, + [2664] = {.lex_state = 0}, + [2665] = {.lex_state = 8}, + [2666] = {.lex_state = 8}, + [2667] = {.lex_state = 0}, + [2668] = {.lex_state = 8}, + [2669] = {.lex_state = 8}, + [2670] = {.lex_state = 8}, + [2671] = {.lex_state = 0}, + [2672] = {.lex_state = 8}, + [2673] = {.lex_state = 0}, + [2674] = {.lex_state = 0}, + [2675] = {.lex_state = 8}, + [2676] = {.lex_state = 8}, + [2677] = {.lex_state = 8}, + [2678] = {.lex_state = 8}, + [2679] = {.lex_state = 0}, + [2680] = {.lex_state = 8}, + [2681] = {.lex_state = 8}, + [2682] = {.lex_state = 8}, + [2683] = {.lex_state = 0}, + [2684] = {.lex_state = 8}, + [2685] = {.lex_state = 8}, + [2686] = {.lex_state = 0}, + [2687] = {.lex_state = 8}, + [2688] = {.lex_state = 8}, + [2689] = {.lex_state = 0}, + [2690] = {.lex_state = 8}, + [2691] = {.lex_state = 8}, + [2692] = {.lex_state = 8}, + [2693] = {.lex_state = 8}, + [2694] = {.lex_state = 0}, + [2695] = {.lex_state = 8}, + [2696] = {.lex_state = 0}, + [2697] = {.lex_state = 8}, + [2698] = {.lex_state = 8}, + [2699] = {.lex_state = 8}, + [2700] = {.lex_state = 8}, + [2701] = {.lex_state = 8}, + [2702] = {.lex_state = 8}, + [2703] = {.lex_state = 8}, + [2704] = {.lex_state = 8}, + [2705] = {.lex_state = 0}, + [2706] = {.lex_state = 8}, + [2707] = {.lex_state = 8}, + [2708] = {.lex_state = 8}, + [2709] = {.lex_state = 8}, + [2710] = {.lex_state = 8}, + [2711] = {.lex_state = 8}, + [2712] = {.lex_state = 0}, + [2713] = {.lex_state = 8}, + [2714] = {.lex_state = 8}, + [2715] = {.lex_state = 8}, + [2716] = {.lex_state = 8}, + [2717] = {.lex_state = 0}, + [2718] = {.lex_state = 45}, + [2719] = {.lex_state = 8}, + [2720] = {.lex_state = 0}, + [2721] = {.lex_state = 8}, + [2722] = {.lex_state = 0}, + [2723] = {.lex_state = 8}, + [2724] = {.lex_state = 8}, + [2725] = {.lex_state = 0}, + [2726] = {.lex_state = 8}, + [2727] = {.lex_state = 8}, + [2728] = {.lex_state = 8}, + [2729] = {.lex_state = 0}, + [2730] = {.lex_state = 0}, + [2731] = {.lex_state = 8}, + [2732] = {.lex_state = 8}, + [2733] = {.lex_state = 0}, + [2734] = {.lex_state = 8}, + [2735] = {.lex_state = 0}, + [2736] = {.lex_state = 8}, + [2737] = {.lex_state = 0}, + [2738] = {.lex_state = 8}, + [2739] = {.lex_state = 0}, + [2740] = {.lex_state = 8}, + [2741] = {.lex_state = 0}, + [2742] = {.lex_state = 0}, + [2743] = {.lex_state = 0}, + [2744] = {.lex_state = 8}, + [2745] = {.lex_state = 0}, + [2746] = {.lex_state = 0}, + [2747] = {.lex_state = 0}, + [2748] = {.lex_state = 0}, + [2749] = {.lex_state = 0}, + [2750] = {.lex_state = 0}, + [2751] = {.lex_state = 8}, + [2752] = {.lex_state = 8}, + [2753] = {.lex_state = 8}, + [2754] = {.lex_state = 0}, + [2755] = {.lex_state = 0}, + [2756] = {.lex_state = 8}, + [2757] = {.lex_state = 8}, + [2758] = {.lex_state = 0}, + [2759] = {.lex_state = 0}, + [2760] = {.lex_state = 8}, + [2761] = {.lex_state = 8}, + [2762] = {.lex_state = 0}, + [2763] = {.lex_state = 8}, + [2764] = {.lex_state = 0}, + [2765] = {.lex_state = 8}, + [2766] = {.lex_state = 3}, + [2767] = {.lex_state = 8}, + [2768] = {.lex_state = 8}, + [2769] = {.lex_state = 8}, + [2770] = {.lex_state = 8}, + [2771] = {.lex_state = 0}, + [2772] = {.lex_state = 8}, + [2773] = {.lex_state = 0}, + [2774] = {.lex_state = 8}, + [2775] = {.lex_state = 0}, + [2776] = {.lex_state = 8}, + [2777] = {.lex_state = 8}, + [2778] = {.lex_state = 8}, + [2779] = {.lex_state = 0}, + [2780] = {.lex_state = 8}, + [2781] = {.lex_state = 8}, + [2782] = {.lex_state = 8}, + [2783] = {.lex_state = 0}, + [2784] = {.lex_state = 8}, + [2785] = {.lex_state = 0}, + [2786] = {.lex_state = 0}, + [2787] = {.lex_state = 0}, + [2788] = {.lex_state = 8}, + [2789] = {.lex_state = 8}, + [2790] = {.lex_state = 45}, + [2791] = {.lex_state = 8}, + [2792] = {.lex_state = 0}, + [2793] = {.lex_state = 102}, + [2794] = {.lex_state = 32}, + [2795] = {.lex_state = 0}, + [2796] = {.lex_state = 34}, + [2797] = {.lex_state = 0}, + [2798] = {(TSStateId)(-1)}, + [2799] = {(TSStateId)(-1)}, + [2800] = {(TSStateId)(-1)}, + [2801] = {(TSStateId)(-1)}, +}; + +static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { + [0] = { + [sym_comment] = STATE(0), + [sym_groovy_doc] = STATE(0), + [ts_builtin_sym_end] = ACTIONS(1), + [sym_identifier] = ACTIONS(1), + [anon_sym_POUND_BANG] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_SEMI] = ACTIONS(1), + [anon_sym_DOT_AMP] = ACTIONS(1), + [anon_sym_DOT_AT] = ACTIONS(1), + [anon_sym_QMARK_DOT] = ACTIONS(1), + [anon_sym_STAR_DOT] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), + [anon_sym_STAR_COLON] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [anon_sym_import] = ACTIONS(1), + [anon_sym_DOT_STAR] = ACTIONS(1), + [anon_sym_as] = ACTIONS(1), + [anon_sym_package] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), + [anon_sym_assert] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1), + [anon_sym_STAR_EQ] = ACTIONS(1), + [anon_sym_SLASH_EQ] = ACTIONS(1), + [anon_sym_PERCENT_EQ] = ACTIONS(1), + [anon_sym_PLUS_EQ] = ACTIONS(1), + [anon_sym_DASH_EQ] = ACTIONS(1), + [anon_sym_LT_LT_EQ] = ACTIONS(1), + [anon_sym_GT_GT_EQ] = ACTIONS(1), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1), + [anon_sym_AMP_EQ] = ACTIONS(1), + [anon_sym_CARET_EQ] = ACTIONS(1), + [anon_sym_PIPE_EQ] = ACTIONS(1), + [anon_sym_QMARK_EQ] = ACTIONS(1), + [anon_sym_PLUS_PLUS] = ACTIONS(1), + [anon_sym_DASH_DASH] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_PLUS] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [anon_sym_LT_LT] = ACTIONS(1), + [anon_sym_GT_GT] = ACTIONS(1), + [anon_sym_GT_GT_GT] = ACTIONS(1), + [anon_sym_DOT_DOT] = ACTIONS(1), + [anon_sym_DOT_DOT_LT] = ACTIONS(1), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(1), + [anon_sym_LT_DOT_DOT] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), + [anon_sym_LT_EQ] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), + [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_in] = ACTIONS(1), + [anon_sym_BANGin] = ACTIONS(1), + [anon_sym_instanceof] = ACTIONS(1), + [anon_sym_BANGinstanceof] = ACTIONS(1), + [anon_sym_EQ_EQ] = ACTIONS(1), + [anon_sym_BANG_EQ] = ACTIONS(1), + [anon_sym_LT_EQ_GT] = ACTIONS(1), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1), + [anon_sym_EQ_TILDE] = ACTIONS(1), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), + [anon_sym_CARET] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), + [anon_sym_AMP_AMP] = ACTIONS(1), + [anon_sym_PIPE_PIPE] = ACTIONS(1), + [anon_sym_QMARK_COLON] = ACTIONS(1), + [anon_sym_STAR_STAR] = ACTIONS(1), + [anon_sym_true] = ACTIONS(1), + [anon_sym_false] = ACTIONS(1), + [anon_sym_ATinterface] = ACTIONS(1), + [anon_sym_interface] = ACTIONS(1), + [anon_sym_class] = ACTIONS(1), + [anon_sym_extends] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), + [anon_sym_DASH_GT] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1), + [anon_sym_this] = ACTIONS(1), + [anon_sym_null] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_else] = ACTIONS(1), + [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), + [aux_sym_number_literal_token1] = ACTIONS(1), + [aux_sym_number_literal_token2] = ACTIONS(1), + [aux_sym_number_literal_token3] = ACTIONS(1), + [aux_sym_number_literal_token4] = ACTIONS(1), + [aux_sym_number_literal_token5] = ACTIONS(1), + [anon_sym_pipeline] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_SQUOTE] = ACTIONS(1), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1), + [anon_sym_BSLASH_SLASH] = ACTIONS(1), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1), + [sym_escape_sequence] = ACTIONS(1), + [anon_sym_DOLLAR] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_default] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1), + [anon_sym_try] = ACTIONS(1), + [anon_sym_catch] = ACTIONS(1), + [anon_sym_finally] = ACTIONS(1), + [anon_sym_int] = ACTIONS(1), + [anon_sym_boolean] = ACTIONS(1), + [anon_sym_char] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_float] = ACTIONS(1), + [anon_sym_double] = ACTIONS(1), + [anon_sym_void] = ACTIONS(1), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1), + [anon_sym_public] = ACTIONS(1), + [anon_sym_protected] = ACTIONS(1), + [anon_sym_private] = ACTIONS(1), + [anon_sym_static] = ACTIONS(1), + [anon_sym_final] = ACTIONS(1), + [anon_sym_synchronized] = ACTIONS(1), + [anon_sym_TILDE] = ACTIONS(1), + [anon_sym_BANG] = ACTIONS(1), + [anon_sym_new] = ACTIONS(1), + }, + [1] = { + [sym_source_file] = STATE(2773), + [sym_shebang] = STATE(501), + [sym__statement] = STATE(833), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1258), + [sym_annotation] = STATE(1766), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(790), + [sym_comment] = STATE(1), + [sym_groovy_doc] = STATE(1), + [sym_declaration] = STATE(790), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(519), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(984), + [sym_pipeline] = STATE(2771), + [sym_return] = STATE(790), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(790), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2383), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1784), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(509), + [aux_sym_class_definition_repeat1] = STATE(1781), + [ts_builtin_sym_end] = ACTIONS(9), + [sym_identifier] = ACTIONS(11), + [anon_sym_POUND_BANG] = ACTIONS(13), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(35), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_for] = ACTIONS(41), + [anon_sym_if] = ACTIONS(43), + [anon_sym_pipeline] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(61), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [2] = { + [sym_comment] = STATE(2), + [sym_groovy_doc] = STATE(2), + [sym_identifier] = ACTIONS(69), + [anon_sym_break] = ACTIONS(69), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_SEMI] = ACTIONS(71), + [anon_sym_DOT_AMP] = ACTIONS(71), + [anon_sym_DOT_AT] = ACTIONS(71), + [anon_sym_QMARK_DOT] = ACTIONS(71), + [anon_sym_STAR_DOT] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(69), + [anon_sym_STAR_COLON] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(69), + [anon_sym_import] = ACTIONS(69), + [anon_sym_as] = ACTIONS(69), + [anon_sym_package] = ACTIONS(69), + [anon_sym_AT] = ACTIONS(69), + [anon_sym_assert] = ACTIONS(69), + [anon_sym_EQ] = ACTIONS(69), + [anon_sym_STAR_STAR_EQ] = ACTIONS(71), + [anon_sym_STAR_EQ] = ACTIONS(71), + [anon_sym_SLASH_EQ] = ACTIONS(71), + [anon_sym_PERCENT_EQ] = ACTIONS(71), + [anon_sym_PLUS_EQ] = ACTIONS(71), + [anon_sym_DASH_EQ] = ACTIONS(71), + [anon_sym_LT_LT_EQ] = ACTIONS(71), + [anon_sym_GT_GT_EQ] = ACTIONS(71), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(71), + [anon_sym_AMP_EQ] = ACTIONS(71), + [anon_sym_CARET_EQ] = ACTIONS(71), + [anon_sym_PIPE_EQ] = ACTIONS(71), + [anon_sym_QMARK_EQ] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_LT_LT] = ACTIONS(69), + [anon_sym_GT_GT] = ACTIONS(69), + [anon_sym_GT_GT_GT] = ACTIONS(69), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_DOT_DOT_LT] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(71), + [anon_sym_LT_DOT_DOT] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(69), + [anon_sym_LT_EQ] = ACTIONS(69), + [anon_sym_GT] = ACTIONS(69), + [anon_sym_GT_EQ] = ACTIONS(71), + [anon_sym_in] = ACTIONS(69), + [anon_sym_BANGin] = ACTIONS(69), + [anon_sym_instanceof] = ACTIONS(69), + [anon_sym_BANGinstanceof] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(69), + [anon_sym_BANG_EQ] = ACTIONS(69), + [anon_sym_LT_EQ_GT] = ACTIONS(71), + [anon_sym_EQ_EQ_EQ] = ACTIONS(71), + [anon_sym_BANG_EQ_EQ] = ACTIONS(71), + [anon_sym_EQ_TILDE] = ACTIONS(71), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(69), + [anon_sym_CARET] = ACTIONS(69), + [anon_sym_PIPE] = ACTIONS(69), + [anon_sym_AMP_AMP] = ACTIONS(71), + [anon_sym_PIPE_PIPE] = ACTIONS(71), + [anon_sym_QMARK_COLON] = ACTIONS(71), + [anon_sym_STAR_STAR] = ACTIONS(69), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(69), + [anon_sym_class] = ACTIONS(69), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(71), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(69), + [anon_sym_this] = ACTIONS(69), + [anon_sym_null] = ACTIONS(69), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_do] = ACTIONS(69), + [anon_sym_while] = ACTIONS(69), + [anon_sym_for] = ACTIONS(69), + [anon_sym_if] = ACTIONS(69), + [anon_sym_LBRACK] = ACTIONS(69), + [aux_sym_number_literal_token1] = ACTIONS(69), + [aux_sym_number_literal_token2] = ACTIONS(71), + [aux_sym_number_literal_token3] = ACTIONS(71), + [aux_sym_number_literal_token4] = ACTIONS(69), + [aux_sym_number_literal_token5] = ACTIONS(71), + [anon_sym_return] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_SLASH] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_QMARK] = ACTIONS(69), + [anon_sym_try] = ACTIONS(69), + [anon_sym_int] = ACTIONS(69), + [anon_sym_boolean] = ACTIONS(69), + [anon_sym_char] = ACTIONS(69), + [anon_sym_short] = ACTIONS(69), + [anon_sym_long] = ACTIONS(69), + [anon_sym_float] = ACTIONS(69), + [anon_sym_double] = ACTIONS(69), + [anon_sym_void] = ACTIONS(69), + [anon_sym_LBRACK_RBRACK] = ACTIONS(71), + [anon_sym_public] = ACTIONS(69), + [anon_sym_protected] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_final] = ACTIONS(69), + [anon_sym_synchronized] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_new] = ACTIONS(69), + }, + [3] = { + [sym_comment] = STATE(3), + [sym_groovy_doc] = STATE(3), + [sym_identifier] = ACTIONS(73), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_DOT_AMP] = ACTIONS(75), + [anon_sym_DOT_AT] = ACTIONS(75), + [anon_sym_QMARK_DOT] = ACTIONS(75), + [anon_sym_STAR_DOT] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(73), + [anon_sym_STAR_COLON] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(73), + [anon_sym_import] = ACTIONS(73), + [anon_sym_as] = ACTIONS(73), + [anon_sym_package] = ACTIONS(73), + [anon_sym_AT] = ACTIONS(73), + [anon_sym_assert] = ACTIONS(73), + [anon_sym_EQ] = ACTIONS(73), + [anon_sym_STAR_STAR_EQ] = ACTIONS(75), + [anon_sym_STAR_EQ] = ACTIONS(75), + [anon_sym_SLASH_EQ] = ACTIONS(75), + [anon_sym_PERCENT_EQ] = ACTIONS(75), + [anon_sym_PLUS_EQ] = ACTIONS(75), + [anon_sym_DASH_EQ] = ACTIONS(75), + [anon_sym_LT_LT_EQ] = ACTIONS(75), + [anon_sym_GT_GT_EQ] = ACTIONS(75), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(75), + [anon_sym_AMP_EQ] = ACTIONS(75), + [anon_sym_CARET_EQ] = ACTIONS(75), + [anon_sym_PIPE_EQ] = ACTIONS(75), + [anon_sym_QMARK_EQ] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_LT_LT] = ACTIONS(73), + [anon_sym_GT_GT] = ACTIONS(73), + [anon_sym_GT_GT_GT] = ACTIONS(73), + [anon_sym_DOT_DOT] = ACTIONS(73), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(75), + [anon_sym_LT_DOT_DOT] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(73), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(73), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_in] = ACTIONS(73), + [anon_sym_BANGin] = ACTIONS(73), + [anon_sym_instanceof] = ACTIONS(73), + [anon_sym_BANGinstanceof] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT_EQ_GT] = ACTIONS(75), + [anon_sym_EQ_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ_EQ] = ACTIONS(75), + [anon_sym_EQ_TILDE] = ACTIONS(75), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(73), + [anon_sym_CARET] = ACTIONS(73), + [anon_sym_PIPE] = ACTIONS(73), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_QMARK_COLON] = ACTIONS(75), + [anon_sym_STAR_STAR] = ACTIONS(73), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ATinterface] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_class] = ACTIONS(73), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_RBRACE] = ACTIONS(75), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(73), + [anon_sym_this] = ACTIONS(73), + [anon_sym_null] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_do] = ACTIONS(73), + [anon_sym_while] = ACTIONS(73), + [anon_sym_for] = ACTIONS(73), + [anon_sym_if] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(73), + [aux_sym_number_literal_token1] = ACTIONS(73), + [aux_sym_number_literal_token2] = ACTIONS(75), + [aux_sym_number_literal_token3] = ACTIONS(75), + [aux_sym_number_literal_token4] = ACTIONS(73), + [aux_sym_number_literal_token5] = ACTIONS(75), + [anon_sym_return] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(75), + [anon_sym_DOLLAR_SLASH] = ACTIONS(75), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_QMARK] = ACTIONS(73), + [anon_sym_try] = ACTIONS(73), + [anon_sym_int] = ACTIONS(73), + [anon_sym_boolean] = ACTIONS(73), + [anon_sym_char] = ACTIONS(73), + [anon_sym_short] = ACTIONS(73), + [anon_sym_long] = ACTIONS(73), + [anon_sym_float] = ACTIONS(73), + [anon_sym_double] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_LBRACK_RBRACK] = ACTIONS(75), + [anon_sym_public] = ACTIONS(73), + [anon_sym_protected] = ACTIONS(73), + [anon_sym_private] = ACTIONS(73), + [anon_sym_static] = ACTIONS(73), + [anon_sym_final] = ACTIONS(73), + [anon_sym_synchronized] = ACTIONS(73), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(73), + [anon_sym_new] = ACTIONS(73), + }, + [4] = { + [sym_comment] = STATE(4), + [sym_groovy_doc] = STATE(4), + [sym_identifier] = ACTIONS(77), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_DOT_AMP] = ACTIONS(79), + [anon_sym_DOT_AT] = ACTIONS(79), + [anon_sym_QMARK_DOT] = ACTIONS(79), + [anon_sym_STAR_DOT] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(77), + [anon_sym_STAR_COLON] = ACTIONS(79), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_import] = ACTIONS(77), + [anon_sym_as] = ACTIONS(77), + [anon_sym_package] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_assert] = ACTIONS(77), + [anon_sym_EQ] = ACTIONS(77), + [anon_sym_STAR_STAR_EQ] = ACTIONS(79), + [anon_sym_STAR_EQ] = ACTIONS(79), + [anon_sym_SLASH_EQ] = ACTIONS(79), + [anon_sym_PERCENT_EQ] = ACTIONS(79), + [anon_sym_PLUS_EQ] = ACTIONS(79), + [anon_sym_DASH_EQ] = ACTIONS(79), + [anon_sym_LT_LT_EQ] = ACTIONS(79), + [anon_sym_GT_GT_EQ] = ACTIONS(79), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(79), + [anon_sym_AMP_EQ] = ACTIONS(79), + [anon_sym_CARET_EQ] = ACTIONS(79), + [anon_sym_PIPE_EQ] = ACTIONS(79), + [anon_sym_QMARK_EQ] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_LT_LT] = ACTIONS(77), + [anon_sym_GT_GT] = ACTIONS(77), + [anon_sym_GT_GT_GT] = ACTIONS(77), + [anon_sym_DOT_DOT] = ACTIONS(77), + [anon_sym_DOT_DOT_LT] = ACTIONS(79), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(79), + [anon_sym_LT_DOT_DOT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(79), + [anon_sym_in] = ACTIONS(77), + [anon_sym_BANGin] = ACTIONS(77), + [anon_sym_instanceof] = ACTIONS(77), + [anon_sym_BANGinstanceof] = ACTIONS(79), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_LT_EQ_GT] = ACTIONS(79), + [anon_sym_EQ_EQ_EQ] = ACTIONS(79), + [anon_sym_BANG_EQ_EQ] = ACTIONS(79), + [anon_sym_EQ_TILDE] = ACTIONS(79), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_CARET] = ACTIONS(77), + [anon_sym_PIPE] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(79), + [anon_sym_PIPE_PIPE] = ACTIONS(79), + [anon_sym_QMARK_COLON] = ACTIONS(79), + [anon_sym_STAR_STAR] = ACTIONS(77), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_class] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_RBRACE] = ACTIONS(79), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(77), + [anon_sym_this] = ACTIONS(77), + [anon_sym_null] = ACTIONS(77), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_do] = ACTIONS(77), + [anon_sym_while] = ACTIONS(77), + [anon_sym_for] = ACTIONS(77), + [anon_sym_if] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym_number_literal_token1] = ACTIONS(77), + [aux_sym_number_literal_token2] = ACTIONS(79), + [aux_sym_number_literal_token3] = ACTIONS(79), + [aux_sym_number_literal_token4] = ACTIONS(77), + [aux_sym_number_literal_token5] = ACTIONS(79), + [anon_sym_return] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(77), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR_SLASH] = ACTIONS(79), + [anon_sym_switch] = ACTIONS(77), + [anon_sym_QMARK] = ACTIONS(77), + [anon_sym_try] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_boolean] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [anon_sym_void] = ACTIONS(77), + [anon_sym_LBRACK_RBRACK] = ACTIONS(79), + [anon_sym_public] = ACTIONS(77), + [anon_sym_protected] = ACTIONS(77), + [anon_sym_private] = ACTIONS(77), + [anon_sym_static] = ACTIONS(77), + [anon_sym_final] = ACTIONS(77), + [anon_sym_synchronized] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_new] = ACTIONS(77), + }, + [5] = { + [sym_comment] = STATE(5), + [sym_groovy_doc] = STATE(5), + [sym_identifier] = ACTIONS(81), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_DOT_AMP] = ACTIONS(83), + [anon_sym_DOT_AT] = ACTIONS(83), + [anon_sym_QMARK_DOT] = ACTIONS(83), + [anon_sym_STAR_DOT] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_STAR_COLON] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_import] = ACTIONS(81), + [anon_sym_as] = ACTIONS(81), + [anon_sym_package] = ACTIONS(81), + [anon_sym_AT] = ACTIONS(81), + [anon_sym_assert] = ACTIONS(81), + [anon_sym_EQ] = ACTIONS(81), + [anon_sym_STAR_STAR_EQ] = ACTIONS(83), + [anon_sym_STAR_EQ] = ACTIONS(83), + [anon_sym_SLASH_EQ] = ACTIONS(83), + [anon_sym_PERCENT_EQ] = ACTIONS(83), + [anon_sym_PLUS_EQ] = ACTIONS(83), + [anon_sym_DASH_EQ] = ACTIONS(83), + [anon_sym_LT_LT_EQ] = ACTIONS(83), + [anon_sym_GT_GT_EQ] = ACTIONS(83), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(83), + [anon_sym_AMP_EQ] = ACTIONS(83), + [anon_sym_CARET_EQ] = ACTIONS(83), + [anon_sym_PIPE_EQ] = ACTIONS(83), + [anon_sym_QMARK_EQ] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(81), + [anon_sym_GT_GT] = ACTIONS(81), + [anon_sym_GT_GT_GT] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DOT_DOT_LT] = ACTIONS(83), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(83), + [anon_sym_LT_DOT_DOT] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_GT_EQ] = ACTIONS(83), + [anon_sym_in] = ACTIONS(81), + [anon_sym_BANGin] = ACTIONS(81), + [anon_sym_instanceof] = ACTIONS(81), + [anon_sym_BANGinstanceof] = ACTIONS(83), + [anon_sym_EQ_EQ] = ACTIONS(81), + [anon_sym_BANG_EQ] = ACTIONS(81), + [anon_sym_LT_EQ_GT] = ACTIONS(83), + [anon_sym_EQ_EQ_EQ] = ACTIONS(83), + [anon_sym_BANG_EQ_EQ] = ACTIONS(83), + [anon_sym_EQ_TILDE] = ACTIONS(83), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_PIPE] = ACTIONS(81), + [anon_sym_AMP_AMP] = ACTIONS(83), + [anon_sym_PIPE_PIPE] = ACTIONS(83), + [anon_sym_QMARK_COLON] = ACTIONS(83), + [anon_sym_STAR_STAR] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_ATinterface] = ACTIONS(83), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_RBRACE] = ACTIONS(83), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(81), + [anon_sym_this] = ACTIONS(81), + [anon_sym_null] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_do] = ACTIONS(81), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(81), + [anon_sym_if] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(81), + [aux_sym_number_literal_token1] = ACTIONS(81), + [aux_sym_number_literal_token2] = ACTIONS(83), + [aux_sym_number_literal_token3] = ACTIONS(83), + [aux_sym_number_literal_token4] = ACTIONS(81), + [aux_sym_number_literal_token5] = ACTIONS(83), + [anon_sym_return] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_SLASH] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_QMARK] = ACTIONS(81), + [anon_sym_try] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_boolean] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_float] = ACTIONS(81), + [anon_sym_double] = ACTIONS(81), + [anon_sym_void] = ACTIONS(81), + [anon_sym_LBRACK_RBRACK] = ACTIONS(83), + [anon_sym_public] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_static] = ACTIONS(81), + [anon_sym_final] = ACTIONS(81), + [anon_sym_synchronized] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_new] = ACTIONS(81), + }, + [6] = { + [sym_comment] = STATE(6), + [sym_groovy_doc] = STATE(6), + [sym_identifier] = ACTIONS(85), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(87), + [anon_sym_DOT_AMP] = ACTIONS(87), + [anon_sym_DOT_AT] = ACTIONS(87), + [anon_sym_QMARK_DOT] = ACTIONS(87), + [anon_sym_STAR_DOT] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_STAR_COLON] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_import] = ACTIONS(85), + [anon_sym_as] = ACTIONS(85), + [anon_sym_package] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_assert] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_STAR_STAR_EQ] = ACTIONS(87), + [anon_sym_STAR_EQ] = ACTIONS(87), + [anon_sym_SLASH_EQ] = ACTIONS(87), + [anon_sym_PERCENT_EQ] = ACTIONS(87), + [anon_sym_PLUS_EQ] = ACTIONS(87), + [anon_sym_DASH_EQ] = ACTIONS(87), + [anon_sym_LT_LT_EQ] = ACTIONS(87), + [anon_sym_GT_GT_EQ] = ACTIONS(87), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(87), + [anon_sym_AMP_EQ] = ACTIONS(87), + [anon_sym_CARET_EQ] = ACTIONS(87), + [anon_sym_PIPE_EQ] = ACTIONS(87), + [anon_sym_QMARK_EQ] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(87), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(87), + [anon_sym_LT_DOT_DOT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(87), + [anon_sym_in] = ACTIONS(85), + [anon_sym_BANGin] = ACTIONS(85), + [anon_sym_instanceof] = ACTIONS(85), + [anon_sym_BANGinstanceof] = ACTIONS(87), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_LT_EQ_GT] = ACTIONS(87), + [anon_sym_EQ_EQ_EQ] = ACTIONS(87), + [anon_sym_BANG_EQ_EQ] = ACTIONS(87), + [anon_sym_EQ_TILDE] = ACTIONS(87), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_CARET] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(87), + [anon_sym_PIPE_PIPE] = ACTIONS(87), + [anon_sym_QMARK_COLON] = ACTIONS(87), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_true] = ACTIONS(85), + [anon_sym_false] = ACTIONS(85), + [anon_sym_ATinterface] = ACTIONS(87), + [anon_sym_interface] = ACTIONS(85), + [anon_sym_class] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_RBRACE] = ACTIONS(87), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(85), + [anon_sym_this] = ACTIONS(85), + [anon_sym_null] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_do] = ACTIONS(85), + [anon_sym_while] = ACTIONS(85), + [anon_sym_for] = ACTIONS(85), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(85), + [aux_sym_number_literal_token1] = ACTIONS(85), + [aux_sym_number_literal_token2] = ACTIONS(87), + [aux_sym_number_literal_token3] = ACTIONS(87), + [aux_sym_number_literal_token4] = ACTIONS(85), + [aux_sym_number_literal_token5] = ACTIONS(87), + [anon_sym_return] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_DOLLAR_SLASH] = ACTIONS(87), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_QMARK] = ACTIONS(85), + [anon_sym_try] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_boolean] = ACTIONS(85), + [anon_sym_char] = ACTIONS(85), + [anon_sym_short] = ACTIONS(85), + [anon_sym_long] = ACTIONS(85), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [anon_sym_void] = ACTIONS(85), + [anon_sym_LBRACK_RBRACK] = ACTIONS(87), + [anon_sym_public] = ACTIONS(85), + [anon_sym_protected] = ACTIONS(85), + [anon_sym_private] = ACTIONS(85), + [anon_sym_static] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_synchronized] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_new] = ACTIONS(85), + }, + [7] = { + [sym_comment] = STATE(7), + [sym_groovy_doc] = STATE(7), + [sym_identifier] = ACTIONS(89), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(91), + [anon_sym_DOT_AMP] = ACTIONS(93), + [anon_sym_DOT_AT] = ACTIONS(93), + [anon_sym_QMARK_DOT] = ACTIONS(93), + [anon_sym_STAR_DOT] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_STAR_COLON] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(97), + [anon_sym_import] = ACTIONS(89), + [anon_sym_as] = ACTIONS(99), + [anon_sym_package] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(97), + [anon_sym_STAR_STAR_EQ] = ACTIONS(101), + [anon_sym_STAR_EQ] = ACTIONS(101), + [anon_sym_SLASH_EQ] = ACTIONS(101), + [anon_sym_PERCENT_EQ] = ACTIONS(101), + [anon_sym_PLUS_EQ] = ACTIONS(101), + [anon_sym_DASH_EQ] = ACTIONS(101), + [anon_sym_LT_LT_EQ] = ACTIONS(101), + [anon_sym_GT_GT_EQ] = ACTIONS(101), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(101), + [anon_sym_AMP_EQ] = ACTIONS(101), + [anon_sym_CARET_EQ] = ACTIONS(101), + [anon_sym_PIPE_EQ] = ACTIONS(101), + [anon_sym_QMARK_EQ] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(99), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_GT_GT] = ACTIONS(99), + [anon_sym_GT_GT_GT] = ACTIONS(99), + [anon_sym_DOT_DOT] = ACTIONS(99), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_in] = ACTIONS(99), + [anon_sym_BANGin] = ACTIONS(99), + [anon_sym_instanceof] = ACTIONS(99), + [anon_sym_BANGinstanceof] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_LT_EQ_GT] = ACTIONS(93), + [anon_sym_EQ_EQ_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ_EQ] = ACTIONS(93), + [anon_sym_EQ_TILDE] = ACTIONS(93), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(99), + [anon_sym_PIPE] = ACTIONS(99), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(99), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [anon_sym_ATinterface] = ACTIONS(95), + [anon_sym_interface] = ACTIONS(89), + [anon_sym_class] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_null] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_do] = ACTIONS(89), + [anon_sym_while] = ACTIONS(89), + [anon_sym_for] = ACTIONS(89), + [anon_sym_if] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(89), + [aux_sym_number_literal_token1] = ACTIONS(89), + [aux_sym_number_literal_token2] = ACTIONS(95), + [aux_sym_number_literal_token3] = ACTIONS(95), + [aux_sym_number_literal_token4] = ACTIONS(89), + [aux_sym_number_literal_token5] = ACTIONS(95), + [anon_sym_return] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SLASH] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(89), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_try] = ACTIONS(89), + [anon_sym_int] = ACTIONS(89), + [anon_sym_boolean] = ACTIONS(89), + [anon_sym_char] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_float] = ACTIONS(89), + [anon_sym_double] = ACTIONS(89), + [anon_sym_void] = ACTIONS(89), + [anon_sym_LBRACK_RBRACK] = ACTIONS(101), + [anon_sym_public] = ACTIONS(89), + [anon_sym_protected] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_static] = ACTIONS(89), + [anon_sym_final] = ACTIONS(89), + [anon_sym_synchronized] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_new] = ACTIONS(89), + }, + [8] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(8), + [sym_groovy_doc] = STATE(8), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1641), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym__param_list] = STATE(2746), + [sym_parameter] = STATE(2515), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2438), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(51), + [aux_sym_class_definition_repeat1] = STATE(1811), + [aux_sym__param_list_repeat1] = STATE(1879), + [sym_identifier] = ACTIONS(103), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH_GT] = ACTIONS(129), + [anon_sym_RBRACE] = ACTIONS(131), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [9] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(9), + [sym_groovy_doc] = STATE(9), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1653), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym__param_list] = STATE(2613), + [sym_parameter] = STATE(2515), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2438), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(28), + [aux_sym_class_definition_repeat1] = STATE(1811), + [aux_sym__param_list_repeat1] = STATE(1879), + [sym_identifier] = ACTIONS(103), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH_GT] = ACTIONS(169), + [anon_sym_RBRACE] = ACTIONS(171), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [10] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(10), + [sym_groovy_doc] = STATE(10), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1661), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym__param_list] = STATE(2628), + [sym_parameter] = STATE(2515), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2438), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(31), + [aux_sym_class_definition_repeat1] = STATE(1811), + [aux_sym__param_list_repeat1] = STATE(1879), + [sym_identifier] = ACTIONS(103), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH_GT] = ACTIONS(173), + [anon_sym_RBRACE] = ACTIONS(175), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [11] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(11), + [sym_groovy_doc] = STATE(11), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1575), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym__param_list] = STATE(2674), + [sym_parameter] = STATE(2515), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2438), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(30), + [aux_sym_class_definition_repeat1] = STATE(1811), + [aux_sym__param_list_repeat1] = STATE(1879), + [sym_identifier] = ACTIONS(103), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH_GT] = ACTIONS(177), + [anon_sym_RBRACE] = ACTIONS(179), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [12] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(12), + [sym_groovy_doc] = STATE(12), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1701), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym__param_list] = STATE(2650), + [sym_parameter] = STATE(2515), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2438), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(40), + [aux_sym_class_definition_repeat1] = STATE(1811), + [aux_sym__param_list_repeat1] = STATE(1879), + [sym_identifier] = ACTIONS(103), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH_GT] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [13] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(13), + [sym_groovy_doc] = STATE(13), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1662), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym__param_list] = STATE(2663), + [sym_parameter] = STATE(2515), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2438), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(37), + [aux_sym_class_definition_repeat1] = STATE(1811), + [aux_sym__param_list_repeat1] = STATE(1879), + [sym_identifier] = ACTIONS(103), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH_GT] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(187), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [14] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(14), + [sym_groovy_doc] = STATE(14), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1737), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym__param_list] = STATE(2656), + [sym_parameter] = STATE(2515), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2438), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(57), + [aux_sym_class_definition_repeat1] = STATE(1811), + [aux_sym__param_list_repeat1] = STATE(1879), + [sym_identifier] = ACTIONS(103), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH_GT] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [15] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(15), + [sym_groovy_doc] = STATE(15), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1720), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym__param_list] = STATE(2730), + [sym_parameter] = STATE(2515), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2438), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(48), + [aux_sym_class_definition_repeat1] = STATE(1811), + [aux_sym__param_list_repeat1] = STATE(1879), + [sym_identifier] = ACTIONS(103), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH_GT] = ACTIONS(193), + [anon_sym_RBRACE] = ACTIONS(195), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [16] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(16), + [sym_groovy_doc] = STATE(16), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1717), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym__param_list] = STATE(2689), + [sym_parameter] = STATE(2515), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2438), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(49), + [aux_sym_class_definition_repeat1] = STATE(1811), + [aux_sym__param_list_repeat1] = STATE(1879), + [sym_identifier] = ACTIONS(103), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_RBRACE] = ACTIONS(199), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [17] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(17), + [sym_groovy_doc] = STATE(17), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1699), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(203), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [18] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(18), + [sym_groovy_doc] = STATE(18), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1659), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(60), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [19] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(19), + [sym_groovy_doc] = STATE(19), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1585), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(207), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [20] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(20), + [sym_groovy_doc] = STATE(20), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1585), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(21), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(207), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [21] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(21), + [sym_groovy_doc] = STATE(21), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1617), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [22] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(22), + [sym_groovy_doc] = STATE(22), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1596), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(211), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [23] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(23), + [sym_groovy_doc] = STATE(23), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1596), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(61), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(211), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [24] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(24), + [sym_groovy_doc] = STATE(24), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1638), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(213), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [25] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(25), + [sym_groovy_doc] = STATE(25), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1646), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [26] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(26), + [sym_groovy_doc] = STATE(26), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1587), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(19), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(217), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [27] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(27), + [sym_groovy_doc] = STATE(27), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1648), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(24), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(219), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [28] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(28), + [sym_groovy_doc] = STATE(28), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1675), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(221), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [29] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(29), + [sym_groovy_doc] = STATE(29), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1648), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(219), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [30] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(30), + [sym_groovy_doc] = STATE(30), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1581), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(223), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [31] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(31), + [sym_groovy_doc] = STATE(31), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1658), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(225), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [32] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(32), + [sym_groovy_doc] = STATE(32), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1658), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(29), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(225), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [33] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(33), + [sym_groovy_doc] = STATE(33), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1699), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(43), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(203), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [34] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(34), + [sym_groovy_doc] = STATE(34), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1670), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [35] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(35), + [sym_groovy_doc] = STATE(35), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1687), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(41), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [36] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(36), + [sym_groovy_doc] = STATE(36), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1631), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(231), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [37] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(37), + [sym_groovy_doc] = STATE(37), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1687), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [38] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(38), + [sym_groovy_doc] = STATE(38), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1685), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(34), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(233), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [39] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(39), + [sym_groovy_doc] = STATE(39), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1685), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(233), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [40] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(40), + [sym_groovy_doc] = STATE(40), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1693), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(235), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [41] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(41), + [sym_groovy_doc] = STATE(41), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1715), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [42] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(42), + [sym_groovy_doc] = STATE(42), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1715), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(47), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [43] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(43), + [sym_groovy_doc] = STATE(43), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1718), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(239), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [44] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(44), + [sym_groovy_doc] = STATE(44), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1693), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(39), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(235), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [45] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(45), + [sym_groovy_doc] = STATE(45), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1646), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(36), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [46] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(46), + [sym_groovy_doc] = STATE(46), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1675), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(17), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(221), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [47] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(47), + [sym_groovy_doc] = STATE(47), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1719), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(241), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [48] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(48), + [sym_groovy_doc] = STATE(48), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1659), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [49] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(49), + [sym_groovy_doc] = STATE(49), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1703), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(243), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [50] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(50), + [sym_groovy_doc] = STATE(50), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1703), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(25), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(243), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [51] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(51), + [sym_groovy_doc] = STATE(51), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1587), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(217), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [52] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(52), + [sym_groovy_doc] = STATE(52), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1713), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(245), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [53] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(53), + [sym_groovy_doc] = STATE(53), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1723), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(52), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(247), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [54] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(54), + [sym_groovy_doc] = STATE(54), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1581), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(22), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(223), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [55] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(55), + [sym_groovy_doc] = STATE(55), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1723), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(247), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [56] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(56), + [sym_groovy_doc] = STATE(56), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1736), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(55), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [57] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(57), + [sym_groovy_doc] = STATE(57), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1736), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [58] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(58), + [sym_groovy_doc] = STATE(58), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1711), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(59), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(251), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [59] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(59), + [sym_groovy_doc] = STATE(59), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1738), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [60] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(60), + [sym_groovy_doc] = STATE(60), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1711), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(251), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [61] = { + [sym__statement] = STATE(833), + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(493), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1481), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(199), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(197), + [sym_comment] = STATE(61), + [sym_groovy_doc] = STATE(61), + [sym_declaration] = STATE(790), + [sym__expression] = STATE(1610), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(7), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(493), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_return] = STATE(790), + [sym_string] = STATE(493), + [sym__plain_string] = STATE(491), + [sym__interpolate_string] = STATE(491), + [sym_switch_statement] = STATE(790), + [sym_ternary_op] = STATE(911), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(201), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(255), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_SLASH] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [62] = { + [sym_comment] = STATE(62), + [sym_groovy_doc] = STATE(62), + [sym_identifier] = ACTIONS(99), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_DOT_AMP] = ACTIONS(93), + [anon_sym_DOT_AT] = ACTIONS(93), + [anon_sym_QMARK_DOT] = ACTIONS(93), + [anon_sym_STAR_DOT] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_STAR_COLON] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(97), + [anon_sym_import] = ACTIONS(99), + [anon_sym_as] = ACTIONS(99), + [anon_sym_package] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(93), + [anon_sym_SLASH] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(99), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_LT_LT] = ACTIONS(93), + [anon_sym_GT_GT] = ACTIONS(99), + [anon_sym_GT_GT_GT] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(99), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_in] = ACTIONS(99), + [anon_sym_BANGin] = ACTIONS(99), + [anon_sym_instanceof] = ACTIONS(99), + [anon_sym_BANGinstanceof] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_LT_EQ_GT] = ACTIONS(93), + [anon_sym_EQ_EQ_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ_EQ] = ACTIONS(93), + [anon_sym_EQ_TILDE] = ACTIONS(93), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(99), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(93), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_ATinterface] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(99), + [anon_sym_class] = ACTIONS(99), + [anon_sym_COMMA] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_RBRACE] = ACTIONS(93), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(99), + [anon_sym_this] = ACTIONS(99), + [anon_sym_null] = ACTIONS(99), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(99), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(99), + [anon_sym_if] = ACTIONS(99), + [anon_sym_else] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(101), + [anon_sym_COLON] = ACTIONS(257), + [aux_sym_number_literal_token1] = ACTIONS(99), + [aux_sym_number_literal_token2] = ACTIONS(93), + [aux_sym_number_literal_token3] = ACTIONS(93), + [aux_sym_number_literal_token4] = ACTIONS(99), + [aux_sym_number_literal_token5] = ACTIONS(93), + [anon_sym_return] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_SLASH] = ACTIONS(93), + [anon_sym_switch] = ACTIONS(99), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(99), + [anon_sym_finally] = ACTIONS(99), + [anon_sym_int] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_char] = ACTIONS(99), + [anon_sym_short] = ACTIONS(99), + [anon_sym_long] = ACTIONS(99), + [anon_sym_float] = ACTIONS(99), + [anon_sym_double] = ACTIONS(99), + [anon_sym_void] = ACTIONS(99), + [anon_sym_public] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_static] = ACTIONS(99), + [anon_sym_final] = ACTIONS(99), + [anon_sym_synchronized] = ACTIONS(99), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_new] = ACTIONS(99), + }, + [63] = { + [sym_comment] = STATE(63), + [sym_groovy_doc] = STATE(63), + [sym_argument_list] = STATE(70), + [sym_identifier] = ACTIONS(259), + [anon_sym_break] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(259), + [anon_sym_SEMI] = ACTIONS(261), + [anon_sym_DOT_AMP] = ACTIONS(261), + [anon_sym_DOT_AT] = ACTIONS(261), + [anon_sym_QMARK_DOT] = ACTIONS(261), + [anon_sym_STAR_DOT] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(259), + [anon_sym_STAR_COLON] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(263), + [anon_sym_import] = ACTIONS(259), + [anon_sym_as] = ACTIONS(259), + [anon_sym_package] = ACTIONS(259), + [anon_sym_AT] = ACTIONS(259), + [anon_sym_assert] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(261), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_GT_GT_GT] = ACTIONS(261), + [anon_sym_DOT_DOT] = ACTIONS(259), + [anon_sym_DOT_DOT_LT] = ACTIONS(261), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(261), + [anon_sym_LT_DOT_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(259), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_GT_EQ] = ACTIONS(261), + [anon_sym_in] = ACTIONS(259), + [anon_sym_BANGin] = ACTIONS(259), + [anon_sym_instanceof] = ACTIONS(259), + [anon_sym_BANGinstanceof] = ACTIONS(261), + [anon_sym_EQ_EQ] = ACTIONS(259), + [anon_sym_BANG_EQ] = ACTIONS(259), + [anon_sym_LT_EQ_GT] = ACTIONS(261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(261), + [anon_sym_BANG_EQ_EQ] = ACTIONS(261), + [anon_sym_EQ_TILDE] = ACTIONS(261), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_CARET] = ACTIONS(261), + [anon_sym_PIPE] = ACTIONS(259), + [anon_sym_AMP_AMP] = ACTIONS(261), + [anon_sym_PIPE_PIPE] = ACTIONS(261), + [anon_sym_QMARK_COLON] = ACTIONS(261), + [anon_sym_STAR_STAR] = ACTIONS(261), + [anon_sym_true] = ACTIONS(259), + [anon_sym_false] = ACTIONS(259), + [anon_sym_ATinterface] = ACTIONS(261), + [anon_sym_interface] = ACTIONS(259), + [anon_sym_class] = ACTIONS(259), + [anon_sym_COMMA] = ACTIONS(261), + [anon_sym_LBRACE] = ACTIONS(261), + [anon_sym_RBRACE] = ACTIONS(261), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(259), + [anon_sym_this] = ACTIONS(259), + [anon_sym_null] = ACTIONS(259), + [anon_sym_LPAREN] = ACTIONS(261), + [anon_sym_do] = ACTIONS(259), + [anon_sym_while] = ACTIONS(259), + [anon_sym_for] = ACTIONS(259), + [anon_sym_if] = ACTIONS(259), + [anon_sym_else] = ACTIONS(259), + [anon_sym_LBRACK] = ACTIONS(265), + [aux_sym_number_literal_token1] = ACTIONS(259), + [aux_sym_number_literal_token2] = ACTIONS(261), + [aux_sym_number_literal_token3] = ACTIONS(261), + [aux_sym_number_literal_token4] = ACTIONS(259), + [aux_sym_number_literal_token5] = ACTIONS(261), + [anon_sym_return] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(261), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_SLASH] = ACTIONS(261), + [anon_sym_switch] = ACTIONS(259), + [anon_sym_QMARK] = ACTIONS(259), + [anon_sym_try] = ACTIONS(259), + [anon_sym_catch] = ACTIONS(259), + [anon_sym_finally] = ACTIONS(259), + [anon_sym_int] = ACTIONS(259), + [anon_sym_boolean] = ACTIONS(259), + [anon_sym_char] = ACTIONS(259), + [anon_sym_short] = ACTIONS(259), + [anon_sym_long] = ACTIONS(259), + [anon_sym_float] = ACTIONS(259), + [anon_sym_double] = ACTIONS(259), + [anon_sym_void] = ACTIONS(259), + [anon_sym_public] = ACTIONS(259), + [anon_sym_protected] = ACTIONS(259), + [anon_sym_private] = ACTIONS(259), + [anon_sym_static] = ACTIONS(259), + [anon_sym_final] = ACTIONS(259), + [anon_sym_synchronized] = ACTIONS(259), + [anon_sym_TILDE] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(259), + [anon_sym_new] = ACTIONS(259), + }, + [64] = { + [sym_comment] = STATE(64), + [sym_groovy_doc] = STATE(64), + [sym_identifier] = ACTIONS(267), + [anon_sym_break] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(267), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_DOT_AMP] = ACTIONS(269), + [anon_sym_DOT_AT] = ACTIONS(269), + [anon_sym_QMARK_DOT] = ACTIONS(269), + [anon_sym_STAR_DOT] = ACTIONS(269), + [anon_sym_STAR] = ACTIONS(267), + [anon_sym_STAR_COLON] = ACTIONS(269), + [anon_sym_import] = ACTIONS(267), + [anon_sym_as] = ACTIONS(267), + [anon_sym_package] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(267), + [anon_sym_assert] = ACTIONS(267), + [anon_sym_PLUS_PLUS] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(269), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_GT_GT] = ACTIONS(267), + [anon_sym_GT_GT_GT] = ACTIONS(269), + [anon_sym_DOT_DOT] = ACTIONS(267), + [anon_sym_DOT_DOT_LT] = ACTIONS(269), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(269), + [anon_sym_LT_DOT_DOT] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(267), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_in] = ACTIONS(267), + [anon_sym_BANGin] = ACTIONS(267), + [anon_sym_instanceof] = ACTIONS(267), + [anon_sym_BANGinstanceof] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(267), + [anon_sym_BANG_EQ] = ACTIONS(267), + [anon_sym_LT_EQ_GT] = ACTIONS(269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(269), + [anon_sym_EQ_TILDE] = ACTIONS(269), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(267), + [anon_sym_AMP_AMP] = ACTIONS(269), + [anon_sym_PIPE_PIPE] = ACTIONS(269), + [anon_sym_QMARK_COLON] = ACTIONS(269), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_true] = ACTIONS(267), + [anon_sym_false] = ACTIONS(267), + [anon_sym_ATinterface] = ACTIONS(269), + [anon_sym_interface] = ACTIONS(267), + [anon_sym_class] = ACTIONS(267), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_RBRACE] = ACTIONS(269), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(267), + [anon_sym_this] = ACTIONS(267), + [anon_sym_null] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(269), + [anon_sym_do] = ACTIONS(267), + [anon_sym_while] = ACTIONS(267), + [anon_sym_for] = ACTIONS(267), + [anon_sym_if] = ACTIONS(267), + [anon_sym_else] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_COLON] = ACTIONS(269), + [aux_sym_number_literal_token1] = ACTIONS(267), + [aux_sym_number_literal_token2] = ACTIONS(269), + [aux_sym_number_literal_token3] = ACTIONS(269), + [aux_sym_number_literal_token4] = ACTIONS(267), + [aux_sym_number_literal_token5] = ACTIONS(269), + [anon_sym_return] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(267), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(267), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(269), + [anon_sym_DOLLAR_SLASH] = ACTIONS(269), + [anon_sym_switch] = ACTIONS(267), + [anon_sym_QMARK] = ACTIONS(267), + [anon_sym_try] = ACTIONS(267), + [anon_sym_catch] = ACTIONS(267), + [anon_sym_finally] = ACTIONS(267), + [anon_sym_int] = ACTIONS(267), + [anon_sym_boolean] = ACTIONS(267), + [anon_sym_char] = ACTIONS(267), + [anon_sym_short] = ACTIONS(267), + [anon_sym_long] = ACTIONS(267), + [anon_sym_float] = ACTIONS(267), + [anon_sym_double] = ACTIONS(267), + [anon_sym_void] = ACTIONS(267), + [anon_sym_public] = ACTIONS(267), + [anon_sym_protected] = ACTIONS(267), + [anon_sym_private] = ACTIONS(267), + [anon_sym_static] = ACTIONS(267), + [anon_sym_final] = ACTIONS(267), + [anon_sym_synchronized] = ACTIONS(267), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_new] = ACTIONS(267), + }, + [65] = { + [sym_comment] = STATE(65), + [sym_groovy_doc] = STATE(65), + [sym_identifier] = ACTIONS(271), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_SEMI] = ACTIONS(273), + [anon_sym_DOT_AMP] = ACTIONS(273), + [anon_sym_DOT_AT] = ACTIONS(273), + [anon_sym_QMARK_DOT] = ACTIONS(273), + [anon_sym_STAR_DOT] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_COLON] = ACTIONS(273), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_import] = ACTIONS(271), + [anon_sym_as] = ACTIONS(271), + [anon_sym_package] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_assert] = ACTIONS(271), + [anon_sym_PLUS_PLUS] = ACTIONS(273), + [anon_sym_DASH_DASH] = ACTIONS(273), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_LT_LT] = ACTIONS(273), + [anon_sym_GT_GT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(273), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_DOT_DOT_LT] = ACTIONS(273), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(273), + [anon_sym_LT_DOT_DOT] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(273), + [anon_sym_in] = ACTIONS(271), + [anon_sym_BANGin] = ACTIONS(271), + [anon_sym_instanceof] = ACTIONS(271), + [anon_sym_BANGinstanceof] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_LT_EQ_GT] = ACTIONS(273), + [anon_sym_EQ_EQ_EQ] = ACTIONS(273), + [anon_sym_BANG_EQ_EQ] = ACTIONS(273), + [anon_sym_EQ_TILDE] = ACTIONS(273), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(273), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(273), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(273), + [anon_sym_PIPE_PIPE] = ACTIONS(273), + [anon_sym_QMARK_COLON] = ACTIONS(273), + [anon_sym_STAR_STAR] = ACTIONS(273), + [anon_sym_true] = ACTIONS(271), + [anon_sym_false] = ACTIONS(271), + [anon_sym_ATinterface] = ACTIONS(273), + [anon_sym_interface] = ACTIONS(271), + [anon_sym_class] = ACTIONS(271), + [anon_sym_COMMA] = ACTIONS(273), + [anon_sym_LBRACE] = ACTIONS(273), + [anon_sym_RBRACE] = ACTIONS(273), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(271), + [anon_sym_this] = ACTIONS(271), + [anon_sym_null] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(273), + [anon_sym_do] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [aux_sym_number_literal_token1] = ACTIONS(271), + [aux_sym_number_literal_token2] = ACTIONS(273), + [aux_sym_number_literal_token3] = ACTIONS(273), + [aux_sym_number_literal_token4] = ACTIONS(271), + [aux_sym_number_literal_token5] = ACTIONS(273), + [anon_sym_return] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(273), + [anon_sym_DQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(273), + [anon_sym_DOLLAR_SLASH] = ACTIONS(273), + [anon_sym_switch] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), + [anon_sym_int] = ACTIONS(271), + [anon_sym_boolean] = ACTIONS(271), + [anon_sym_char] = ACTIONS(271), + [anon_sym_short] = ACTIONS(271), + [anon_sym_long] = ACTIONS(271), + [anon_sym_float] = ACTIONS(271), + [anon_sym_double] = ACTIONS(271), + [anon_sym_void] = ACTIONS(271), + [anon_sym_public] = ACTIONS(271), + [anon_sym_protected] = ACTIONS(271), + [anon_sym_private] = ACTIONS(271), + [anon_sym_static] = ACTIONS(271), + [anon_sym_final] = ACTIONS(271), + [anon_sym_synchronized] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_new] = ACTIONS(271), + }, + [66] = { + [sym_comment] = STATE(66), + [sym_groovy_doc] = STATE(66), + [sym_identifier] = ACTIONS(275), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_DOT_AMP] = ACTIONS(277), + [anon_sym_DOT_AT] = ACTIONS(277), + [anon_sym_QMARK_DOT] = ACTIONS(277), + [anon_sym_STAR_DOT] = ACTIONS(277), + [anon_sym_STAR] = ACTIONS(275), + [anon_sym_STAR_COLON] = ACTIONS(277), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_import] = ACTIONS(275), + [anon_sym_as] = ACTIONS(275), + [anon_sym_package] = ACTIONS(275), + [anon_sym_AT] = ACTIONS(275), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_PLUS_PLUS] = ACTIONS(277), + [anon_sym_DASH_DASH] = ACTIONS(277), + [anon_sym_PERCENT] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_PLUS] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_GT_GT] = ACTIONS(275), + [anon_sym_GT_GT_GT] = ACTIONS(277), + [anon_sym_DOT_DOT] = ACTIONS(275), + [anon_sym_DOT_DOT_LT] = ACTIONS(277), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(277), + [anon_sym_LT_DOT_DOT] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_LT_EQ] = ACTIONS(275), + [anon_sym_GT] = ACTIONS(275), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_in] = ACTIONS(275), + [anon_sym_BANGin] = ACTIONS(275), + [anon_sym_instanceof] = ACTIONS(275), + [anon_sym_BANGinstanceof] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_LT_EQ_GT] = ACTIONS(277), + [anon_sym_EQ_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ_EQ] = ACTIONS(277), + [anon_sym_EQ_TILDE] = ACTIONS(277), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(277), + [anon_sym_AMP] = ACTIONS(275), + [anon_sym_CARET] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(275), + [anon_sym_AMP_AMP] = ACTIONS(277), + [anon_sym_PIPE_PIPE] = ACTIONS(277), + [anon_sym_QMARK_COLON] = ACTIONS(277), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_true] = ACTIONS(275), + [anon_sym_false] = ACTIONS(275), + [anon_sym_ATinterface] = ACTIONS(277), + [anon_sym_interface] = ACTIONS(275), + [anon_sym_class] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(277), + [anon_sym_RBRACE] = ACTIONS(277), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(275), + [anon_sym_this] = ACTIONS(275), + [anon_sym_null] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(277), + [anon_sym_do] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(275), + [anon_sym_else] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [aux_sym_number_literal_token1] = ACTIONS(275), + [aux_sym_number_literal_token2] = ACTIONS(277), + [aux_sym_number_literal_token3] = ACTIONS(277), + [aux_sym_number_literal_token4] = ACTIONS(275), + [aux_sym_number_literal_token5] = ACTIONS(277), + [anon_sym_return] = ACTIONS(275), + [anon_sym_SQUOTE] = ACTIONS(275), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(277), + [anon_sym_DQUOTE] = ACTIONS(275), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(277), + [anon_sym_DOLLAR_SLASH] = ACTIONS(277), + [anon_sym_switch] = ACTIONS(275), + [anon_sym_QMARK] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_int] = ACTIONS(275), + [anon_sym_boolean] = ACTIONS(275), + [anon_sym_char] = ACTIONS(275), + [anon_sym_short] = ACTIONS(275), + [anon_sym_long] = ACTIONS(275), + [anon_sym_float] = ACTIONS(275), + [anon_sym_double] = ACTIONS(275), + [anon_sym_void] = ACTIONS(275), + [anon_sym_public] = ACTIONS(275), + [anon_sym_protected] = ACTIONS(275), + [anon_sym_private] = ACTIONS(275), + [anon_sym_static] = ACTIONS(275), + [anon_sym_final] = ACTIONS(275), + [anon_sym_synchronized] = ACTIONS(275), + [anon_sym_TILDE] = ACTIONS(277), + [anon_sym_BANG] = ACTIONS(275), + [anon_sym_new] = ACTIONS(275), + }, + [67] = { + [sym_comment] = STATE(67), + [sym_groovy_doc] = STATE(67), + [sym_identifier] = ACTIONS(279), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(281), + [anon_sym_DOT_AMP] = ACTIONS(281), + [anon_sym_DOT_AT] = ACTIONS(281), + [anon_sym_QMARK_DOT] = ACTIONS(281), + [anon_sym_STAR_DOT] = ACTIONS(281), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_STAR_COLON] = ACTIONS(281), + [anon_sym_DOT] = ACTIONS(279), + [anon_sym_import] = ACTIONS(279), + [anon_sym_as] = ACTIONS(279), + [anon_sym_package] = ACTIONS(279), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(279), + [anon_sym_PLUS_PLUS] = ACTIONS(281), + [anon_sym_DASH_DASH] = ACTIONS(281), + [anon_sym_PERCENT] = ACTIONS(281), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_LT_LT] = ACTIONS(281), + [anon_sym_GT_GT] = ACTIONS(279), + [anon_sym_GT_GT_GT] = ACTIONS(281), + [anon_sym_DOT_DOT] = ACTIONS(279), + [anon_sym_DOT_DOT_LT] = ACTIONS(281), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(281), + [anon_sym_LT_DOT_DOT] = ACTIONS(279), + [anon_sym_LT] = ACTIONS(279), + [anon_sym_LT_EQ] = ACTIONS(279), + [anon_sym_GT] = ACTIONS(279), + [anon_sym_GT_EQ] = ACTIONS(281), + [anon_sym_in] = ACTIONS(279), + [anon_sym_BANGin] = ACTIONS(279), + [anon_sym_instanceof] = ACTIONS(279), + [anon_sym_BANGinstanceof] = ACTIONS(281), + [anon_sym_EQ_EQ] = ACTIONS(279), + [anon_sym_BANG_EQ] = ACTIONS(279), + [anon_sym_LT_EQ_GT] = ACTIONS(281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(281), + [anon_sym_EQ_TILDE] = ACTIONS(281), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(279), + [anon_sym_CARET] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(279), + [anon_sym_AMP_AMP] = ACTIONS(281), + [anon_sym_PIPE_PIPE] = ACTIONS(281), + [anon_sym_QMARK_COLON] = ACTIONS(281), + [anon_sym_STAR_STAR] = ACTIONS(281), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_ATinterface] = ACTIONS(281), + [anon_sym_interface] = ACTIONS(279), + [anon_sym_class] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(281), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(279), + [anon_sym_this] = ACTIONS(279), + [anon_sym_null] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(281), + [anon_sym_do] = ACTIONS(279), + [anon_sym_while] = ACTIONS(279), + [anon_sym_for] = ACTIONS(279), + [anon_sym_if] = ACTIONS(279), + [anon_sym_else] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(281), + [aux_sym_number_literal_token1] = ACTIONS(279), + [aux_sym_number_literal_token2] = ACTIONS(281), + [aux_sym_number_literal_token3] = ACTIONS(281), + [aux_sym_number_literal_token4] = ACTIONS(279), + [aux_sym_number_literal_token5] = ACTIONS(281), + [anon_sym_return] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(279), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(281), + [anon_sym_DQUOTE] = ACTIONS(279), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [anon_sym_DOLLAR_SLASH] = ACTIONS(281), + [anon_sym_switch] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(279), + [anon_sym_try] = ACTIONS(279), + [anon_sym_catch] = ACTIONS(279), + [anon_sym_finally] = ACTIONS(279), + [anon_sym_int] = ACTIONS(279), + [anon_sym_boolean] = ACTIONS(279), + [anon_sym_char] = ACTIONS(279), + [anon_sym_short] = ACTIONS(279), + [anon_sym_long] = ACTIONS(279), + [anon_sym_float] = ACTIONS(279), + [anon_sym_double] = ACTIONS(279), + [anon_sym_void] = ACTIONS(279), + [anon_sym_public] = ACTIONS(279), + [anon_sym_protected] = ACTIONS(279), + [anon_sym_private] = ACTIONS(279), + [anon_sym_static] = ACTIONS(279), + [anon_sym_final] = ACTIONS(279), + [anon_sym_synchronized] = ACTIONS(279), + [anon_sym_TILDE] = ACTIONS(281), + [anon_sym_BANG] = ACTIONS(279), + [anon_sym_new] = ACTIONS(279), + }, + [68] = { + [sym_comment] = STATE(68), + [sym_groovy_doc] = STATE(68), + [sym_identifier] = ACTIONS(283), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOT_AMP] = ACTIONS(285), + [anon_sym_DOT_AT] = ACTIONS(285), + [anon_sym_QMARK_DOT] = ACTIONS(285), + [anon_sym_STAR_DOT] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(283), + [anon_sym_STAR_COLON] = ACTIONS(285), + [anon_sym_DOT] = ACTIONS(283), + [anon_sym_import] = ACTIONS(283), + [anon_sym_as] = ACTIONS(283), + [anon_sym_package] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [anon_sym_assert] = ACTIONS(283), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_PERCENT] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(283), + [anon_sym_DASH] = ACTIONS(283), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(283), + [anon_sym_GT_GT_GT] = ACTIONS(285), + [anon_sym_DOT_DOT] = ACTIONS(283), + [anon_sym_DOT_DOT_LT] = ACTIONS(285), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(285), + [anon_sym_LT_DOT_DOT] = ACTIONS(283), + [anon_sym_LT] = ACTIONS(283), + [anon_sym_LT_EQ] = ACTIONS(283), + [anon_sym_GT] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_in] = ACTIONS(283), + [anon_sym_BANGin] = ACTIONS(283), + [anon_sym_instanceof] = ACTIONS(283), + [anon_sym_BANGinstanceof] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(283), + [anon_sym_BANG_EQ] = ACTIONS(283), + [anon_sym_LT_EQ_GT] = ACTIONS(285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(283), + [anon_sym_CARET] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_QMARK_COLON] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(285), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_ATinterface] = ACTIONS(285), + [anon_sym_interface] = ACTIONS(283), + [anon_sym_class] = ACTIONS(283), + [anon_sym_COMMA] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(285), + [anon_sym_RBRACE] = ACTIONS(285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(283), + [anon_sym_this] = ACTIONS(283), + [anon_sym_null] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_do] = ACTIONS(283), + [anon_sym_while] = ACTIONS(283), + [anon_sym_for] = ACTIONS(283), + [anon_sym_if] = ACTIONS(283), + [anon_sym_else] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [aux_sym_number_literal_token1] = ACTIONS(283), + [aux_sym_number_literal_token2] = ACTIONS(285), + [aux_sym_number_literal_token3] = ACTIONS(285), + [aux_sym_number_literal_token4] = ACTIONS(283), + [aux_sym_number_literal_token5] = ACTIONS(285), + [anon_sym_return] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(283), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_SLASH] = ACTIONS(285), + [anon_sym_switch] = ACTIONS(283), + [anon_sym_QMARK] = ACTIONS(283), + [anon_sym_try] = ACTIONS(283), + [anon_sym_catch] = ACTIONS(283), + [anon_sym_finally] = ACTIONS(283), + [anon_sym_int] = ACTIONS(283), + [anon_sym_boolean] = ACTIONS(283), + [anon_sym_char] = ACTIONS(283), + [anon_sym_short] = ACTIONS(283), + [anon_sym_long] = ACTIONS(283), + [anon_sym_float] = ACTIONS(283), + [anon_sym_double] = ACTIONS(283), + [anon_sym_void] = ACTIONS(283), + [anon_sym_public] = ACTIONS(283), + [anon_sym_protected] = ACTIONS(283), + [anon_sym_private] = ACTIONS(283), + [anon_sym_static] = ACTIONS(283), + [anon_sym_final] = ACTIONS(283), + [anon_sym_synchronized] = ACTIONS(283), + [anon_sym_TILDE] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(283), + [anon_sym_new] = ACTIONS(283), + }, + [69] = { + [sym_comment] = STATE(69), + [sym_groovy_doc] = STATE(69), + [sym_identifier] = ACTIONS(99), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_DOT_AMP] = ACTIONS(93), + [anon_sym_DOT_AT] = ACTIONS(93), + [anon_sym_QMARK_DOT] = ACTIONS(93), + [anon_sym_STAR_DOT] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_STAR_COLON] = ACTIONS(93), + [anon_sym_import] = ACTIONS(99), + [anon_sym_as] = ACTIONS(99), + [anon_sym_package] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(93), + [anon_sym_SLASH] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(99), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_LT_LT] = ACTIONS(93), + [anon_sym_GT_GT] = ACTIONS(99), + [anon_sym_GT_GT_GT] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(99), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_in] = ACTIONS(99), + [anon_sym_BANGin] = ACTIONS(99), + [anon_sym_instanceof] = ACTIONS(99), + [anon_sym_BANGinstanceof] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_LT_EQ_GT] = ACTIONS(93), + [anon_sym_EQ_EQ_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ_EQ] = ACTIONS(93), + [anon_sym_EQ_TILDE] = ACTIONS(93), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(99), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(93), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_ATinterface] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(99), + [anon_sym_class] = ACTIONS(99), + [anon_sym_COMMA] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_RBRACE] = ACTIONS(93), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(99), + [anon_sym_this] = ACTIONS(99), + [anon_sym_null] = ACTIONS(99), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_do] = ACTIONS(99), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(99), + [anon_sym_if] = ACTIONS(99), + [anon_sym_else] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(257), + [aux_sym_number_literal_token1] = ACTIONS(99), + [aux_sym_number_literal_token2] = ACTIONS(93), + [aux_sym_number_literal_token3] = ACTIONS(93), + [aux_sym_number_literal_token4] = ACTIONS(99), + [aux_sym_number_literal_token5] = ACTIONS(93), + [anon_sym_return] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_SLASH] = ACTIONS(93), + [anon_sym_switch] = ACTIONS(99), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(99), + [anon_sym_finally] = ACTIONS(99), + [anon_sym_int] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_char] = ACTIONS(99), + [anon_sym_short] = ACTIONS(99), + [anon_sym_long] = ACTIONS(99), + [anon_sym_float] = ACTIONS(99), + [anon_sym_double] = ACTIONS(99), + [anon_sym_void] = ACTIONS(99), + [anon_sym_public] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_static] = ACTIONS(99), + [anon_sym_final] = ACTIONS(99), + [anon_sym_synchronized] = ACTIONS(99), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_new] = ACTIONS(99), + }, + [70] = { + [sym_comment] = STATE(70), + [sym_groovy_doc] = STATE(70), + [sym_identifier] = ACTIONS(73), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_DOT_AMP] = ACTIONS(75), + [anon_sym_DOT_AT] = ACTIONS(75), + [anon_sym_QMARK_DOT] = ACTIONS(75), + [anon_sym_STAR_DOT] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(73), + [anon_sym_STAR_COLON] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(73), + [anon_sym_import] = ACTIONS(73), + [anon_sym_as] = ACTIONS(73), + [anon_sym_package] = ACTIONS(73), + [anon_sym_AT] = ACTIONS(73), + [anon_sym_assert] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_LT_LT] = ACTIONS(75), + [anon_sym_GT_GT] = ACTIONS(73), + [anon_sym_GT_GT_GT] = ACTIONS(75), + [anon_sym_DOT_DOT] = ACTIONS(73), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(75), + [anon_sym_LT_DOT_DOT] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(73), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(73), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_in] = ACTIONS(73), + [anon_sym_BANGin] = ACTIONS(73), + [anon_sym_instanceof] = ACTIONS(73), + [anon_sym_BANGinstanceof] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT_EQ_GT] = ACTIONS(75), + [anon_sym_EQ_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ_EQ] = ACTIONS(75), + [anon_sym_EQ_TILDE] = ACTIONS(75), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(73), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(73), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_QMARK_COLON] = ACTIONS(75), + [anon_sym_STAR_STAR] = ACTIONS(75), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ATinterface] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_class] = ACTIONS(73), + [anon_sym_COMMA] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_RBRACE] = ACTIONS(75), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(73), + [anon_sym_this] = ACTIONS(73), + [anon_sym_null] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_do] = ACTIONS(73), + [anon_sym_while] = ACTIONS(73), + [anon_sym_for] = ACTIONS(73), + [anon_sym_if] = ACTIONS(73), + [anon_sym_else] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(75), + [aux_sym_number_literal_token1] = ACTIONS(73), + [aux_sym_number_literal_token2] = ACTIONS(75), + [aux_sym_number_literal_token3] = ACTIONS(75), + [aux_sym_number_literal_token4] = ACTIONS(73), + [aux_sym_number_literal_token5] = ACTIONS(75), + [anon_sym_return] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(75), + [anon_sym_DOLLAR_SLASH] = ACTIONS(75), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_QMARK] = ACTIONS(73), + [anon_sym_try] = ACTIONS(73), + [anon_sym_catch] = ACTIONS(73), + [anon_sym_finally] = ACTIONS(73), + [anon_sym_int] = ACTIONS(73), + [anon_sym_boolean] = ACTIONS(73), + [anon_sym_char] = ACTIONS(73), + [anon_sym_short] = ACTIONS(73), + [anon_sym_long] = ACTIONS(73), + [anon_sym_float] = ACTIONS(73), + [anon_sym_double] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_public] = ACTIONS(73), + [anon_sym_protected] = ACTIONS(73), + [anon_sym_private] = ACTIONS(73), + [anon_sym_static] = ACTIONS(73), + [anon_sym_final] = ACTIONS(73), + [anon_sym_synchronized] = ACTIONS(73), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(73), + [anon_sym_new] = ACTIONS(73), + }, + [71] = { + [sym_comment] = STATE(71), + [sym_groovy_doc] = STATE(71), + [aux_sym__juxt_argument_list_repeat1] = STATE(748), + [sym_identifier] = ACTIONS(287), + [anon_sym_break] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_DOT_AMP] = ACTIONS(291), + [anon_sym_DOT_AT] = ACTIONS(291), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_STAR_DOT] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_STAR_COLON] = ACTIONS(289), + [anon_sym_import] = ACTIONS(287), + [anon_sym_as] = ACTIONS(295), + [anon_sym_package] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_assert] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(289), + [anon_sym_DASH_DASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(303), + [anon_sym_GT_GT_GT] = ACTIONS(301), + [anon_sym_DOT_DOT] = ACTIONS(303), + [anon_sym_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(295), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_in] = ACTIONS(295), + [anon_sym_BANGin] = ACTIONS(295), + [anon_sym_instanceof] = ACTIONS(295), + [anon_sym_BANGinstanceof] = ACTIONS(305), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_BANG_EQ] = ACTIONS(307), + [anon_sym_LT_EQ_GT] = ACTIONS(309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(309), + [anon_sym_EQ_TILDE] = ACTIONS(309), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(315), + [anon_sym_AMP_AMP] = ACTIONS(317), + [anon_sym_PIPE_PIPE] = ACTIONS(319), + [anon_sym_QMARK_COLON] = ACTIONS(321), + [anon_sym_STAR_STAR] = ACTIONS(323), + [anon_sym_true] = ACTIONS(287), + [anon_sym_false] = ACTIONS(287), + [anon_sym_ATinterface] = ACTIONS(289), + [anon_sym_interface] = ACTIONS(287), + [anon_sym_class] = ACTIONS(287), + [anon_sym_COMMA] = ACTIONS(325), + [anon_sym_LBRACE] = ACTIONS(289), + [anon_sym_RBRACE] = ACTIONS(289), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(287), + [anon_sym_this] = ACTIONS(287), + [anon_sym_null] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(289), + [anon_sym_do] = ACTIONS(287), + [anon_sym_while] = ACTIONS(287), + [anon_sym_for] = ACTIONS(287), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(289), + [aux_sym_number_literal_token1] = ACTIONS(287), + [aux_sym_number_literal_token2] = ACTIONS(289), + [aux_sym_number_literal_token3] = ACTIONS(289), + [aux_sym_number_literal_token4] = ACTIONS(287), + [aux_sym_number_literal_token5] = ACTIONS(289), + [anon_sym_return] = ACTIONS(287), + [anon_sym_SQUOTE] = ACTIONS(287), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR_SLASH] = ACTIONS(289), + [anon_sym_switch] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_try] = ACTIONS(287), + [anon_sym_catch] = ACTIONS(287), + [anon_sym_finally] = ACTIONS(287), + [anon_sym_int] = ACTIONS(287), + [anon_sym_boolean] = ACTIONS(287), + [anon_sym_char] = ACTIONS(287), + [anon_sym_short] = ACTIONS(287), + [anon_sym_long] = ACTIONS(287), + [anon_sym_float] = ACTIONS(287), + [anon_sym_double] = ACTIONS(287), + [anon_sym_void] = ACTIONS(287), + [anon_sym_public] = ACTIONS(287), + [anon_sym_protected] = ACTIONS(287), + [anon_sym_private] = ACTIONS(287), + [anon_sym_static] = ACTIONS(287), + [anon_sym_final] = ACTIONS(287), + [anon_sym_synchronized] = ACTIONS(287), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_new] = ACTIONS(287), + }, + [72] = { + [sym_comment] = STATE(72), + [sym_groovy_doc] = STATE(72), + [sym_identifier] = ACTIONS(81), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_DOT_AMP] = ACTIONS(83), + [anon_sym_DOT_AT] = ACTIONS(83), + [anon_sym_QMARK_DOT] = ACTIONS(83), + [anon_sym_STAR_DOT] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_STAR_COLON] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_import] = ACTIONS(81), + [anon_sym_as] = ACTIONS(81), + [anon_sym_package] = ACTIONS(81), + [anon_sym_AT] = ACTIONS(81), + [anon_sym_assert] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(83), + [anon_sym_GT_GT] = ACTIONS(81), + [anon_sym_GT_GT_GT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DOT_DOT_LT] = ACTIONS(83), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(83), + [anon_sym_LT_DOT_DOT] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_GT_EQ] = ACTIONS(83), + [anon_sym_in] = ACTIONS(81), + [anon_sym_BANGin] = ACTIONS(81), + [anon_sym_instanceof] = ACTIONS(81), + [anon_sym_BANGinstanceof] = ACTIONS(83), + [anon_sym_EQ_EQ] = ACTIONS(81), + [anon_sym_BANG_EQ] = ACTIONS(81), + [anon_sym_LT_EQ_GT] = ACTIONS(83), + [anon_sym_EQ_EQ_EQ] = ACTIONS(83), + [anon_sym_BANG_EQ_EQ] = ACTIONS(83), + [anon_sym_EQ_TILDE] = ACTIONS(83), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(83), + [anon_sym_PIPE] = ACTIONS(81), + [anon_sym_AMP_AMP] = ACTIONS(83), + [anon_sym_PIPE_PIPE] = ACTIONS(83), + [anon_sym_QMARK_COLON] = ACTIONS(83), + [anon_sym_STAR_STAR] = ACTIONS(83), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_ATinterface] = ACTIONS(83), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_RBRACE] = ACTIONS(83), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(81), + [anon_sym_this] = ACTIONS(81), + [anon_sym_null] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_do] = ACTIONS(81), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(81), + [anon_sym_if] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), + [aux_sym_number_literal_token1] = ACTIONS(81), + [aux_sym_number_literal_token2] = ACTIONS(83), + [aux_sym_number_literal_token3] = ACTIONS(83), + [aux_sym_number_literal_token4] = ACTIONS(81), + [aux_sym_number_literal_token5] = ACTIONS(83), + [anon_sym_return] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_SLASH] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_QMARK] = ACTIONS(81), + [anon_sym_try] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_finally] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_boolean] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_float] = ACTIONS(81), + [anon_sym_double] = ACTIONS(81), + [anon_sym_void] = ACTIONS(81), + [anon_sym_public] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_static] = ACTIONS(81), + [anon_sym_final] = ACTIONS(81), + [anon_sym_synchronized] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_new] = ACTIONS(81), + }, + [73] = { + [sym_comment] = STATE(73), + [sym_groovy_doc] = STATE(73), + [sym_identifier] = ACTIONS(99), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_DOT_AMP] = ACTIONS(93), + [anon_sym_DOT_AT] = ACTIONS(93), + [anon_sym_QMARK_DOT] = ACTIONS(93), + [anon_sym_STAR_DOT] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_STAR_COLON] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(97), + [anon_sym_import] = ACTIONS(99), + [anon_sym_as] = ACTIONS(99), + [anon_sym_package] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(93), + [anon_sym_SLASH] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(99), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_LT_LT] = ACTIONS(93), + [anon_sym_GT_GT] = ACTIONS(99), + [anon_sym_GT_GT_GT] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(99), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_in] = ACTIONS(99), + [anon_sym_BANGin] = ACTIONS(99), + [anon_sym_instanceof] = ACTIONS(99), + [anon_sym_BANGinstanceof] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_LT_EQ_GT] = ACTIONS(93), + [anon_sym_EQ_EQ_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ_EQ] = ACTIONS(93), + [anon_sym_EQ_TILDE] = ACTIONS(93), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(99), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(93), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_ATinterface] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(99), + [anon_sym_class] = ACTIONS(99), + [anon_sym_COMMA] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_RBRACE] = ACTIONS(93), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(99), + [anon_sym_this] = ACTIONS(99), + [anon_sym_null] = ACTIONS(99), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(99), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(99), + [anon_sym_if] = ACTIONS(99), + [anon_sym_else] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(101), + [aux_sym_number_literal_token1] = ACTIONS(99), + [aux_sym_number_literal_token2] = ACTIONS(93), + [aux_sym_number_literal_token3] = ACTIONS(93), + [aux_sym_number_literal_token4] = ACTIONS(99), + [aux_sym_number_literal_token5] = ACTIONS(93), + [anon_sym_return] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_SLASH] = ACTIONS(93), + [anon_sym_switch] = ACTIONS(99), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(99), + [anon_sym_finally] = ACTIONS(99), + [anon_sym_int] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_char] = ACTIONS(99), + [anon_sym_short] = ACTIONS(99), + [anon_sym_long] = ACTIONS(99), + [anon_sym_float] = ACTIONS(99), + [anon_sym_double] = ACTIONS(99), + [anon_sym_void] = ACTIONS(99), + [anon_sym_public] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_static] = ACTIONS(99), + [anon_sym_final] = ACTIONS(99), + [anon_sym_synchronized] = ACTIONS(99), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_new] = ACTIONS(99), + }, + [74] = { + [sym_comment] = STATE(74), + [sym_groovy_doc] = STATE(74), + [sym_identifier] = ACTIONS(85), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(87), + [anon_sym_DOT_AMP] = ACTIONS(87), + [anon_sym_DOT_AT] = ACTIONS(87), + [anon_sym_QMARK_DOT] = ACTIONS(87), + [anon_sym_STAR_DOT] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_STAR_COLON] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_import] = ACTIONS(85), + [anon_sym_as] = ACTIONS(85), + [anon_sym_package] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_assert] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(87), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(87), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(87), + [anon_sym_LT_DOT_DOT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(87), + [anon_sym_in] = ACTIONS(85), + [anon_sym_BANGin] = ACTIONS(85), + [anon_sym_instanceof] = ACTIONS(85), + [anon_sym_BANGinstanceof] = ACTIONS(87), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_LT_EQ_GT] = ACTIONS(87), + [anon_sym_EQ_EQ_EQ] = ACTIONS(87), + [anon_sym_BANG_EQ_EQ] = ACTIONS(87), + [anon_sym_EQ_TILDE] = ACTIONS(87), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_CARET] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(87), + [anon_sym_PIPE_PIPE] = ACTIONS(87), + [anon_sym_QMARK_COLON] = ACTIONS(87), + [anon_sym_STAR_STAR] = ACTIONS(87), + [anon_sym_true] = ACTIONS(85), + [anon_sym_false] = ACTIONS(85), + [anon_sym_ATinterface] = ACTIONS(87), + [anon_sym_interface] = ACTIONS(85), + [anon_sym_class] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(87), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_RBRACE] = ACTIONS(87), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(85), + [anon_sym_this] = ACTIONS(85), + [anon_sym_null] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_do] = ACTIONS(85), + [anon_sym_while] = ACTIONS(85), + [anon_sym_for] = ACTIONS(85), + [anon_sym_if] = ACTIONS(85), + [anon_sym_else] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [aux_sym_number_literal_token1] = ACTIONS(85), + [aux_sym_number_literal_token2] = ACTIONS(87), + [aux_sym_number_literal_token3] = ACTIONS(87), + [aux_sym_number_literal_token4] = ACTIONS(85), + [aux_sym_number_literal_token5] = ACTIONS(87), + [anon_sym_return] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_DOLLAR_SLASH] = ACTIONS(87), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_QMARK] = ACTIONS(85), + [anon_sym_try] = ACTIONS(85), + [anon_sym_catch] = ACTIONS(85), + [anon_sym_finally] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_boolean] = ACTIONS(85), + [anon_sym_char] = ACTIONS(85), + [anon_sym_short] = ACTIONS(85), + [anon_sym_long] = ACTIONS(85), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [anon_sym_void] = ACTIONS(85), + [anon_sym_public] = ACTIONS(85), + [anon_sym_protected] = ACTIONS(85), + [anon_sym_private] = ACTIONS(85), + [anon_sym_static] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_synchronized] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_new] = ACTIONS(85), + }, + [75] = { + [sym_comment] = STATE(75), + [sym_groovy_doc] = STATE(75), + [sym_identifier] = ACTIONS(329), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_DOT_AMP] = ACTIONS(331), + [anon_sym_DOT_AT] = ACTIONS(331), + [anon_sym_QMARK_DOT] = ACTIONS(331), + [anon_sym_STAR_DOT] = ACTIONS(331), + [anon_sym_STAR] = ACTIONS(329), + [anon_sym_STAR_COLON] = ACTIONS(331), + [anon_sym_import] = ACTIONS(329), + [anon_sym_as] = ACTIONS(329), + [anon_sym_package] = ACTIONS(329), + [anon_sym_AT] = ACTIONS(329), + [anon_sym_assert] = ACTIONS(329), + [anon_sym_PLUS_PLUS] = ACTIONS(331), + [anon_sym_DASH_DASH] = ACTIONS(331), + [anon_sym_PERCENT] = ACTIONS(331), + [anon_sym_SLASH] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(329), + [anon_sym_DASH] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(331), + [anon_sym_DOT_DOT] = ACTIONS(329), + [anon_sym_DOT_DOT_LT] = ACTIONS(331), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(331), + [anon_sym_LT_DOT_DOT] = ACTIONS(329), + [anon_sym_LT] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(329), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_GT_EQ] = ACTIONS(331), + [anon_sym_in] = ACTIONS(329), + [anon_sym_BANGin] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANGinstanceof] = ACTIONS(331), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_LT_EQ_GT] = ACTIONS(331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(331), + [anon_sym_EQ_TILDE] = ACTIONS(331), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(331), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(331), + [anon_sym_QMARK_COLON] = ACTIONS(331), + [anon_sym_STAR_STAR] = ACTIONS(331), + [anon_sym_true] = ACTIONS(329), + [anon_sym_false] = ACTIONS(329), + [anon_sym_ATinterface] = ACTIONS(331), + [anon_sym_interface] = ACTIONS(329), + [anon_sym_class] = ACTIONS(329), + [anon_sym_COMMA] = ACTIONS(331), + [anon_sym_LBRACE] = ACTIONS(331), + [anon_sym_RBRACE] = ACTIONS(331), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(329), + [anon_sym_this] = ACTIONS(329), + [anon_sym_null] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_do] = ACTIONS(329), + [anon_sym_while] = ACTIONS(329), + [anon_sym_for] = ACTIONS(329), + [anon_sym_if] = ACTIONS(329), + [anon_sym_else] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(331), + [anon_sym_COLON] = ACTIONS(333), + [aux_sym_number_literal_token1] = ACTIONS(329), + [aux_sym_number_literal_token2] = ACTIONS(331), + [aux_sym_number_literal_token3] = ACTIONS(331), + [aux_sym_number_literal_token4] = ACTIONS(329), + [aux_sym_number_literal_token5] = ACTIONS(331), + [anon_sym_return] = ACTIONS(329), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(329), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(331), + [anon_sym_DOLLAR_SLASH] = ACTIONS(331), + [anon_sym_switch] = ACTIONS(329), + [anon_sym_QMARK] = ACTIONS(329), + [anon_sym_try] = ACTIONS(329), + [anon_sym_catch] = ACTIONS(329), + [anon_sym_finally] = ACTIONS(329), + [anon_sym_int] = ACTIONS(329), + [anon_sym_boolean] = ACTIONS(329), + [anon_sym_char] = ACTIONS(329), + [anon_sym_short] = ACTIONS(329), + [anon_sym_long] = ACTIONS(329), + [anon_sym_float] = ACTIONS(329), + [anon_sym_double] = ACTIONS(329), + [anon_sym_void] = ACTIONS(329), + [anon_sym_public] = ACTIONS(329), + [anon_sym_protected] = ACTIONS(329), + [anon_sym_private] = ACTIONS(329), + [anon_sym_static] = ACTIONS(329), + [anon_sym_final] = ACTIONS(329), + [anon_sym_synchronized] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(331), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_new] = ACTIONS(329), + }, + [76] = { + [sym_comment] = STATE(76), + [sym_groovy_doc] = STATE(76), + [sym_identifier] = ACTIONS(97), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(101), + [anon_sym_DOT_AMP] = ACTIONS(101), + [anon_sym_DOT_AT] = ACTIONS(101), + [anon_sym_QMARK_DOT] = ACTIONS(101), + [anon_sym_STAR_DOT] = ACTIONS(101), + [anon_sym_STAR] = ACTIONS(97), + [anon_sym_STAR_COLON] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(97), + [anon_sym_import] = ACTIONS(97), + [anon_sym_as] = ACTIONS(97), + [anon_sym_package] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_assert] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(97), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(97), + [anon_sym_GT_GT_GT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(97), + [anon_sym_DOT_DOT_LT] = ACTIONS(101), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(101), + [anon_sym_LT_DOT_DOT] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(97), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(101), + [anon_sym_in] = ACTIONS(97), + [anon_sym_BANGin] = ACTIONS(97), + [anon_sym_instanceof] = ACTIONS(97), + [anon_sym_BANGinstanceof] = ACTIONS(101), + [anon_sym_EQ_EQ] = ACTIONS(97), + [anon_sym_BANG_EQ] = ACTIONS(97), + [anon_sym_LT_EQ_GT] = ACTIONS(101), + [anon_sym_EQ_EQ_EQ] = ACTIONS(101), + [anon_sym_BANG_EQ_EQ] = ACTIONS(101), + [anon_sym_EQ_TILDE] = ACTIONS(101), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(97), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_PIPE] = ACTIONS(97), + [anon_sym_AMP_AMP] = ACTIONS(101), + [anon_sym_PIPE_PIPE] = ACTIONS(101), + [anon_sym_QMARK_COLON] = ACTIONS(101), + [anon_sym_STAR_STAR] = ACTIONS(101), + [anon_sym_true] = ACTIONS(97), + [anon_sym_false] = ACTIONS(97), + [anon_sym_ATinterface] = ACTIONS(101), + [anon_sym_interface] = ACTIONS(97), + [anon_sym_class] = ACTIONS(97), + [anon_sym_COMMA] = ACTIONS(101), + [anon_sym_LBRACE] = ACTIONS(101), + [anon_sym_RBRACE] = ACTIONS(101), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(97), + [anon_sym_this] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(97), + [anon_sym_while] = ACTIONS(97), + [anon_sym_for] = ACTIONS(97), + [anon_sym_if] = ACTIONS(97), + [anon_sym_else] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(101), + [aux_sym_number_literal_token1] = ACTIONS(97), + [aux_sym_number_literal_token2] = ACTIONS(101), + [aux_sym_number_literal_token3] = ACTIONS(101), + [aux_sym_number_literal_token4] = ACTIONS(97), + [aux_sym_number_literal_token5] = ACTIONS(101), + [anon_sym_return] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(101), + [anon_sym_DOLLAR_SLASH] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(97), + [anon_sym_try] = ACTIONS(97), + [anon_sym_catch] = ACTIONS(97), + [anon_sym_finally] = ACTIONS(97), + [anon_sym_int] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_char] = ACTIONS(97), + [anon_sym_short] = ACTIONS(97), + [anon_sym_long] = ACTIONS(97), + [anon_sym_float] = ACTIONS(97), + [anon_sym_double] = ACTIONS(97), + [anon_sym_void] = ACTIONS(97), + [anon_sym_public] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_static] = ACTIONS(97), + [anon_sym_final] = ACTIONS(97), + [anon_sym_synchronized] = ACTIONS(97), + [anon_sym_TILDE] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_new] = ACTIONS(97), + }, + [77] = { + [sym_comment] = STATE(77), + [sym_groovy_doc] = STATE(77), + [sym_identifier] = ACTIONS(69), + [anon_sym_break] = ACTIONS(69), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_SEMI] = ACTIONS(71), + [anon_sym_DOT_AMP] = ACTIONS(71), + [anon_sym_DOT_AT] = ACTIONS(71), + [anon_sym_QMARK_DOT] = ACTIONS(71), + [anon_sym_STAR_DOT] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(69), + [anon_sym_STAR_COLON] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(69), + [anon_sym_import] = ACTIONS(69), + [anon_sym_as] = ACTIONS(69), + [anon_sym_package] = ACTIONS(69), + [anon_sym_AT] = ACTIONS(69), + [anon_sym_assert] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_LT_LT] = ACTIONS(71), + [anon_sym_GT_GT] = ACTIONS(69), + [anon_sym_GT_GT_GT] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_DOT_DOT_LT] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(71), + [anon_sym_LT_DOT_DOT] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(69), + [anon_sym_LT_EQ] = ACTIONS(69), + [anon_sym_GT] = ACTIONS(69), + [anon_sym_GT_EQ] = ACTIONS(71), + [anon_sym_in] = ACTIONS(69), + [anon_sym_BANGin] = ACTIONS(69), + [anon_sym_instanceof] = ACTIONS(69), + [anon_sym_BANGinstanceof] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(69), + [anon_sym_BANG_EQ] = ACTIONS(69), + [anon_sym_LT_EQ_GT] = ACTIONS(71), + [anon_sym_EQ_EQ_EQ] = ACTIONS(71), + [anon_sym_BANG_EQ_EQ] = ACTIONS(71), + [anon_sym_EQ_TILDE] = ACTIONS(71), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(69), + [anon_sym_CARET] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(69), + [anon_sym_AMP_AMP] = ACTIONS(71), + [anon_sym_PIPE_PIPE] = ACTIONS(71), + [anon_sym_QMARK_COLON] = ACTIONS(71), + [anon_sym_STAR_STAR] = ACTIONS(71), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(69), + [anon_sym_class] = ACTIONS(69), + [anon_sym_COMMA] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(71), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(69), + [anon_sym_this] = ACTIONS(69), + [anon_sym_null] = ACTIONS(69), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_do] = ACTIONS(69), + [anon_sym_while] = ACTIONS(69), + [anon_sym_for] = ACTIONS(69), + [anon_sym_if] = ACTIONS(69), + [anon_sym_else] = ACTIONS(69), + [anon_sym_LBRACK] = ACTIONS(71), + [aux_sym_number_literal_token1] = ACTIONS(69), + [aux_sym_number_literal_token2] = ACTIONS(71), + [aux_sym_number_literal_token3] = ACTIONS(71), + [aux_sym_number_literal_token4] = ACTIONS(69), + [aux_sym_number_literal_token5] = ACTIONS(71), + [anon_sym_return] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_SLASH] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_QMARK] = ACTIONS(69), + [anon_sym_try] = ACTIONS(69), + [anon_sym_catch] = ACTIONS(69), + [anon_sym_finally] = ACTIONS(69), + [anon_sym_int] = ACTIONS(69), + [anon_sym_boolean] = ACTIONS(69), + [anon_sym_char] = ACTIONS(69), + [anon_sym_short] = ACTIONS(69), + [anon_sym_long] = ACTIONS(69), + [anon_sym_float] = ACTIONS(69), + [anon_sym_double] = ACTIONS(69), + [anon_sym_void] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_protected] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_final] = ACTIONS(69), + [anon_sym_synchronized] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_new] = ACTIONS(69), + }, + [78] = { + [sym_comment] = STATE(78), + [sym_groovy_doc] = STATE(78), + [sym_identifier] = ACTIONS(335), + [anon_sym_break] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(335), + [anon_sym_SEMI] = ACTIONS(337), + [anon_sym_DOT_AMP] = ACTIONS(337), + [anon_sym_DOT_AT] = ACTIONS(337), + [anon_sym_QMARK_DOT] = ACTIONS(337), + [anon_sym_STAR_DOT] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(335), + [anon_sym_STAR_COLON] = ACTIONS(337), + [anon_sym_DOT] = ACTIONS(335), + [anon_sym_import] = ACTIONS(335), + [anon_sym_as] = ACTIONS(335), + [anon_sym_package] = ACTIONS(335), + [anon_sym_AT] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(337), + [anon_sym_DASH_DASH] = ACTIONS(337), + [anon_sym_PERCENT] = ACTIONS(337), + [anon_sym_SLASH] = ACTIONS(335), + [anon_sym_PLUS] = ACTIONS(335), + [anon_sym_DASH] = ACTIONS(335), + [anon_sym_LT_LT] = ACTIONS(337), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_GT_GT_GT] = ACTIONS(337), + [anon_sym_DOT_DOT] = ACTIONS(335), + [anon_sym_DOT_DOT_LT] = ACTIONS(337), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(337), + [anon_sym_LT_DOT_DOT] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_LT_EQ] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(335), + [anon_sym_GT_EQ] = ACTIONS(337), + [anon_sym_in] = ACTIONS(335), + [anon_sym_BANGin] = ACTIONS(335), + [anon_sym_instanceof] = ACTIONS(335), + [anon_sym_BANGinstanceof] = ACTIONS(337), + [anon_sym_EQ_EQ] = ACTIONS(335), + [anon_sym_BANG_EQ] = ACTIONS(335), + [anon_sym_LT_EQ_GT] = ACTIONS(337), + [anon_sym_EQ_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ_EQ] = ACTIONS(337), + [anon_sym_EQ_TILDE] = ACTIONS(337), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(335), + [anon_sym_CARET] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(335), + [anon_sym_AMP_AMP] = ACTIONS(337), + [anon_sym_PIPE_PIPE] = ACTIONS(337), + [anon_sym_QMARK_COLON] = ACTIONS(337), + [anon_sym_STAR_STAR] = ACTIONS(337), + [anon_sym_true] = ACTIONS(335), + [anon_sym_false] = ACTIONS(335), + [anon_sym_ATinterface] = ACTIONS(337), + [anon_sym_interface] = ACTIONS(335), + [anon_sym_class] = ACTIONS(335), + [anon_sym_COMMA] = ACTIONS(337), + [anon_sym_LBRACE] = ACTIONS(337), + [anon_sym_RBRACE] = ACTIONS(337), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(335), + [anon_sym_this] = ACTIONS(335), + [anon_sym_null] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_do] = ACTIONS(335), + [anon_sym_while] = ACTIONS(335), + [anon_sym_for] = ACTIONS(335), + [anon_sym_if] = ACTIONS(335), + [anon_sym_else] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [aux_sym_number_literal_token1] = ACTIONS(335), + [aux_sym_number_literal_token2] = ACTIONS(337), + [aux_sym_number_literal_token3] = ACTIONS(337), + [aux_sym_number_literal_token4] = ACTIONS(335), + [aux_sym_number_literal_token5] = ACTIONS(337), + [anon_sym_return] = ACTIONS(335), + [anon_sym_SQUOTE] = ACTIONS(335), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(337), + [anon_sym_DQUOTE] = ACTIONS(335), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(337), + [anon_sym_DOLLAR_SLASH] = ACTIONS(337), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_QMARK] = ACTIONS(335), + [anon_sym_try] = ACTIONS(335), + [anon_sym_catch] = ACTIONS(335), + [anon_sym_finally] = ACTIONS(335), + [anon_sym_int] = ACTIONS(335), + [anon_sym_boolean] = ACTIONS(335), + [anon_sym_char] = ACTIONS(335), + [anon_sym_short] = ACTIONS(335), + [anon_sym_long] = ACTIONS(335), + [anon_sym_float] = ACTIONS(335), + [anon_sym_double] = ACTIONS(335), + [anon_sym_void] = ACTIONS(335), + [anon_sym_public] = ACTIONS(335), + [anon_sym_protected] = ACTIONS(335), + [anon_sym_private] = ACTIONS(335), + [anon_sym_static] = ACTIONS(335), + [anon_sym_final] = ACTIONS(335), + [anon_sym_synchronized] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(337), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_new] = ACTIONS(335), + }, + [79] = { + [sym_comment] = STATE(79), + [sym_groovy_doc] = STATE(79), + [sym_identifier] = ACTIONS(339), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(341), + [anon_sym_DOT_AMP] = ACTIONS(341), + [anon_sym_DOT_AT] = ACTIONS(341), + [anon_sym_QMARK_DOT] = ACTIONS(341), + [anon_sym_STAR_DOT] = ACTIONS(341), + [anon_sym_STAR] = ACTIONS(339), + [anon_sym_STAR_COLON] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(339), + [anon_sym_import] = ACTIONS(339), + [anon_sym_as] = ACTIONS(339), + [anon_sym_package] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(339), + [anon_sym_assert] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_PERCENT] = ACTIONS(341), + [anon_sym_SLASH] = ACTIONS(339), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_GT_GT_GT] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(339), + [anon_sym_DOT_DOT_LT] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(341), + [anon_sym_LT_DOT_DOT] = ACTIONS(339), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_in] = ACTIONS(339), + [anon_sym_BANGin] = ACTIONS(339), + [anon_sym_instanceof] = ACTIONS(339), + [anon_sym_BANGinstanceof] = ACTIONS(341), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_LT_EQ_GT] = ACTIONS(341), + [anon_sym_EQ_EQ_EQ] = ACTIONS(341), + [anon_sym_BANG_EQ_EQ] = ACTIONS(341), + [anon_sym_EQ_TILDE] = ACTIONS(341), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(339), + [anon_sym_CARET] = ACTIONS(341), + [anon_sym_PIPE] = ACTIONS(339), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_QMARK_COLON] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(341), + [anon_sym_true] = ACTIONS(339), + [anon_sym_false] = ACTIONS(339), + [anon_sym_ATinterface] = ACTIONS(341), + [anon_sym_interface] = ACTIONS(339), + [anon_sym_class] = ACTIONS(339), + [anon_sym_COMMA] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(341), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(339), + [anon_sym_this] = ACTIONS(339), + [anon_sym_null] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_do] = ACTIONS(339), + [anon_sym_while] = ACTIONS(339), + [anon_sym_for] = ACTIONS(339), + [anon_sym_if] = ACTIONS(339), + [anon_sym_else] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(341), + [aux_sym_number_literal_token1] = ACTIONS(339), + [aux_sym_number_literal_token2] = ACTIONS(341), + [aux_sym_number_literal_token3] = ACTIONS(341), + [aux_sym_number_literal_token4] = ACTIONS(339), + [aux_sym_number_literal_token5] = ACTIONS(341), + [anon_sym_return] = ACTIONS(339), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(341), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(341), + [anon_sym_DOLLAR_SLASH] = ACTIONS(341), + [anon_sym_switch] = ACTIONS(339), + [anon_sym_QMARK] = ACTIONS(339), + [anon_sym_try] = ACTIONS(339), + [anon_sym_catch] = ACTIONS(339), + [anon_sym_finally] = ACTIONS(339), + [anon_sym_int] = ACTIONS(339), + [anon_sym_boolean] = ACTIONS(339), + [anon_sym_char] = ACTIONS(339), + [anon_sym_short] = ACTIONS(339), + [anon_sym_long] = ACTIONS(339), + [anon_sym_float] = ACTIONS(339), + [anon_sym_double] = ACTIONS(339), + [anon_sym_void] = ACTIONS(339), + [anon_sym_public] = ACTIONS(339), + [anon_sym_protected] = ACTIONS(339), + [anon_sym_private] = ACTIONS(339), + [anon_sym_static] = ACTIONS(339), + [anon_sym_final] = ACTIONS(339), + [anon_sym_synchronized] = ACTIONS(339), + [anon_sym_TILDE] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_new] = ACTIONS(339), + }, + [80] = { + [sym_comment] = STATE(80), + [sym_groovy_doc] = STATE(80), + [sym_identifier] = ACTIONS(343), + [anon_sym_break] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_DOT_AMP] = ACTIONS(345), + [anon_sym_DOT_AT] = ACTIONS(345), + [anon_sym_QMARK_DOT] = ACTIONS(345), + [anon_sym_STAR_DOT] = ACTIONS(345), + [anon_sym_STAR] = ACTIONS(343), + [anon_sym_STAR_COLON] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(343), + [anon_sym_import] = ACTIONS(343), + [anon_sym_as] = ACTIONS(343), + [anon_sym_package] = ACTIONS(343), + [anon_sym_AT] = ACTIONS(343), + [anon_sym_assert] = ACTIONS(343), + [anon_sym_PLUS_PLUS] = ACTIONS(345), + [anon_sym_DASH_DASH] = ACTIONS(345), + [anon_sym_PERCENT] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(343), + [anon_sym_DASH] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_GT_GT_GT] = ACTIONS(345), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_DOT_DOT_LT] = ACTIONS(345), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(345), + [anon_sym_LT_DOT_DOT] = ACTIONS(343), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_EQ] = ACTIONS(345), + [anon_sym_in] = ACTIONS(343), + [anon_sym_BANGin] = ACTIONS(343), + [anon_sym_instanceof] = ACTIONS(343), + [anon_sym_BANGinstanceof] = ACTIONS(345), + [anon_sym_EQ_EQ] = ACTIONS(343), + [anon_sym_BANG_EQ] = ACTIONS(343), + [anon_sym_LT_EQ_GT] = ACTIONS(345), + [anon_sym_EQ_EQ_EQ] = ACTIONS(345), + [anon_sym_BANG_EQ_EQ] = ACTIONS(345), + [anon_sym_EQ_TILDE] = ACTIONS(345), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(345), + [anon_sym_AMP] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(345), + [anon_sym_PIPE] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(345), + [anon_sym_PIPE_PIPE] = ACTIONS(345), + [anon_sym_QMARK_COLON] = ACTIONS(345), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_ATinterface] = ACTIONS(345), + [anon_sym_interface] = ACTIONS(343), + [anon_sym_class] = ACTIONS(343), + [anon_sym_COMMA] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(345), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(343), + [anon_sym_this] = ACTIONS(343), + [anon_sym_null] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_do] = ACTIONS(343), + [anon_sym_while] = ACTIONS(343), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(343), + [anon_sym_else] = ACTIONS(343), + [anon_sym_LBRACK] = ACTIONS(345), + [aux_sym_number_literal_token1] = ACTIONS(343), + [aux_sym_number_literal_token2] = ACTIONS(345), + [aux_sym_number_literal_token3] = ACTIONS(345), + [aux_sym_number_literal_token4] = ACTIONS(343), + [aux_sym_number_literal_token5] = ACTIONS(345), + [anon_sym_return] = ACTIONS(343), + [anon_sym_SQUOTE] = ACTIONS(343), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_SLASH] = ACTIONS(345), + [anon_sym_switch] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(343), + [anon_sym_try] = ACTIONS(343), + [anon_sym_catch] = ACTIONS(343), + [anon_sym_finally] = ACTIONS(343), + [anon_sym_int] = ACTIONS(343), + [anon_sym_boolean] = ACTIONS(343), + [anon_sym_char] = ACTIONS(343), + [anon_sym_short] = ACTIONS(343), + [anon_sym_long] = ACTIONS(343), + [anon_sym_float] = ACTIONS(343), + [anon_sym_double] = ACTIONS(343), + [anon_sym_void] = ACTIONS(343), + [anon_sym_public] = ACTIONS(343), + [anon_sym_protected] = ACTIONS(343), + [anon_sym_private] = ACTIONS(343), + [anon_sym_static] = ACTIONS(343), + [anon_sym_final] = ACTIONS(343), + [anon_sym_synchronized] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_new] = ACTIONS(343), + }, + [81] = { + [sym_comment] = STATE(81), + [sym_groovy_doc] = STATE(81), + [sym_identifier] = ACTIONS(77), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_DOT_AMP] = ACTIONS(79), + [anon_sym_DOT_AT] = ACTIONS(79), + [anon_sym_QMARK_DOT] = ACTIONS(79), + [anon_sym_STAR_DOT] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(77), + [anon_sym_STAR_COLON] = ACTIONS(79), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_import] = ACTIONS(77), + [anon_sym_as] = ACTIONS(77), + [anon_sym_package] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_assert] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_LT_LT] = ACTIONS(79), + [anon_sym_GT_GT] = ACTIONS(77), + [anon_sym_GT_GT_GT] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(77), + [anon_sym_DOT_DOT_LT] = ACTIONS(79), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(79), + [anon_sym_LT_DOT_DOT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(79), + [anon_sym_in] = ACTIONS(77), + [anon_sym_BANGin] = ACTIONS(77), + [anon_sym_instanceof] = ACTIONS(77), + [anon_sym_BANGinstanceof] = ACTIONS(79), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_LT_EQ_GT] = ACTIONS(79), + [anon_sym_EQ_EQ_EQ] = ACTIONS(79), + [anon_sym_BANG_EQ_EQ] = ACTIONS(79), + [anon_sym_EQ_TILDE] = ACTIONS(79), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_CARET] = ACTIONS(79), + [anon_sym_PIPE] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(79), + [anon_sym_PIPE_PIPE] = ACTIONS(79), + [anon_sym_QMARK_COLON] = ACTIONS(79), + [anon_sym_STAR_STAR] = ACTIONS(79), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_class] = ACTIONS(77), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_RBRACE] = ACTIONS(79), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(77), + [anon_sym_this] = ACTIONS(77), + [anon_sym_null] = ACTIONS(77), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_do] = ACTIONS(77), + [anon_sym_while] = ACTIONS(77), + [anon_sym_for] = ACTIONS(77), + [anon_sym_if] = ACTIONS(77), + [anon_sym_else] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(79), + [aux_sym_number_literal_token1] = ACTIONS(77), + [aux_sym_number_literal_token2] = ACTIONS(79), + [aux_sym_number_literal_token3] = ACTIONS(79), + [aux_sym_number_literal_token4] = ACTIONS(77), + [aux_sym_number_literal_token5] = ACTIONS(79), + [anon_sym_return] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(77), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR_SLASH] = ACTIONS(79), + [anon_sym_switch] = ACTIONS(77), + [anon_sym_QMARK] = ACTIONS(77), + [anon_sym_try] = ACTIONS(77), + [anon_sym_catch] = ACTIONS(77), + [anon_sym_finally] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_boolean] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [anon_sym_void] = ACTIONS(77), + [anon_sym_public] = ACTIONS(77), + [anon_sym_protected] = ACTIONS(77), + [anon_sym_private] = ACTIONS(77), + [anon_sym_static] = ACTIONS(77), + [anon_sym_final] = ACTIONS(77), + [anon_sym_synchronized] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_new] = ACTIONS(77), + }, + [82] = { + [sym_comment] = STATE(82), + [sym_groovy_doc] = STATE(82), + [sym_argument_list] = STATE(88), + [sym_identifier] = ACTIONS(259), + [anon_sym_break] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(259), + [anon_sym_SEMI] = ACTIONS(261), + [anon_sym_DOT_AMP] = ACTIONS(261), + [anon_sym_DOT_AT] = ACTIONS(261), + [anon_sym_QMARK_DOT] = ACTIONS(261), + [anon_sym_STAR_DOT] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(259), + [anon_sym_STAR_COLON] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(347), + [anon_sym_import] = ACTIONS(259), + [anon_sym_as] = ACTIONS(259), + [anon_sym_package] = ACTIONS(259), + [anon_sym_AT] = ACTIONS(259), + [anon_sym_assert] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(261), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_GT_GT_GT] = ACTIONS(261), + [anon_sym_DOT_DOT] = ACTIONS(259), + [anon_sym_DOT_DOT_LT] = ACTIONS(261), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(261), + [anon_sym_LT_DOT_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(259), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_GT_EQ] = ACTIONS(261), + [anon_sym_in] = ACTIONS(259), + [anon_sym_BANGin] = ACTIONS(259), + [anon_sym_instanceof] = ACTIONS(259), + [anon_sym_BANGinstanceof] = ACTIONS(261), + [anon_sym_EQ_EQ] = ACTIONS(259), + [anon_sym_BANG_EQ] = ACTIONS(259), + [anon_sym_LT_EQ_GT] = ACTIONS(261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(261), + [anon_sym_BANG_EQ_EQ] = ACTIONS(261), + [anon_sym_EQ_TILDE] = ACTIONS(261), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_CARET] = ACTIONS(261), + [anon_sym_PIPE] = ACTIONS(259), + [anon_sym_AMP_AMP] = ACTIONS(261), + [anon_sym_PIPE_PIPE] = ACTIONS(261), + [anon_sym_QMARK_COLON] = ACTIONS(261), + [anon_sym_STAR_STAR] = ACTIONS(261), + [anon_sym_true] = ACTIONS(259), + [anon_sym_false] = ACTIONS(259), + [anon_sym_ATinterface] = ACTIONS(261), + [anon_sym_interface] = ACTIONS(259), + [anon_sym_class] = ACTIONS(259), + [anon_sym_COMMA] = ACTIONS(261), + [anon_sym_LBRACE] = ACTIONS(261), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_RBRACE] = ACTIONS(261), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(259), + [anon_sym_this] = ACTIONS(259), + [anon_sym_null] = ACTIONS(259), + [anon_sym_LPAREN] = ACTIONS(261), + [anon_sym_do] = ACTIONS(259), + [anon_sym_while] = ACTIONS(259), + [anon_sym_for] = ACTIONS(259), + [anon_sym_if] = ACTIONS(259), + [anon_sym_else] = ACTIONS(259), + [anon_sym_LBRACK] = ACTIONS(349), + [aux_sym_number_literal_token1] = ACTIONS(259), + [aux_sym_number_literal_token2] = ACTIONS(261), + [aux_sym_number_literal_token3] = ACTIONS(261), + [aux_sym_number_literal_token4] = ACTIONS(259), + [aux_sym_number_literal_token5] = ACTIONS(261), + [anon_sym_return] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(261), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_SLASH] = ACTIONS(261), + [anon_sym_switch] = ACTIONS(259), + [anon_sym_QMARK] = ACTIONS(259), + [anon_sym_try] = ACTIONS(259), + [anon_sym_int] = ACTIONS(259), + [anon_sym_boolean] = ACTIONS(259), + [anon_sym_char] = ACTIONS(259), + [anon_sym_short] = ACTIONS(259), + [anon_sym_long] = ACTIONS(259), + [anon_sym_float] = ACTIONS(259), + [anon_sym_double] = ACTIONS(259), + [anon_sym_void] = ACTIONS(259), + [anon_sym_public] = ACTIONS(259), + [anon_sym_protected] = ACTIONS(259), + [anon_sym_private] = ACTIONS(259), + [anon_sym_static] = ACTIONS(259), + [anon_sym_final] = ACTIONS(259), + [anon_sym_synchronized] = ACTIONS(259), + [anon_sym_TILDE] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(259), + [anon_sym_new] = ACTIONS(259), + }, + [83] = { + [sym_comment] = STATE(83), + [sym_groovy_doc] = STATE(83), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(291), + [anon_sym_DOT_AT] = ACTIONS(291), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_STAR_DOT] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_STAR_COLON] = ACTIONS(353), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LT_LT] = ACTIONS(353), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_GT_GT_GT] = ACTIONS(353), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(323), + [anon_sym_true] = ACTIONS(351), + [anon_sym_false] = ACTIONS(351), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_this] = ACTIONS(351), + [anon_sym_null] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(353), + [aux_sym_number_literal_token1] = ACTIONS(351), + [aux_sym_number_literal_token2] = ACTIONS(353), + [aux_sym_number_literal_token3] = ACTIONS(353), + [aux_sym_number_literal_token4] = ACTIONS(351), + [aux_sym_number_literal_token5] = ACTIONS(353), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_new] = ACTIONS(351), + }, + [84] = { + [sym_comment] = STATE(84), + [sym_groovy_doc] = STATE(84), + [sym_identifier] = ACTIONS(355), + [anon_sym_break] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_DOT_AMP] = ACTIONS(357), + [anon_sym_DOT_AT] = ACTIONS(357), + [anon_sym_QMARK_DOT] = ACTIONS(357), + [anon_sym_STAR_DOT] = ACTIONS(357), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_STAR_COLON] = ACTIONS(357), + [anon_sym_import] = ACTIONS(355), + [anon_sym_as] = ACTIONS(355), + [anon_sym_package] = ACTIONS(355), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_assert] = ACTIONS(355), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(355), + [anon_sym_PLUS] = ACTIONS(355), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_LT_LT] = ACTIONS(357), + [anon_sym_GT_GT] = ACTIONS(355), + [anon_sym_GT_GT_GT] = ACTIONS(357), + [anon_sym_DOT_DOT] = ACTIONS(355), + [anon_sym_DOT_DOT_LT] = ACTIONS(357), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(357), + [anon_sym_LT_DOT_DOT] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_LT_EQ] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_EQ] = ACTIONS(357), + [anon_sym_in] = ACTIONS(355), + [anon_sym_BANGin] = ACTIONS(355), + [anon_sym_instanceof] = ACTIONS(355), + [anon_sym_BANGinstanceof] = ACTIONS(357), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_BANG_EQ] = ACTIONS(355), + [anon_sym_LT_EQ_GT] = ACTIONS(357), + [anon_sym_EQ_EQ_EQ] = ACTIONS(357), + [anon_sym_BANG_EQ_EQ] = ACTIONS(357), + [anon_sym_EQ_TILDE] = ACTIONS(357), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_CARET] = ACTIONS(357), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(357), + [anon_sym_PIPE_PIPE] = ACTIONS(357), + [anon_sym_QMARK_COLON] = ACTIONS(357), + [anon_sym_STAR_STAR] = ACTIONS(357), + [anon_sym_true] = ACTIONS(355), + [anon_sym_false] = ACTIONS(355), + [anon_sym_ATinterface] = ACTIONS(357), + [anon_sym_interface] = ACTIONS(355), + [anon_sym_class] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_RBRACE] = ACTIONS(357), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(355), + [anon_sym_this] = ACTIONS(355), + [anon_sym_null] = ACTIONS(355), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_do] = ACTIONS(355), + [anon_sym_while] = ACTIONS(355), + [anon_sym_for] = ACTIONS(355), + [anon_sym_if] = ACTIONS(355), + [anon_sym_else] = ACTIONS(355), + [anon_sym_LBRACK] = ACTIONS(357), + [aux_sym_number_literal_token1] = ACTIONS(355), + [aux_sym_number_literal_token2] = ACTIONS(357), + [aux_sym_number_literal_token3] = ACTIONS(357), + [aux_sym_number_literal_token4] = ACTIONS(355), + [aux_sym_number_literal_token5] = ACTIONS(357), + [anon_sym_return] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(355), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(357), + [anon_sym_DOLLAR_SLASH] = ACTIONS(357), + [anon_sym_switch] = ACTIONS(355), + [anon_sym_QMARK] = ACTIONS(355), + [anon_sym_try] = ACTIONS(355), + [anon_sym_catch] = ACTIONS(355), + [anon_sym_finally] = ACTIONS(355), + [anon_sym_int] = ACTIONS(355), + [anon_sym_boolean] = ACTIONS(355), + [anon_sym_char] = ACTIONS(355), + [anon_sym_short] = ACTIONS(355), + [anon_sym_long] = ACTIONS(355), + [anon_sym_float] = ACTIONS(355), + [anon_sym_double] = ACTIONS(355), + [anon_sym_void] = ACTIONS(355), + [anon_sym_public] = ACTIONS(355), + [anon_sym_protected] = ACTIONS(355), + [anon_sym_private] = ACTIONS(355), + [anon_sym_static] = ACTIONS(355), + [anon_sym_final] = ACTIONS(355), + [anon_sym_synchronized] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_new] = ACTIONS(355), + }, + [85] = { + [sym_comment] = STATE(85), + [sym_groovy_doc] = STATE(85), + [sym_identifier] = ACTIONS(359), + [anon_sym_break] = ACTIONS(359), + [anon_sym_continue] = ACTIONS(359), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym_DOT_AMP] = ACTIONS(361), + [anon_sym_DOT_AT] = ACTIONS(361), + [anon_sym_QMARK_DOT] = ACTIONS(361), + [anon_sym_STAR_DOT] = ACTIONS(361), + [anon_sym_STAR] = ACTIONS(359), + [anon_sym_STAR_COLON] = ACTIONS(361), + [anon_sym_import] = ACTIONS(359), + [anon_sym_as] = ACTIONS(359), + [anon_sym_package] = ACTIONS(359), + [anon_sym_AT] = ACTIONS(359), + [anon_sym_assert] = ACTIONS(359), + [anon_sym_PLUS_PLUS] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(361), + [anon_sym_PERCENT] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(359), + [anon_sym_DASH] = ACTIONS(359), + [anon_sym_LT_LT] = ACTIONS(361), + [anon_sym_GT_GT] = ACTIONS(359), + [anon_sym_GT_GT_GT] = ACTIONS(361), + [anon_sym_DOT_DOT] = ACTIONS(359), + [anon_sym_DOT_DOT_LT] = ACTIONS(361), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(361), + [anon_sym_LT_DOT_DOT] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(359), + [anon_sym_LT_EQ] = ACTIONS(359), + [anon_sym_GT] = ACTIONS(359), + [anon_sym_GT_EQ] = ACTIONS(361), + [anon_sym_in] = ACTIONS(359), + [anon_sym_BANGin] = ACTIONS(359), + [anon_sym_instanceof] = ACTIONS(359), + [anon_sym_BANGinstanceof] = ACTIONS(361), + [anon_sym_EQ_EQ] = ACTIONS(359), + [anon_sym_BANG_EQ] = ACTIONS(359), + [anon_sym_LT_EQ_GT] = ACTIONS(361), + [anon_sym_EQ_EQ_EQ] = ACTIONS(361), + [anon_sym_BANG_EQ_EQ] = ACTIONS(361), + [anon_sym_EQ_TILDE] = ACTIONS(361), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(361), + [anon_sym_AMP] = ACTIONS(359), + [anon_sym_CARET] = ACTIONS(361), + [anon_sym_PIPE] = ACTIONS(359), + [anon_sym_AMP_AMP] = ACTIONS(361), + [anon_sym_PIPE_PIPE] = ACTIONS(361), + [anon_sym_QMARK_COLON] = ACTIONS(361), + [anon_sym_STAR_STAR] = ACTIONS(361), + [anon_sym_true] = ACTIONS(359), + [anon_sym_false] = ACTIONS(359), + [anon_sym_ATinterface] = ACTIONS(361), + [anon_sym_interface] = ACTIONS(359), + [anon_sym_class] = ACTIONS(359), + [anon_sym_COMMA] = ACTIONS(361), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_RBRACE] = ACTIONS(361), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(359), + [anon_sym_this] = ACTIONS(359), + [anon_sym_null] = ACTIONS(359), + [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_do] = ACTIONS(359), + [anon_sym_while] = ACTIONS(359), + [anon_sym_for] = ACTIONS(359), + [anon_sym_if] = ACTIONS(359), + [anon_sym_else] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(361), + [aux_sym_number_literal_token1] = ACTIONS(359), + [aux_sym_number_literal_token2] = ACTIONS(361), + [aux_sym_number_literal_token3] = ACTIONS(361), + [aux_sym_number_literal_token4] = ACTIONS(359), + [aux_sym_number_literal_token5] = ACTIONS(361), + [anon_sym_return] = ACTIONS(359), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(361), + [anon_sym_DOLLAR_SLASH] = ACTIONS(361), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_QMARK] = ACTIONS(359), + [anon_sym_try] = ACTIONS(359), + [anon_sym_catch] = ACTIONS(359), + [anon_sym_finally] = ACTIONS(359), + [anon_sym_int] = ACTIONS(359), + [anon_sym_boolean] = ACTIONS(359), + [anon_sym_char] = ACTIONS(359), + [anon_sym_short] = ACTIONS(359), + [anon_sym_long] = ACTIONS(359), + [anon_sym_float] = ACTIONS(359), + [anon_sym_double] = ACTIONS(359), + [anon_sym_void] = ACTIONS(359), + [anon_sym_public] = ACTIONS(359), + [anon_sym_protected] = ACTIONS(359), + [anon_sym_private] = ACTIONS(359), + [anon_sym_static] = ACTIONS(359), + [anon_sym_final] = ACTIONS(359), + [anon_sym_synchronized] = ACTIONS(359), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_new] = ACTIONS(359), + }, + [86] = { + [sym_comment] = STATE(86), + [sym_groovy_doc] = STATE(86), + [sym_identifier] = ACTIONS(363), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(365), + [anon_sym_DOT_AMP] = ACTIONS(365), + [anon_sym_DOT_AT] = ACTIONS(365), + [anon_sym_QMARK_DOT] = ACTIONS(365), + [anon_sym_STAR_DOT] = ACTIONS(365), + [anon_sym_STAR] = ACTIONS(363), + [anon_sym_STAR_COLON] = ACTIONS(365), + [anon_sym_import] = ACTIONS(363), + [anon_sym_as] = ACTIONS(363), + [anon_sym_package] = ACTIONS(363), + [anon_sym_AT] = ACTIONS(363), + [anon_sym_assert] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(365), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(363), + [anon_sym_DASH] = ACTIONS(363), + [anon_sym_LT_LT] = ACTIONS(365), + [anon_sym_GT_GT] = ACTIONS(363), + [anon_sym_GT_GT_GT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(363), + [anon_sym_DOT_DOT_LT] = ACTIONS(365), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(365), + [anon_sym_LT_DOT_DOT] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(363), + [anon_sym_LT_EQ] = ACTIONS(363), + [anon_sym_GT] = ACTIONS(363), + [anon_sym_GT_EQ] = ACTIONS(365), + [anon_sym_in] = ACTIONS(363), + [anon_sym_BANGin] = ACTIONS(363), + [anon_sym_instanceof] = ACTIONS(363), + [anon_sym_BANGinstanceof] = ACTIONS(365), + [anon_sym_EQ_EQ] = ACTIONS(363), + [anon_sym_BANG_EQ] = ACTIONS(363), + [anon_sym_LT_EQ_GT] = ACTIONS(365), + [anon_sym_EQ_EQ_EQ] = ACTIONS(365), + [anon_sym_BANG_EQ_EQ] = ACTIONS(365), + [anon_sym_EQ_TILDE] = ACTIONS(365), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(365), + [anon_sym_AMP] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(363), + [anon_sym_AMP_AMP] = ACTIONS(365), + [anon_sym_PIPE_PIPE] = ACTIONS(365), + [anon_sym_QMARK_COLON] = ACTIONS(365), + [anon_sym_STAR_STAR] = ACTIONS(365), + [anon_sym_true] = ACTIONS(363), + [anon_sym_false] = ACTIONS(363), + [anon_sym_ATinterface] = ACTIONS(365), + [anon_sym_interface] = ACTIONS(363), + [anon_sym_class] = ACTIONS(363), + [anon_sym_COMMA] = ACTIONS(365), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_RBRACE] = ACTIONS(365), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(363), + [anon_sym_this] = ACTIONS(363), + [anon_sym_null] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(365), + [anon_sym_do] = ACTIONS(363), + [anon_sym_while] = ACTIONS(363), + [anon_sym_for] = ACTIONS(363), + [anon_sym_if] = ACTIONS(363), + [anon_sym_else] = ACTIONS(363), + [anon_sym_LBRACK] = ACTIONS(365), + [aux_sym_number_literal_token1] = ACTIONS(363), + [aux_sym_number_literal_token2] = ACTIONS(365), + [aux_sym_number_literal_token3] = ACTIONS(365), + [aux_sym_number_literal_token4] = ACTIONS(363), + [aux_sym_number_literal_token5] = ACTIONS(365), + [anon_sym_return] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(363), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(365), + [anon_sym_DQUOTE] = ACTIONS(363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(365), + [anon_sym_DOLLAR_SLASH] = ACTIONS(365), + [anon_sym_switch] = ACTIONS(363), + [anon_sym_QMARK] = ACTIONS(363), + [anon_sym_try] = ACTIONS(363), + [anon_sym_catch] = ACTIONS(363), + [anon_sym_finally] = ACTIONS(363), + [anon_sym_int] = ACTIONS(363), + [anon_sym_boolean] = ACTIONS(363), + [anon_sym_char] = ACTIONS(363), + [anon_sym_short] = ACTIONS(363), + [anon_sym_long] = ACTIONS(363), + [anon_sym_float] = ACTIONS(363), + [anon_sym_double] = ACTIONS(363), + [anon_sym_void] = ACTIONS(363), + [anon_sym_public] = ACTIONS(363), + [anon_sym_protected] = ACTIONS(363), + [anon_sym_private] = ACTIONS(363), + [anon_sym_static] = ACTIONS(363), + [anon_sym_final] = ACTIONS(363), + [anon_sym_synchronized] = ACTIONS(363), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(363), + [anon_sym_new] = ACTIONS(363), + }, + [87] = { + [sym_comment] = STATE(87), + [sym_groovy_doc] = STATE(87), + [sym_identifier] = ACTIONS(367), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(369), + [anon_sym_DOT_AMP] = ACTIONS(291), + [anon_sym_DOT_AT] = ACTIONS(291), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_STAR_DOT] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_STAR_COLON] = ACTIONS(369), + [anon_sym_import] = ACTIONS(367), + [anon_sym_as] = ACTIONS(295), + [anon_sym_package] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(367), + [anon_sym_assert] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(303), + [anon_sym_GT_GT_GT] = ACTIONS(301), + [anon_sym_DOT_DOT] = ACTIONS(303), + [anon_sym_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(295), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_in] = ACTIONS(295), + [anon_sym_BANGin] = ACTIONS(295), + [anon_sym_instanceof] = ACTIONS(295), + [anon_sym_BANGinstanceof] = ACTIONS(305), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_BANG_EQ] = ACTIONS(307), + [anon_sym_LT_EQ_GT] = ACTIONS(309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(309), + [anon_sym_EQ_TILDE] = ACTIONS(309), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(315), + [anon_sym_AMP_AMP] = ACTIONS(317), + [anon_sym_PIPE_PIPE] = ACTIONS(319), + [anon_sym_QMARK_COLON] = ACTIONS(321), + [anon_sym_STAR_STAR] = ACTIONS(323), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_ATinterface] = ACTIONS(369), + [anon_sym_interface] = ACTIONS(367), + [anon_sym_class] = ACTIONS(367), + [anon_sym_COMMA] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(369), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(367), + [anon_sym_this] = ACTIONS(367), + [anon_sym_null] = ACTIONS(367), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_do] = ACTIONS(367), + [anon_sym_while] = ACTIONS(367), + [anon_sym_for] = ACTIONS(367), + [anon_sym_if] = ACTIONS(367), + [anon_sym_else] = ACTIONS(367), + [anon_sym_LBRACK] = ACTIONS(369), + [aux_sym_number_literal_token1] = ACTIONS(367), + [aux_sym_number_literal_token2] = ACTIONS(369), + [aux_sym_number_literal_token3] = ACTIONS(369), + [aux_sym_number_literal_token4] = ACTIONS(367), + [aux_sym_number_literal_token5] = ACTIONS(369), + [anon_sym_return] = ACTIONS(367), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR_SLASH] = ACTIONS(369), + [anon_sym_switch] = ACTIONS(367), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_try] = ACTIONS(367), + [anon_sym_catch] = ACTIONS(367), + [anon_sym_finally] = ACTIONS(367), + [anon_sym_int] = ACTIONS(367), + [anon_sym_boolean] = ACTIONS(367), + [anon_sym_char] = ACTIONS(367), + [anon_sym_short] = ACTIONS(367), + [anon_sym_long] = ACTIONS(367), + [anon_sym_float] = ACTIONS(367), + [anon_sym_double] = ACTIONS(367), + [anon_sym_void] = ACTIONS(367), + [anon_sym_public] = ACTIONS(367), + [anon_sym_protected] = ACTIONS(367), + [anon_sym_private] = ACTIONS(367), + [anon_sym_static] = ACTIONS(367), + [anon_sym_final] = ACTIONS(367), + [anon_sym_synchronized] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_new] = ACTIONS(367), + }, + [88] = { + [sym_comment] = STATE(88), + [sym_groovy_doc] = STATE(88), + [sym_identifier] = ACTIONS(73), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_DOT_AMP] = ACTIONS(75), + [anon_sym_DOT_AT] = ACTIONS(75), + [anon_sym_QMARK_DOT] = ACTIONS(75), + [anon_sym_STAR_DOT] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(73), + [anon_sym_STAR_COLON] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(73), + [anon_sym_import] = ACTIONS(73), + [anon_sym_as] = ACTIONS(73), + [anon_sym_package] = ACTIONS(73), + [anon_sym_AT] = ACTIONS(73), + [anon_sym_assert] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_LT_LT] = ACTIONS(75), + [anon_sym_GT_GT] = ACTIONS(73), + [anon_sym_GT_GT_GT] = ACTIONS(75), + [anon_sym_DOT_DOT] = ACTIONS(73), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(75), + [anon_sym_LT_DOT_DOT] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(73), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(73), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_in] = ACTIONS(73), + [anon_sym_BANGin] = ACTIONS(73), + [anon_sym_instanceof] = ACTIONS(73), + [anon_sym_BANGinstanceof] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT_EQ_GT] = ACTIONS(75), + [anon_sym_EQ_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ_EQ] = ACTIONS(75), + [anon_sym_EQ_TILDE] = ACTIONS(75), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(73), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(73), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_QMARK_COLON] = ACTIONS(75), + [anon_sym_STAR_STAR] = ACTIONS(75), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ATinterface] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_class] = ACTIONS(73), + [anon_sym_COMMA] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH_GT] = ACTIONS(75), + [anon_sym_RBRACE] = ACTIONS(75), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(73), + [anon_sym_this] = ACTIONS(73), + [anon_sym_null] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_do] = ACTIONS(73), + [anon_sym_while] = ACTIONS(73), + [anon_sym_for] = ACTIONS(73), + [anon_sym_if] = ACTIONS(73), + [anon_sym_else] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(75), + [aux_sym_number_literal_token1] = ACTIONS(73), + [aux_sym_number_literal_token2] = ACTIONS(75), + [aux_sym_number_literal_token3] = ACTIONS(75), + [aux_sym_number_literal_token4] = ACTIONS(73), + [aux_sym_number_literal_token5] = ACTIONS(75), + [anon_sym_return] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(75), + [anon_sym_DOLLAR_SLASH] = ACTIONS(75), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_QMARK] = ACTIONS(73), + [anon_sym_try] = ACTIONS(73), + [anon_sym_int] = ACTIONS(73), + [anon_sym_boolean] = ACTIONS(73), + [anon_sym_char] = ACTIONS(73), + [anon_sym_short] = ACTIONS(73), + [anon_sym_long] = ACTIONS(73), + [anon_sym_float] = ACTIONS(73), + [anon_sym_double] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_public] = ACTIONS(73), + [anon_sym_protected] = ACTIONS(73), + [anon_sym_private] = ACTIONS(73), + [anon_sym_static] = ACTIONS(73), + [anon_sym_final] = ACTIONS(73), + [anon_sym_synchronized] = ACTIONS(73), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(73), + [anon_sym_new] = ACTIONS(73), + }, + [89] = { + [sym_comment] = STATE(89), + [sym_groovy_doc] = STATE(89), + [sym_identifier] = ACTIONS(275), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_DOT_AMP] = ACTIONS(277), + [anon_sym_DOT_AT] = ACTIONS(277), + [anon_sym_QMARK_DOT] = ACTIONS(277), + [anon_sym_STAR_DOT] = ACTIONS(277), + [anon_sym_STAR] = ACTIONS(275), + [anon_sym_STAR_COLON] = ACTIONS(277), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_import] = ACTIONS(275), + [anon_sym_as] = ACTIONS(275), + [anon_sym_package] = ACTIONS(275), + [anon_sym_AT] = ACTIONS(275), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_PLUS_PLUS] = ACTIONS(277), + [anon_sym_DASH_DASH] = ACTIONS(277), + [anon_sym_PERCENT] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_PLUS] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_GT_GT] = ACTIONS(275), + [anon_sym_GT_GT_GT] = ACTIONS(277), + [anon_sym_DOT_DOT] = ACTIONS(275), + [anon_sym_DOT_DOT_LT] = ACTIONS(277), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(277), + [anon_sym_LT_DOT_DOT] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_LT_EQ] = ACTIONS(275), + [anon_sym_GT] = ACTIONS(275), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_in] = ACTIONS(275), + [anon_sym_BANGin] = ACTIONS(275), + [anon_sym_instanceof] = ACTIONS(275), + [anon_sym_BANGinstanceof] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_LT_EQ_GT] = ACTIONS(277), + [anon_sym_EQ_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ_EQ] = ACTIONS(277), + [anon_sym_EQ_TILDE] = ACTIONS(277), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(277), + [anon_sym_AMP] = ACTIONS(275), + [anon_sym_CARET] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(275), + [anon_sym_AMP_AMP] = ACTIONS(277), + [anon_sym_PIPE_PIPE] = ACTIONS(277), + [anon_sym_QMARK_COLON] = ACTIONS(277), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_true] = ACTIONS(275), + [anon_sym_false] = ACTIONS(275), + [anon_sym_ATinterface] = ACTIONS(277), + [anon_sym_interface] = ACTIONS(275), + [anon_sym_class] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(277), + [anon_sym_RBRACE] = ACTIONS(277), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(275), + [anon_sym_this] = ACTIONS(275), + [anon_sym_null] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(277), + [anon_sym_do] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(275), + [anon_sym_else] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [aux_sym_number_literal_token1] = ACTIONS(275), + [aux_sym_number_literal_token2] = ACTIONS(277), + [aux_sym_number_literal_token3] = ACTIONS(277), + [aux_sym_number_literal_token4] = ACTIONS(275), + [aux_sym_number_literal_token5] = ACTIONS(277), + [anon_sym_return] = ACTIONS(275), + [anon_sym_SQUOTE] = ACTIONS(275), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(277), + [anon_sym_DQUOTE] = ACTIONS(275), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(277), + [anon_sym_DOLLAR_SLASH] = ACTIONS(277), + [anon_sym_switch] = ACTIONS(275), + [anon_sym_QMARK] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_int] = ACTIONS(275), + [anon_sym_boolean] = ACTIONS(275), + [anon_sym_char] = ACTIONS(275), + [anon_sym_short] = ACTIONS(275), + [anon_sym_long] = ACTIONS(275), + [anon_sym_float] = ACTIONS(275), + [anon_sym_double] = ACTIONS(275), + [anon_sym_void] = ACTIONS(275), + [anon_sym_public] = ACTIONS(275), + [anon_sym_protected] = ACTIONS(275), + [anon_sym_private] = ACTIONS(275), + [anon_sym_static] = ACTIONS(275), + [anon_sym_final] = ACTIONS(275), + [anon_sym_synchronized] = ACTIONS(275), + [anon_sym_TILDE] = ACTIONS(277), + [anon_sym_BANG] = ACTIONS(275), + [anon_sym_new] = ACTIONS(275), + }, + [90] = { + [sym_comment] = STATE(90), + [sym_groovy_doc] = STATE(90), + [sym_identifier] = ACTIONS(259), + [anon_sym_break] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(259), + [anon_sym_SEMI] = ACTIONS(261), + [anon_sym_DOT_AMP] = ACTIONS(261), + [anon_sym_DOT_AT] = ACTIONS(261), + [anon_sym_QMARK_DOT] = ACTIONS(261), + [anon_sym_STAR_DOT] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(259), + [anon_sym_STAR_COLON] = ACTIONS(261), + [anon_sym_import] = ACTIONS(259), + [anon_sym_as] = ACTIONS(259), + [anon_sym_package] = ACTIONS(259), + [anon_sym_AT] = ACTIONS(259), + [anon_sym_assert] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(261), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_GT_GT_GT] = ACTIONS(261), + [anon_sym_DOT_DOT] = ACTIONS(259), + [anon_sym_DOT_DOT_LT] = ACTIONS(261), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(261), + [anon_sym_LT_DOT_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(259), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_GT_EQ] = ACTIONS(261), + [anon_sym_in] = ACTIONS(259), + [anon_sym_BANGin] = ACTIONS(259), + [anon_sym_instanceof] = ACTIONS(259), + [anon_sym_BANGinstanceof] = ACTIONS(261), + [anon_sym_EQ_EQ] = ACTIONS(259), + [anon_sym_BANG_EQ] = ACTIONS(259), + [anon_sym_LT_EQ_GT] = ACTIONS(261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(261), + [anon_sym_BANG_EQ_EQ] = ACTIONS(261), + [anon_sym_EQ_TILDE] = ACTIONS(261), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_CARET] = ACTIONS(261), + [anon_sym_PIPE] = ACTIONS(259), + [anon_sym_AMP_AMP] = ACTIONS(261), + [anon_sym_PIPE_PIPE] = ACTIONS(261), + [anon_sym_QMARK_COLON] = ACTIONS(261), + [anon_sym_STAR_STAR] = ACTIONS(261), + [anon_sym_true] = ACTIONS(259), + [anon_sym_false] = ACTIONS(259), + [anon_sym_ATinterface] = ACTIONS(261), + [anon_sym_interface] = ACTIONS(259), + [anon_sym_class] = ACTIONS(259), + [anon_sym_COMMA] = ACTIONS(261), + [anon_sym_LBRACE] = ACTIONS(261), + [anon_sym_RBRACE] = ACTIONS(261), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(259), + [anon_sym_this] = ACTIONS(259), + [anon_sym_null] = ACTIONS(259), + [anon_sym_LPAREN] = ACTIONS(261), + [anon_sym_do] = ACTIONS(259), + [anon_sym_while] = ACTIONS(259), + [anon_sym_for] = ACTIONS(259), + [anon_sym_if] = ACTIONS(259), + [anon_sym_else] = ACTIONS(259), + [anon_sym_LBRACK] = ACTIONS(261), + [aux_sym_number_literal_token1] = ACTIONS(259), + [aux_sym_number_literal_token2] = ACTIONS(261), + [aux_sym_number_literal_token3] = ACTIONS(261), + [aux_sym_number_literal_token4] = ACTIONS(259), + [aux_sym_number_literal_token5] = ACTIONS(261), + [anon_sym_return] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(261), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_SLASH] = ACTIONS(261), + [anon_sym_switch] = ACTIONS(259), + [anon_sym_QMARK] = ACTIONS(259), + [anon_sym_try] = ACTIONS(259), + [anon_sym_catch] = ACTIONS(259), + [anon_sym_finally] = ACTIONS(259), + [anon_sym_int] = ACTIONS(259), + [anon_sym_boolean] = ACTIONS(259), + [anon_sym_char] = ACTIONS(259), + [anon_sym_short] = ACTIONS(259), + [anon_sym_long] = ACTIONS(259), + [anon_sym_float] = ACTIONS(259), + [anon_sym_double] = ACTIONS(259), + [anon_sym_void] = ACTIONS(259), + [anon_sym_public] = ACTIONS(259), + [anon_sym_protected] = ACTIONS(259), + [anon_sym_private] = ACTIONS(259), + [anon_sym_static] = ACTIONS(259), + [anon_sym_final] = ACTIONS(259), + [anon_sym_synchronized] = ACTIONS(259), + [anon_sym_TILDE] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(259), + [anon_sym_new] = ACTIONS(259), + }, + [91] = { + [sym_comment] = STATE(91), + [sym_groovy_doc] = STATE(91), + [sym_identifier] = ACTIONS(371), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(371), + [anon_sym_SEMI] = ACTIONS(373), + [anon_sym_DOT_AMP] = ACTIONS(291), + [anon_sym_DOT_AT] = ACTIONS(291), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_STAR_DOT] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_STAR_COLON] = ACTIONS(373), + [anon_sym_import] = ACTIONS(371), + [anon_sym_as] = ACTIONS(295), + [anon_sym_package] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_PLUS_PLUS] = ACTIONS(373), + [anon_sym_DASH_DASH] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(303), + [anon_sym_GT_GT_GT] = ACTIONS(301), + [anon_sym_DOT_DOT] = ACTIONS(303), + [anon_sym_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(295), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_in] = ACTIONS(295), + [anon_sym_BANGin] = ACTIONS(295), + [anon_sym_instanceof] = ACTIONS(295), + [anon_sym_BANGinstanceof] = ACTIONS(305), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_BANG_EQ] = ACTIONS(307), + [anon_sym_LT_EQ_GT] = ACTIONS(309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(309), + [anon_sym_EQ_TILDE] = ACTIONS(309), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(315), + [anon_sym_AMP_AMP] = ACTIONS(317), + [anon_sym_PIPE_PIPE] = ACTIONS(319), + [anon_sym_QMARK_COLON] = ACTIONS(321), + [anon_sym_STAR_STAR] = ACTIONS(323), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_ATinterface] = ACTIONS(373), + [anon_sym_interface] = ACTIONS(371), + [anon_sym_class] = ACTIONS(371), + [anon_sym_COMMA] = ACTIONS(373), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_RBRACE] = ACTIONS(373), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(371), + [anon_sym_this] = ACTIONS(371), + [anon_sym_null] = ACTIONS(371), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_do] = ACTIONS(371), + [anon_sym_while] = ACTIONS(371), + [anon_sym_for] = ACTIONS(371), + [anon_sym_if] = ACTIONS(371), + [anon_sym_else] = ACTIONS(371), + [anon_sym_LBRACK] = ACTIONS(373), + [aux_sym_number_literal_token1] = ACTIONS(371), + [aux_sym_number_literal_token2] = ACTIONS(373), + [aux_sym_number_literal_token3] = ACTIONS(373), + [aux_sym_number_literal_token4] = ACTIONS(371), + [aux_sym_number_literal_token5] = ACTIONS(373), + [anon_sym_return] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_SLASH] = ACTIONS(373), + [anon_sym_switch] = ACTIONS(371), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_try] = ACTIONS(371), + [anon_sym_catch] = ACTIONS(371), + [anon_sym_finally] = ACTIONS(371), + [anon_sym_int] = ACTIONS(371), + [anon_sym_boolean] = ACTIONS(371), + [anon_sym_char] = ACTIONS(371), + [anon_sym_short] = ACTIONS(371), + [anon_sym_long] = ACTIONS(371), + [anon_sym_float] = ACTIONS(371), + [anon_sym_double] = ACTIONS(371), + [anon_sym_void] = ACTIONS(371), + [anon_sym_public] = ACTIONS(371), + [anon_sym_protected] = ACTIONS(371), + [anon_sym_private] = ACTIONS(371), + [anon_sym_static] = ACTIONS(371), + [anon_sym_final] = ACTIONS(371), + [anon_sym_synchronized] = ACTIONS(371), + [anon_sym_TILDE] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(371), + [anon_sym_new] = ACTIONS(371), + }, + [92] = { + [sym_comment] = STATE(92), + [sym_groovy_doc] = STATE(92), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(291), + [anon_sym_DOT_AT] = ACTIONS(291), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_STAR_DOT] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_STAR_COLON] = ACTIONS(353), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(295), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(303), + [anon_sym_GT_GT_GT] = ACTIONS(301), + [anon_sym_DOT_DOT] = ACTIONS(303), + [anon_sym_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(295), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_in] = ACTIONS(295), + [anon_sym_BANGin] = ACTIONS(295), + [anon_sym_instanceof] = ACTIONS(295), + [anon_sym_BANGinstanceof] = ACTIONS(305), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(323), + [anon_sym_true] = ACTIONS(351), + [anon_sym_false] = ACTIONS(351), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_this] = ACTIONS(351), + [anon_sym_null] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(353), + [aux_sym_number_literal_token1] = ACTIONS(351), + [aux_sym_number_literal_token2] = ACTIONS(353), + [aux_sym_number_literal_token3] = ACTIONS(353), + [aux_sym_number_literal_token4] = ACTIONS(351), + [aux_sym_number_literal_token5] = ACTIONS(353), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_new] = ACTIONS(351), + }, + [93] = { + [sym_comment] = STATE(93), + [sym_groovy_doc] = STATE(93), + [sym_identifier] = ACTIONS(375), + [anon_sym_break] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(377), + [anon_sym_DOT_AMP] = ACTIONS(291), + [anon_sym_DOT_AT] = ACTIONS(291), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_STAR_DOT] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_STAR_COLON] = ACTIONS(377), + [anon_sym_import] = ACTIONS(375), + [anon_sym_as] = ACTIONS(295), + [anon_sym_package] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(375), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_PLUS_PLUS] = ACTIONS(377), + [anon_sym_DASH_DASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(303), + [anon_sym_GT_GT_GT] = ACTIONS(301), + [anon_sym_DOT_DOT] = ACTIONS(303), + [anon_sym_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(295), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_in] = ACTIONS(295), + [anon_sym_BANGin] = ACTIONS(295), + [anon_sym_instanceof] = ACTIONS(295), + [anon_sym_BANGinstanceof] = ACTIONS(305), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_BANG_EQ] = ACTIONS(307), + [anon_sym_LT_EQ_GT] = ACTIONS(309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(309), + [anon_sym_EQ_TILDE] = ACTIONS(309), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(315), + [anon_sym_AMP_AMP] = ACTIONS(317), + [anon_sym_PIPE_PIPE] = ACTIONS(319), + [anon_sym_QMARK_COLON] = ACTIONS(321), + [anon_sym_STAR_STAR] = ACTIONS(323), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_ATinterface] = ACTIONS(377), + [anon_sym_interface] = ACTIONS(375), + [anon_sym_class] = ACTIONS(375), + [anon_sym_COMMA] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_RBRACE] = ACTIONS(377), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(375), + [anon_sym_this] = ACTIONS(375), + [anon_sym_null] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_do] = ACTIONS(375), + [anon_sym_while] = ACTIONS(375), + [anon_sym_for] = ACTIONS(375), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(377), + [aux_sym_number_literal_token1] = ACTIONS(375), + [aux_sym_number_literal_token2] = ACTIONS(377), + [aux_sym_number_literal_token3] = ACTIONS(377), + [aux_sym_number_literal_token4] = ACTIONS(375), + [aux_sym_number_literal_token5] = ACTIONS(377), + [anon_sym_return] = ACTIONS(375), + [anon_sym_SQUOTE] = ACTIONS(375), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_DOLLAR_SLASH] = ACTIONS(377), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_try] = ACTIONS(375), + [anon_sym_catch] = ACTIONS(375), + [anon_sym_finally] = ACTIONS(375), + [anon_sym_int] = ACTIONS(375), + [anon_sym_boolean] = ACTIONS(375), + [anon_sym_char] = ACTIONS(375), + [anon_sym_short] = ACTIONS(375), + [anon_sym_long] = ACTIONS(375), + [anon_sym_float] = ACTIONS(375), + [anon_sym_double] = ACTIONS(375), + [anon_sym_void] = ACTIONS(375), + [anon_sym_public] = ACTIONS(375), + [anon_sym_protected] = ACTIONS(375), + [anon_sym_private] = ACTIONS(375), + [anon_sym_static] = ACTIONS(375), + [anon_sym_final] = ACTIONS(375), + [anon_sym_synchronized] = ACTIONS(375), + [anon_sym_TILDE] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_new] = ACTIONS(375), + }, + [94] = { + [sym_comment] = STATE(94), + [sym_groovy_doc] = STATE(94), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(291), + [anon_sym_DOT_AT] = ACTIONS(291), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_STAR_DOT] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_STAR_COLON] = ACTIONS(353), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(353), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_GT_GT_GT] = ACTIONS(353), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(323), + [anon_sym_true] = ACTIONS(351), + [anon_sym_false] = ACTIONS(351), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_this] = ACTIONS(351), + [anon_sym_null] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(353), + [aux_sym_number_literal_token1] = ACTIONS(351), + [aux_sym_number_literal_token2] = ACTIONS(353), + [aux_sym_number_literal_token3] = ACTIONS(353), + [aux_sym_number_literal_token4] = ACTIONS(351), + [aux_sym_number_literal_token5] = ACTIONS(353), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_new] = ACTIONS(351), + }, + [95] = { + [sym_comment] = STATE(95), + [sym_groovy_doc] = STATE(95), + [sym_identifier] = ACTIONS(379), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_DOT_AMP] = ACTIONS(381), + [anon_sym_DOT_AT] = ACTIONS(381), + [anon_sym_QMARK_DOT] = ACTIONS(381), + [anon_sym_STAR_DOT] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(379), + [anon_sym_STAR_COLON] = ACTIONS(381), + [anon_sym_import] = ACTIONS(379), + [anon_sym_as] = ACTIONS(379), + [anon_sym_package] = ACTIONS(379), + [anon_sym_AT] = ACTIONS(379), + [anon_sym_assert] = ACTIONS(379), + [anon_sym_PLUS_PLUS] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(379), + [anon_sym_DASH] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(379), + [anon_sym_GT_GT_GT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_LT] = ACTIONS(381), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(381), + [anon_sym_LT_DOT_DOT] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_in] = ACTIONS(379), + [anon_sym_BANGin] = ACTIONS(379), + [anon_sym_instanceof] = ACTIONS(379), + [anon_sym_BANGinstanceof] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT_EQ_GT] = ACTIONS(381), + [anon_sym_EQ_EQ_EQ] = ACTIONS(381), + [anon_sym_BANG_EQ_EQ] = ACTIONS(381), + [anon_sym_EQ_TILDE] = ACTIONS(381), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [anon_sym_QMARK_COLON] = ACTIONS(381), + [anon_sym_STAR_STAR] = ACTIONS(381), + [anon_sym_true] = ACTIONS(379), + [anon_sym_false] = ACTIONS(379), + [anon_sym_ATinterface] = ACTIONS(381), + [anon_sym_interface] = ACTIONS(379), + [anon_sym_class] = ACTIONS(379), + [anon_sym_COMMA] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(381), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(379), + [anon_sym_this] = ACTIONS(379), + [anon_sym_null] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_do] = ACTIONS(379), + [anon_sym_while] = ACTIONS(379), + [anon_sym_for] = ACTIONS(379), + [anon_sym_if] = ACTIONS(379), + [anon_sym_else] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [aux_sym_number_literal_token1] = ACTIONS(379), + [aux_sym_number_literal_token2] = ACTIONS(381), + [aux_sym_number_literal_token3] = ACTIONS(381), + [aux_sym_number_literal_token4] = ACTIONS(379), + [aux_sym_number_literal_token5] = ACTIONS(381), + [anon_sym_return] = ACTIONS(379), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(381), + [anon_sym_DOLLAR_SLASH] = ACTIONS(381), + [anon_sym_switch] = ACTIONS(379), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_try] = ACTIONS(379), + [anon_sym_catch] = ACTIONS(379), + [anon_sym_finally] = ACTIONS(379), + [anon_sym_int] = ACTIONS(379), + [anon_sym_boolean] = ACTIONS(379), + [anon_sym_char] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [anon_sym_long] = ACTIONS(379), + [anon_sym_float] = ACTIONS(379), + [anon_sym_double] = ACTIONS(379), + [anon_sym_void] = ACTIONS(379), + [anon_sym_public] = ACTIONS(379), + [anon_sym_protected] = ACTIONS(379), + [anon_sym_private] = ACTIONS(379), + [anon_sym_static] = ACTIONS(379), + [anon_sym_final] = ACTIONS(379), + [anon_sym_synchronized] = ACTIONS(379), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(379), + [anon_sym_new] = ACTIONS(379), + }, + [96] = { + [sym_comment] = STATE(96), + [sym_groovy_doc] = STATE(96), + [sym_identifier] = ACTIONS(99), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_DOT_AMP] = ACTIONS(93), + [anon_sym_DOT_AT] = ACTIONS(93), + [anon_sym_QMARK_DOT] = ACTIONS(93), + [anon_sym_STAR_DOT] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_STAR_COLON] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(97), + [anon_sym_import] = ACTIONS(99), + [anon_sym_as] = ACTIONS(99), + [anon_sym_package] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(93), + [anon_sym_SLASH] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(99), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_LT_LT] = ACTIONS(93), + [anon_sym_GT_GT] = ACTIONS(99), + [anon_sym_GT_GT_GT] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(99), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_in] = ACTIONS(99), + [anon_sym_BANGin] = ACTIONS(99), + [anon_sym_instanceof] = ACTIONS(99), + [anon_sym_BANGinstanceof] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_LT_EQ_GT] = ACTIONS(93), + [anon_sym_EQ_EQ_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ_EQ] = ACTIONS(93), + [anon_sym_EQ_TILDE] = ACTIONS(93), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(99), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(93), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_ATinterface] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(99), + [anon_sym_class] = ACTIONS(99), + [anon_sym_COMMA] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_RBRACE] = ACTIONS(93), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(99), + [anon_sym_this] = ACTIONS(99), + [anon_sym_null] = ACTIONS(99), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(99), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(99), + [anon_sym_if] = ACTIONS(99), + [anon_sym_else] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(101), + [anon_sym_COLON] = ACTIONS(383), + [aux_sym_number_literal_token1] = ACTIONS(99), + [aux_sym_number_literal_token2] = ACTIONS(93), + [aux_sym_number_literal_token3] = ACTIONS(93), + [aux_sym_number_literal_token4] = ACTIONS(99), + [aux_sym_number_literal_token5] = ACTIONS(93), + [anon_sym_return] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_SLASH] = ACTIONS(93), + [anon_sym_switch] = ACTIONS(99), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_int] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_char] = ACTIONS(99), + [anon_sym_short] = ACTIONS(99), + [anon_sym_long] = ACTIONS(99), + [anon_sym_float] = ACTIONS(99), + [anon_sym_double] = ACTIONS(99), + [anon_sym_void] = ACTIONS(99), + [anon_sym_public] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_static] = ACTIONS(99), + [anon_sym_final] = ACTIONS(99), + [anon_sym_synchronized] = ACTIONS(99), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_new] = ACTIONS(99), + }, + [97] = { + [sym_comment] = STATE(97), + [sym_groovy_doc] = STATE(97), + [sym_identifier] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_DOT_AMP] = ACTIONS(387), + [anon_sym_DOT_AT] = ACTIONS(387), + [anon_sym_QMARK_DOT] = ACTIONS(387), + [anon_sym_STAR_DOT] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(385), + [anon_sym_STAR_COLON] = ACTIONS(387), + [anon_sym_import] = ACTIONS(385), + [anon_sym_as] = ACTIONS(385), + [anon_sym_package] = ACTIONS(385), + [anon_sym_AT] = ACTIONS(385), + [anon_sym_assert] = ACTIONS(385), + [anon_sym_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_GT_GT_GT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_LT] = ACTIONS(387), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(387), + [anon_sym_LT_DOT_DOT] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_in] = ACTIONS(385), + [anon_sym_BANGin] = ACTIONS(385), + [anon_sym_instanceof] = ACTIONS(385), + [anon_sym_BANGinstanceof] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(385), + [anon_sym_BANG_EQ] = ACTIONS(385), + [anon_sym_LT_EQ_GT] = ACTIONS(387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(387), + [anon_sym_EQ_TILDE] = ACTIONS(387), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_QMARK_COLON] = ACTIONS(387), + [anon_sym_STAR_STAR] = ACTIONS(387), + [anon_sym_true] = ACTIONS(385), + [anon_sym_false] = ACTIONS(385), + [anon_sym_ATinterface] = ACTIONS(387), + [anon_sym_interface] = ACTIONS(385), + [anon_sym_class] = ACTIONS(385), + [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(387), + [anon_sym_RBRACE] = ACTIONS(387), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(385), + [anon_sym_this] = ACTIONS(385), + [anon_sym_null] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_do] = ACTIONS(385), + [anon_sym_while] = ACTIONS(385), + [anon_sym_for] = ACTIONS(385), + [anon_sym_if] = ACTIONS(385), + [anon_sym_else] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [aux_sym_number_literal_token1] = ACTIONS(385), + [aux_sym_number_literal_token2] = ACTIONS(387), + [aux_sym_number_literal_token3] = ACTIONS(387), + [aux_sym_number_literal_token4] = ACTIONS(385), + [aux_sym_number_literal_token5] = ACTIONS(387), + [anon_sym_return] = ACTIONS(385), + [anon_sym_SQUOTE] = ACTIONS(385), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(387), + [anon_sym_DQUOTE] = ACTIONS(385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_SLASH] = ACTIONS(387), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_try] = ACTIONS(385), + [anon_sym_catch] = ACTIONS(385), + [anon_sym_finally] = ACTIONS(385), + [anon_sym_int] = ACTIONS(385), + [anon_sym_boolean] = ACTIONS(385), + [anon_sym_char] = ACTIONS(385), + [anon_sym_short] = ACTIONS(385), + [anon_sym_long] = ACTIONS(385), + [anon_sym_float] = ACTIONS(385), + [anon_sym_double] = ACTIONS(385), + [anon_sym_void] = ACTIONS(385), + [anon_sym_public] = ACTIONS(385), + [anon_sym_protected] = ACTIONS(385), + [anon_sym_private] = ACTIONS(385), + [anon_sym_static] = ACTIONS(385), + [anon_sym_final] = ACTIONS(385), + [anon_sym_synchronized] = ACTIONS(385), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(385), + [anon_sym_new] = ACTIONS(385), + }, + [98] = { + [sym_comment] = STATE(98), + [sym_groovy_doc] = STATE(98), + [sym_identifier] = ACTIONS(283), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOT_AMP] = ACTIONS(285), + [anon_sym_DOT_AT] = ACTIONS(285), + [anon_sym_QMARK_DOT] = ACTIONS(285), + [anon_sym_STAR_DOT] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(283), + [anon_sym_STAR_COLON] = ACTIONS(285), + [anon_sym_DOT] = ACTIONS(283), + [anon_sym_import] = ACTIONS(283), + [anon_sym_as] = ACTIONS(283), + [anon_sym_package] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [anon_sym_assert] = ACTIONS(283), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_PERCENT] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(283), + [anon_sym_DASH] = ACTIONS(283), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(283), + [anon_sym_GT_GT_GT] = ACTIONS(285), + [anon_sym_DOT_DOT] = ACTIONS(283), + [anon_sym_DOT_DOT_LT] = ACTIONS(285), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(285), + [anon_sym_LT_DOT_DOT] = ACTIONS(283), + [anon_sym_LT] = ACTIONS(283), + [anon_sym_LT_EQ] = ACTIONS(283), + [anon_sym_GT] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_in] = ACTIONS(283), + [anon_sym_BANGin] = ACTIONS(283), + [anon_sym_instanceof] = ACTIONS(283), + [anon_sym_BANGinstanceof] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(283), + [anon_sym_BANG_EQ] = ACTIONS(283), + [anon_sym_LT_EQ_GT] = ACTIONS(285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(283), + [anon_sym_CARET] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_QMARK_COLON] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(285), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_ATinterface] = ACTIONS(285), + [anon_sym_interface] = ACTIONS(283), + [anon_sym_class] = ACTIONS(283), + [anon_sym_COMMA] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(285), + [anon_sym_DASH_GT] = ACTIONS(285), + [anon_sym_RBRACE] = ACTIONS(285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(283), + [anon_sym_this] = ACTIONS(283), + [anon_sym_null] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_do] = ACTIONS(283), + [anon_sym_while] = ACTIONS(283), + [anon_sym_for] = ACTIONS(283), + [anon_sym_if] = ACTIONS(283), + [anon_sym_else] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [aux_sym_number_literal_token1] = ACTIONS(283), + [aux_sym_number_literal_token2] = ACTIONS(285), + [aux_sym_number_literal_token3] = ACTIONS(285), + [aux_sym_number_literal_token4] = ACTIONS(283), + [aux_sym_number_literal_token5] = ACTIONS(285), + [anon_sym_return] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(283), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_SLASH] = ACTIONS(285), + [anon_sym_switch] = ACTIONS(283), + [anon_sym_QMARK] = ACTIONS(283), + [anon_sym_try] = ACTIONS(283), + [anon_sym_int] = ACTIONS(283), + [anon_sym_boolean] = ACTIONS(283), + [anon_sym_char] = ACTIONS(283), + [anon_sym_short] = ACTIONS(283), + [anon_sym_long] = ACTIONS(283), + [anon_sym_float] = ACTIONS(283), + [anon_sym_double] = ACTIONS(283), + [anon_sym_void] = ACTIONS(283), + [anon_sym_public] = ACTIONS(283), + [anon_sym_protected] = ACTIONS(283), + [anon_sym_private] = ACTIONS(283), + [anon_sym_static] = ACTIONS(283), + [anon_sym_final] = ACTIONS(283), + [anon_sym_synchronized] = ACTIONS(283), + [anon_sym_TILDE] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(283), + [anon_sym_new] = ACTIONS(283), + }, + [99] = { + [sym_comment] = STATE(99), + [sym_groovy_doc] = STATE(99), + [sym_identifier] = ACTIONS(389), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_SEMI] = ACTIONS(391), + [anon_sym_DOT_AMP] = ACTIONS(291), + [anon_sym_DOT_AT] = ACTIONS(291), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_STAR_DOT] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_STAR_COLON] = ACTIONS(391), + [anon_sym_import] = ACTIONS(389), + [anon_sym_as] = ACTIONS(295), + [anon_sym_package] = ACTIONS(389), + [anon_sym_AT] = ACTIONS(389), + [anon_sym_assert] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(303), + [anon_sym_GT_GT_GT] = ACTIONS(301), + [anon_sym_DOT_DOT] = ACTIONS(303), + [anon_sym_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(295), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_in] = ACTIONS(295), + [anon_sym_BANGin] = ACTIONS(295), + [anon_sym_instanceof] = ACTIONS(295), + [anon_sym_BANGinstanceof] = ACTIONS(305), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_BANG_EQ] = ACTIONS(307), + [anon_sym_LT_EQ_GT] = ACTIONS(309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(309), + [anon_sym_EQ_TILDE] = ACTIONS(309), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(315), + [anon_sym_AMP_AMP] = ACTIONS(317), + [anon_sym_PIPE_PIPE] = ACTIONS(319), + [anon_sym_QMARK_COLON] = ACTIONS(321), + [anon_sym_STAR_STAR] = ACTIONS(323), + [anon_sym_true] = ACTIONS(389), + [anon_sym_false] = ACTIONS(389), + [anon_sym_ATinterface] = ACTIONS(391), + [anon_sym_interface] = ACTIONS(389), + [anon_sym_class] = ACTIONS(389), + [anon_sym_COMMA] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(391), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(389), + [anon_sym_this] = ACTIONS(389), + [anon_sym_null] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_do] = ACTIONS(389), + [anon_sym_while] = ACTIONS(389), + [anon_sym_for] = ACTIONS(389), + [anon_sym_if] = ACTIONS(389), + [anon_sym_else] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(391), + [aux_sym_number_literal_token1] = ACTIONS(389), + [aux_sym_number_literal_token2] = ACTIONS(391), + [aux_sym_number_literal_token3] = ACTIONS(391), + [aux_sym_number_literal_token4] = ACTIONS(389), + [aux_sym_number_literal_token5] = ACTIONS(391), + [anon_sym_return] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(391), + [anon_sym_DQUOTE] = ACTIONS(389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(391), + [anon_sym_DOLLAR_SLASH] = ACTIONS(391), + [anon_sym_switch] = ACTIONS(389), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_try] = ACTIONS(389), + [anon_sym_catch] = ACTIONS(389), + [anon_sym_finally] = ACTIONS(389), + [anon_sym_int] = ACTIONS(389), + [anon_sym_boolean] = ACTIONS(389), + [anon_sym_char] = ACTIONS(389), + [anon_sym_short] = ACTIONS(389), + [anon_sym_long] = ACTIONS(389), + [anon_sym_float] = ACTIONS(389), + [anon_sym_double] = ACTIONS(389), + [anon_sym_void] = ACTIONS(389), + [anon_sym_public] = ACTIONS(389), + [anon_sym_protected] = ACTIONS(389), + [anon_sym_private] = ACTIONS(389), + [anon_sym_static] = ACTIONS(389), + [anon_sym_final] = ACTIONS(389), + [anon_sym_synchronized] = ACTIONS(389), + [anon_sym_TILDE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_new] = ACTIONS(389), + }, + [100] = { + [sym_comment] = STATE(100), + [sym_groovy_doc] = STATE(100), + [sym_identifier] = ACTIONS(393), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_DOT_AMP] = ACTIONS(395), + [anon_sym_DOT_AT] = ACTIONS(395), + [anon_sym_QMARK_DOT] = ACTIONS(395), + [anon_sym_STAR_DOT] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_STAR_COLON] = ACTIONS(395), + [anon_sym_import] = ACTIONS(393), + [anon_sym_as] = ACTIONS(393), + [anon_sym_package] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(393), + [anon_sym_assert] = ACTIONS(393), + [anon_sym_PLUS_PLUS] = ACTIONS(395), + [anon_sym_DASH_DASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_GT_GT_GT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_LT] = ACTIONS(395), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(395), + [anon_sym_LT_DOT_DOT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(395), + [anon_sym_in] = ACTIONS(393), + [anon_sym_BANGin] = ACTIONS(393), + [anon_sym_instanceof] = ACTIONS(393), + [anon_sym_BANGinstanceof] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_LT_EQ_GT] = ACTIONS(395), + [anon_sym_EQ_EQ_EQ] = ACTIONS(395), + [anon_sym_BANG_EQ_EQ] = ACTIONS(395), + [anon_sym_EQ_TILDE] = ACTIONS(395), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_AMP_AMP] = ACTIONS(395), + [anon_sym_PIPE_PIPE] = ACTIONS(395), + [anon_sym_QMARK_COLON] = ACTIONS(395), + [anon_sym_STAR_STAR] = ACTIONS(395), + [anon_sym_true] = ACTIONS(393), + [anon_sym_false] = ACTIONS(393), + [anon_sym_ATinterface] = ACTIONS(395), + [anon_sym_interface] = ACTIONS(393), + [anon_sym_class] = ACTIONS(393), + [anon_sym_COMMA] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(393), + [anon_sym_this] = ACTIONS(393), + [anon_sym_null] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_do] = ACTIONS(393), + [anon_sym_while] = ACTIONS(393), + [anon_sym_for] = ACTIONS(393), + [anon_sym_if] = ACTIONS(393), + [anon_sym_else] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [aux_sym_number_literal_token1] = ACTIONS(393), + [aux_sym_number_literal_token2] = ACTIONS(395), + [aux_sym_number_literal_token3] = ACTIONS(395), + [aux_sym_number_literal_token4] = ACTIONS(393), + [aux_sym_number_literal_token5] = ACTIONS(395), + [anon_sym_return] = ACTIONS(393), + [anon_sym_SQUOTE] = ACTIONS(393), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(395), + [anon_sym_DQUOTE] = ACTIONS(393), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(395), + [anon_sym_DOLLAR_SLASH] = ACTIONS(395), + [anon_sym_switch] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_try] = ACTIONS(393), + [anon_sym_catch] = ACTIONS(393), + [anon_sym_finally] = ACTIONS(393), + [anon_sym_int] = ACTIONS(393), + [anon_sym_boolean] = ACTIONS(393), + [anon_sym_char] = ACTIONS(393), + [anon_sym_short] = ACTIONS(393), + [anon_sym_long] = ACTIONS(393), + [anon_sym_float] = ACTIONS(393), + [anon_sym_double] = ACTIONS(393), + [anon_sym_void] = ACTIONS(393), + [anon_sym_public] = ACTIONS(393), + [anon_sym_protected] = ACTIONS(393), + [anon_sym_private] = ACTIONS(393), + [anon_sym_static] = ACTIONS(393), + [anon_sym_final] = ACTIONS(393), + [anon_sym_synchronized] = ACTIONS(393), + [anon_sym_TILDE] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_new] = ACTIONS(393), + }, + [101] = { + [sym_comment] = STATE(101), + [sym_groovy_doc] = STATE(101), + [sym_identifier] = ACTIONS(397), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_SEMI] = ACTIONS(399), + [anon_sym_DOT_AMP] = ACTIONS(399), + [anon_sym_DOT_AT] = ACTIONS(399), + [anon_sym_QMARK_DOT] = ACTIONS(399), + [anon_sym_STAR_DOT] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_STAR_COLON] = ACTIONS(399), + [anon_sym_import] = ACTIONS(397), + [anon_sym_as] = ACTIONS(397), + [anon_sym_package] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(397), + [anon_sym_assert] = ACTIONS(397), + [anon_sym_PLUS_PLUS] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_GT_GT_GT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_LT] = ACTIONS(399), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(399), + [anon_sym_LT_DOT_DOT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_in] = ACTIONS(397), + [anon_sym_BANGin] = ACTIONS(397), + [anon_sym_instanceof] = ACTIONS(397), + [anon_sym_BANGinstanceof] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_LT_EQ_GT] = ACTIONS(399), + [anon_sym_EQ_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ_EQ] = ACTIONS(399), + [anon_sym_EQ_TILDE] = ACTIONS(399), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(399), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_QMARK_COLON] = ACTIONS(399), + [anon_sym_STAR_STAR] = ACTIONS(399), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_ATinterface] = ACTIONS(399), + [anon_sym_interface] = ACTIONS(397), + [anon_sym_class] = ACTIONS(397), + [anon_sym_COMMA] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_RBRACE] = ACTIONS(399), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(397), + [anon_sym_this] = ACTIONS(397), + [anon_sym_null] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_do] = ACTIONS(397), + [anon_sym_while] = ACTIONS(397), + [anon_sym_for] = ACTIONS(397), + [anon_sym_if] = ACTIONS(397), + [anon_sym_else] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(399), + [aux_sym_number_literal_token1] = ACTIONS(397), + [aux_sym_number_literal_token2] = ACTIONS(399), + [aux_sym_number_literal_token3] = ACTIONS(399), + [aux_sym_number_literal_token4] = ACTIONS(397), + [aux_sym_number_literal_token5] = ACTIONS(399), + [anon_sym_return] = ACTIONS(397), + [anon_sym_SQUOTE] = ACTIONS(397), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(399), + [anon_sym_DQUOTE] = ACTIONS(397), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(399), + [anon_sym_DOLLAR_SLASH] = ACTIONS(399), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_try] = ACTIONS(397), + [anon_sym_catch] = ACTIONS(397), + [anon_sym_finally] = ACTIONS(397), + [anon_sym_int] = ACTIONS(397), + [anon_sym_boolean] = ACTIONS(397), + [anon_sym_char] = ACTIONS(397), + [anon_sym_short] = ACTIONS(397), + [anon_sym_long] = ACTIONS(397), + [anon_sym_float] = ACTIONS(397), + [anon_sym_double] = ACTIONS(397), + [anon_sym_void] = ACTIONS(397), + [anon_sym_public] = ACTIONS(397), + [anon_sym_protected] = ACTIONS(397), + [anon_sym_private] = ACTIONS(397), + [anon_sym_static] = ACTIONS(397), + [anon_sym_final] = ACTIONS(397), + [anon_sym_synchronized] = ACTIONS(397), + [anon_sym_TILDE] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_new] = ACTIONS(397), + }, + [102] = { + [sym_comment] = STATE(102), + [sym_groovy_doc] = STATE(102), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(291), + [anon_sym_DOT_AT] = ACTIONS(291), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_STAR_DOT] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_STAR_COLON] = ACTIONS(353), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(353), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LT_LT] = ACTIONS(353), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_GT_GT_GT] = ACTIONS(353), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(323), + [anon_sym_true] = ACTIONS(351), + [anon_sym_false] = ACTIONS(351), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_this] = ACTIONS(351), + [anon_sym_null] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(353), + [aux_sym_number_literal_token1] = ACTIONS(351), + [aux_sym_number_literal_token2] = ACTIONS(353), + [aux_sym_number_literal_token3] = ACTIONS(353), + [aux_sym_number_literal_token4] = ACTIONS(351), + [aux_sym_number_literal_token5] = ACTIONS(353), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_new] = ACTIONS(351), + }, + [103] = { + [sym_comment] = STATE(103), + [sym_groovy_doc] = STATE(103), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(291), + [anon_sym_DOT_AT] = ACTIONS(291), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_STAR_DOT] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_STAR_COLON] = ACTIONS(353), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(303), + [anon_sym_GT_GT_GT] = ACTIONS(301), + [anon_sym_DOT_DOT] = ACTIONS(303), + [anon_sym_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(323), + [anon_sym_true] = ACTIONS(351), + [anon_sym_false] = ACTIONS(351), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_this] = ACTIONS(351), + [anon_sym_null] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(353), + [aux_sym_number_literal_token1] = ACTIONS(351), + [aux_sym_number_literal_token2] = ACTIONS(353), + [aux_sym_number_literal_token3] = ACTIONS(353), + [aux_sym_number_literal_token4] = ACTIONS(351), + [aux_sym_number_literal_token5] = ACTIONS(353), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_new] = ACTIONS(351), + }, + [104] = { + [sym_comment] = STATE(104), + [sym_groovy_doc] = STATE(104), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(291), + [anon_sym_DOT_AT] = ACTIONS(291), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_STAR_DOT] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_STAR_COLON] = ACTIONS(353), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(295), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(303), + [anon_sym_GT_GT_GT] = ACTIONS(301), + [anon_sym_DOT_DOT] = ACTIONS(303), + [anon_sym_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(295), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_in] = ACTIONS(295), + [anon_sym_BANGin] = ACTIONS(295), + [anon_sym_instanceof] = ACTIONS(295), + [anon_sym_BANGinstanceof] = ACTIONS(305), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_BANG_EQ] = ACTIONS(307), + [anon_sym_LT_EQ_GT] = ACTIONS(309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(309), + [anon_sym_EQ_TILDE] = ACTIONS(309), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(323), + [anon_sym_true] = ACTIONS(351), + [anon_sym_false] = ACTIONS(351), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_this] = ACTIONS(351), + [anon_sym_null] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(353), + [aux_sym_number_literal_token1] = ACTIONS(351), + [aux_sym_number_literal_token2] = ACTIONS(353), + [aux_sym_number_literal_token3] = ACTIONS(353), + [aux_sym_number_literal_token4] = ACTIONS(351), + [aux_sym_number_literal_token5] = ACTIONS(353), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_new] = ACTIONS(351), + }, + [105] = { + [sym_comment] = STATE(105), + [sym_groovy_doc] = STATE(105), + [sym_identifier] = ACTIONS(81), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_DOT_AMP] = ACTIONS(83), + [anon_sym_DOT_AT] = ACTIONS(83), + [anon_sym_QMARK_DOT] = ACTIONS(83), + [anon_sym_STAR_DOT] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_STAR_COLON] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_import] = ACTIONS(81), + [anon_sym_as] = ACTIONS(81), + [anon_sym_package] = ACTIONS(81), + [anon_sym_AT] = ACTIONS(81), + [anon_sym_assert] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(83), + [anon_sym_GT_GT] = ACTIONS(81), + [anon_sym_GT_GT_GT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DOT_DOT_LT] = ACTIONS(83), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(83), + [anon_sym_LT_DOT_DOT] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_GT_EQ] = ACTIONS(83), + [anon_sym_in] = ACTIONS(81), + [anon_sym_BANGin] = ACTIONS(81), + [anon_sym_instanceof] = ACTIONS(81), + [anon_sym_BANGinstanceof] = ACTIONS(83), + [anon_sym_EQ_EQ] = ACTIONS(81), + [anon_sym_BANG_EQ] = ACTIONS(81), + [anon_sym_LT_EQ_GT] = ACTIONS(83), + [anon_sym_EQ_EQ_EQ] = ACTIONS(83), + [anon_sym_BANG_EQ_EQ] = ACTIONS(83), + [anon_sym_EQ_TILDE] = ACTIONS(83), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(83), + [anon_sym_PIPE] = ACTIONS(81), + [anon_sym_AMP_AMP] = ACTIONS(83), + [anon_sym_PIPE_PIPE] = ACTIONS(83), + [anon_sym_QMARK_COLON] = ACTIONS(83), + [anon_sym_STAR_STAR] = ACTIONS(83), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_ATinterface] = ACTIONS(83), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_RBRACE] = ACTIONS(83), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(81), + [anon_sym_this] = ACTIONS(81), + [anon_sym_null] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_do] = ACTIONS(81), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(81), + [anon_sym_if] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), + [aux_sym_number_literal_token1] = ACTIONS(81), + [aux_sym_number_literal_token2] = ACTIONS(83), + [aux_sym_number_literal_token3] = ACTIONS(83), + [aux_sym_number_literal_token4] = ACTIONS(81), + [aux_sym_number_literal_token5] = ACTIONS(83), + [anon_sym_return] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_SLASH] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_QMARK] = ACTIONS(81), + [anon_sym_try] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_boolean] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_float] = ACTIONS(81), + [anon_sym_double] = ACTIONS(81), + [anon_sym_void] = ACTIONS(81), + [anon_sym_public] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_static] = ACTIONS(81), + [anon_sym_final] = ACTIONS(81), + [anon_sym_synchronized] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_new] = ACTIONS(81), + }, + [106] = { + [sym_comment] = STATE(106), + [sym_groovy_doc] = STATE(106), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(291), + [anon_sym_DOT_AT] = ACTIONS(291), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_STAR_DOT] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_STAR_COLON] = ACTIONS(353), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(295), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(303), + [anon_sym_GT_GT_GT] = ACTIONS(301), + [anon_sym_DOT_DOT] = ACTIONS(303), + [anon_sym_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(295), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_in] = ACTIONS(295), + [anon_sym_BANGin] = ACTIONS(295), + [anon_sym_instanceof] = ACTIONS(295), + [anon_sym_BANGinstanceof] = ACTIONS(305), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_BANG_EQ] = ACTIONS(307), + [anon_sym_LT_EQ_GT] = ACTIONS(309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(309), + [anon_sym_EQ_TILDE] = ACTIONS(309), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(323), + [anon_sym_true] = ACTIONS(351), + [anon_sym_false] = ACTIONS(351), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_this] = ACTIONS(351), + [anon_sym_null] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(353), + [aux_sym_number_literal_token1] = ACTIONS(351), + [aux_sym_number_literal_token2] = ACTIONS(353), + [aux_sym_number_literal_token3] = ACTIONS(353), + [aux_sym_number_literal_token4] = ACTIONS(351), + [aux_sym_number_literal_token5] = ACTIONS(353), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_new] = ACTIONS(351), + }, + [107] = { + [sym_comment] = STATE(107), + [sym_groovy_doc] = STATE(107), + [sym_identifier] = ACTIONS(99), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_DOT_AMP] = ACTIONS(93), + [anon_sym_DOT_AT] = ACTIONS(93), + [anon_sym_QMARK_DOT] = ACTIONS(93), + [anon_sym_STAR_DOT] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_STAR_COLON] = ACTIONS(93), + [anon_sym_import] = ACTIONS(99), + [anon_sym_as] = ACTIONS(99), + [anon_sym_package] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(93), + [anon_sym_SLASH] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(99), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_LT_LT] = ACTIONS(93), + [anon_sym_GT_GT] = ACTIONS(99), + [anon_sym_GT_GT_GT] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(99), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_in] = ACTIONS(99), + [anon_sym_BANGin] = ACTIONS(99), + [anon_sym_instanceof] = ACTIONS(99), + [anon_sym_BANGinstanceof] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_LT_EQ_GT] = ACTIONS(93), + [anon_sym_EQ_EQ_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ_EQ] = ACTIONS(93), + [anon_sym_EQ_TILDE] = ACTIONS(93), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(99), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(93), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_ATinterface] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(99), + [anon_sym_class] = ACTIONS(99), + [anon_sym_COMMA] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_RBRACE] = ACTIONS(93), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(99), + [anon_sym_this] = ACTIONS(99), + [anon_sym_null] = ACTIONS(99), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_do] = ACTIONS(99), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(99), + [anon_sym_if] = ACTIONS(99), + [anon_sym_else] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(93), + [aux_sym_number_literal_token1] = ACTIONS(99), + [aux_sym_number_literal_token2] = ACTIONS(93), + [aux_sym_number_literal_token3] = ACTIONS(93), + [aux_sym_number_literal_token4] = ACTIONS(99), + [aux_sym_number_literal_token5] = ACTIONS(93), + [anon_sym_return] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_SLASH] = ACTIONS(93), + [anon_sym_switch] = ACTIONS(99), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(99), + [anon_sym_finally] = ACTIONS(99), + [anon_sym_int] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_char] = ACTIONS(99), + [anon_sym_short] = ACTIONS(99), + [anon_sym_long] = ACTIONS(99), + [anon_sym_float] = ACTIONS(99), + [anon_sym_double] = ACTIONS(99), + [anon_sym_void] = ACTIONS(99), + [anon_sym_public] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_static] = ACTIONS(99), + [anon_sym_final] = ACTIONS(99), + [anon_sym_synchronized] = ACTIONS(99), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_new] = ACTIONS(99), + }, + [108] = { + [sym_comment] = STATE(108), + [sym_groovy_doc] = STATE(108), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(291), + [anon_sym_DOT_AT] = ACTIONS(291), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_STAR_DOT] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_STAR_COLON] = ACTIONS(353), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(295), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(303), + [anon_sym_GT_GT_GT] = ACTIONS(301), + [anon_sym_DOT_DOT] = ACTIONS(303), + [anon_sym_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(295), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_in] = ACTIONS(295), + [anon_sym_BANGin] = ACTIONS(295), + [anon_sym_instanceof] = ACTIONS(295), + [anon_sym_BANGinstanceof] = ACTIONS(305), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_BANG_EQ] = ACTIONS(307), + [anon_sym_LT_EQ_GT] = ACTIONS(309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(309), + [anon_sym_EQ_TILDE] = ACTIONS(309), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(323), + [anon_sym_true] = ACTIONS(351), + [anon_sym_false] = ACTIONS(351), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_this] = ACTIONS(351), + [anon_sym_null] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(353), + [aux_sym_number_literal_token1] = ACTIONS(351), + [aux_sym_number_literal_token2] = ACTIONS(353), + [aux_sym_number_literal_token3] = ACTIONS(353), + [aux_sym_number_literal_token4] = ACTIONS(351), + [aux_sym_number_literal_token5] = ACTIONS(353), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_new] = ACTIONS(351), + }, + [109] = { + [sym_comment] = STATE(109), + [sym_groovy_doc] = STATE(109), + [sym_identifier] = ACTIONS(85), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(87), + [anon_sym_DOT_AMP] = ACTIONS(87), + [anon_sym_DOT_AT] = ACTIONS(87), + [anon_sym_QMARK_DOT] = ACTIONS(87), + [anon_sym_STAR_DOT] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_STAR_COLON] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_import] = ACTIONS(85), + [anon_sym_as] = ACTIONS(85), + [anon_sym_package] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_assert] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(87), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(87), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(87), + [anon_sym_LT_DOT_DOT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(87), + [anon_sym_in] = ACTIONS(85), + [anon_sym_BANGin] = ACTIONS(85), + [anon_sym_instanceof] = ACTIONS(85), + [anon_sym_BANGinstanceof] = ACTIONS(87), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_LT_EQ_GT] = ACTIONS(87), + [anon_sym_EQ_EQ_EQ] = ACTIONS(87), + [anon_sym_BANG_EQ_EQ] = ACTIONS(87), + [anon_sym_EQ_TILDE] = ACTIONS(87), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_CARET] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(87), + [anon_sym_PIPE_PIPE] = ACTIONS(87), + [anon_sym_QMARK_COLON] = ACTIONS(87), + [anon_sym_STAR_STAR] = ACTIONS(87), + [anon_sym_true] = ACTIONS(85), + [anon_sym_false] = ACTIONS(85), + [anon_sym_ATinterface] = ACTIONS(87), + [anon_sym_interface] = ACTIONS(85), + [anon_sym_class] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(87), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_DASH_GT] = ACTIONS(87), + [anon_sym_RBRACE] = ACTIONS(87), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(85), + [anon_sym_this] = ACTIONS(85), + [anon_sym_null] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_do] = ACTIONS(85), + [anon_sym_while] = ACTIONS(85), + [anon_sym_for] = ACTIONS(85), + [anon_sym_if] = ACTIONS(85), + [anon_sym_else] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [aux_sym_number_literal_token1] = ACTIONS(85), + [aux_sym_number_literal_token2] = ACTIONS(87), + [aux_sym_number_literal_token3] = ACTIONS(87), + [aux_sym_number_literal_token4] = ACTIONS(85), + [aux_sym_number_literal_token5] = ACTIONS(87), + [anon_sym_return] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_DOLLAR_SLASH] = ACTIONS(87), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_QMARK] = ACTIONS(85), + [anon_sym_try] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_boolean] = ACTIONS(85), + [anon_sym_char] = ACTIONS(85), + [anon_sym_short] = ACTIONS(85), + [anon_sym_long] = ACTIONS(85), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [anon_sym_void] = ACTIONS(85), + [anon_sym_public] = ACTIONS(85), + [anon_sym_protected] = ACTIONS(85), + [anon_sym_private] = ACTIONS(85), + [anon_sym_static] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_synchronized] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_new] = ACTIONS(85), + }, + [110] = { + [sym_comment] = STATE(110), + [sym_groovy_doc] = STATE(110), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(291), + [anon_sym_DOT_AT] = ACTIONS(291), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_STAR_DOT] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_STAR_COLON] = ACTIONS(353), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(353), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LT_LT] = ACTIONS(353), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_GT_GT_GT] = ACTIONS(353), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(323), + [anon_sym_true] = ACTIONS(351), + [anon_sym_false] = ACTIONS(351), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_this] = ACTIONS(351), + [anon_sym_null] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(353), + [aux_sym_number_literal_token1] = ACTIONS(351), + [aux_sym_number_literal_token2] = ACTIONS(353), + [aux_sym_number_literal_token3] = ACTIONS(353), + [aux_sym_number_literal_token4] = ACTIONS(351), + [aux_sym_number_literal_token5] = ACTIONS(353), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_new] = ACTIONS(351), + }, + [111] = { + [sym_comment] = STATE(111), + [sym_groovy_doc] = STATE(111), + [sym_identifier] = ACTIONS(401), + [anon_sym_break] = ACTIONS(401), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(403), + [anon_sym_DOT_AMP] = ACTIONS(403), + [anon_sym_DOT_AT] = ACTIONS(403), + [anon_sym_QMARK_DOT] = ACTIONS(403), + [anon_sym_STAR_DOT] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_STAR_COLON] = ACTIONS(403), + [anon_sym_import] = ACTIONS(401), + [anon_sym_as] = ACTIONS(401), + [anon_sym_package] = ACTIONS(401), + [anon_sym_AT] = ACTIONS(401), + [anon_sym_assert] = ACTIONS(401), + [anon_sym_PLUS_PLUS] = ACTIONS(403), + [anon_sym_DASH_DASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_GT_GT_GT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_LT] = ACTIONS(403), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(403), + [anon_sym_LT_DOT_DOT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(403), + [anon_sym_in] = ACTIONS(401), + [anon_sym_BANGin] = ACTIONS(401), + [anon_sym_instanceof] = ACTIONS(401), + [anon_sym_BANGinstanceof] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_LT_EQ_GT] = ACTIONS(403), + [anon_sym_EQ_EQ_EQ] = ACTIONS(403), + [anon_sym_BANG_EQ_EQ] = ACTIONS(403), + [anon_sym_EQ_TILDE] = ACTIONS(403), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_QMARK_COLON] = ACTIONS(403), + [anon_sym_STAR_STAR] = ACTIONS(403), + [anon_sym_true] = ACTIONS(401), + [anon_sym_false] = ACTIONS(401), + [anon_sym_ATinterface] = ACTIONS(403), + [anon_sym_interface] = ACTIONS(401), + [anon_sym_class] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(403), + [anon_sym_RBRACE] = ACTIONS(403), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(401), + [anon_sym_this] = ACTIONS(401), + [anon_sym_null] = ACTIONS(401), + [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_do] = ACTIONS(401), + [anon_sym_while] = ACTIONS(401), + [anon_sym_for] = ACTIONS(401), + [anon_sym_if] = ACTIONS(401), + [anon_sym_else] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(403), + [aux_sym_number_literal_token1] = ACTIONS(401), + [aux_sym_number_literal_token2] = ACTIONS(403), + [aux_sym_number_literal_token3] = ACTIONS(403), + [aux_sym_number_literal_token4] = ACTIONS(401), + [aux_sym_number_literal_token5] = ACTIONS(403), + [anon_sym_return] = ACTIONS(401), + [anon_sym_SQUOTE] = ACTIONS(401), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(403), + [anon_sym_DQUOTE] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_DOLLAR_SLASH] = ACTIONS(403), + [anon_sym_switch] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_try] = ACTIONS(401), + [anon_sym_catch] = ACTIONS(401), + [anon_sym_finally] = ACTIONS(401), + [anon_sym_int] = ACTIONS(401), + [anon_sym_boolean] = ACTIONS(401), + [anon_sym_char] = ACTIONS(401), + [anon_sym_short] = ACTIONS(401), + [anon_sym_long] = ACTIONS(401), + [anon_sym_float] = ACTIONS(401), + [anon_sym_double] = ACTIONS(401), + [anon_sym_void] = ACTIONS(401), + [anon_sym_public] = ACTIONS(401), + [anon_sym_protected] = ACTIONS(401), + [anon_sym_private] = ACTIONS(401), + [anon_sym_static] = ACTIONS(401), + [anon_sym_final] = ACTIONS(401), + [anon_sym_synchronized] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_new] = ACTIONS(401), + }, + [112] = { + [sym_comment] = STATE(112), + [sym_groovy_doc] = STATE(112), + [sym_identifier] = ACTIONS(405), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(407), + [anon_sym_DOT_AMP] = ACTIONS(407), + [anon_sym_DOT_AT] = ACTIONS(407), + [anon_sym_QMARK_DOT] = ACTIONS(407), + [anon_sym_STAR_DOT] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_STAR_COLON] = ACTIONS(407), + [anon_sym_import] = ACTIONS(405), + [anon_sym_as] = ACTIONS(405), + [anon_sym_package] = ACTIONS(405), + [anon_sym_AT] = ACTIONS(405), + [anon_sym_assert] = ACTIONS(405), + [anon_sym_PLUS_PLUS] = ACTIONS(407), + [anon_sym_DASH_DASH] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_LT_LT] = ACTIONS(407), + [anon_sym_GT_GT] = ACTIONS(405), + [anon_sym_GT_GT_GT] = ACTIONS(407), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT_LT] = ACTIONS(407), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(407), + [anon_sym_LT_DOT_DOT] = ACTIONS(405), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(405), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_in] = ACTIONS(405), + [anon_sym_BANGin] = ACTIONS(405), + [anon_sym_instanceof] = ACTIONS(405), + [anon_sym_BANGinstanceof] = ACTIONS(407), + [anon_sym_EQ_EQ] = ACTIONS(405), + [anon_sym_BANG_EQ] = ACTIONS(405), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_EQ_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ_EQ] = ACTIONS(407), + [anon_sym_EQ_TILDE] = ACTIONS(407), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(405), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [anon_sym_QMARK_COLON] = ACTIONS(407), + [anon_sym_STAR_STAR] = ACTIONS(407), + [anon_sym_true] = ACTIONS(405), + [anon_sym_false] = ACTIONS(405), + [anon_sym_ATinterface] = ACTIONS(407), + [anon_sym_interface] = ACTIONS(405), + [anon_sym_class] = ACTIONS(405), + [anon_sym_COMMA] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_RBRACE] = ACTIONS(407), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(405), + [anon_sym_this] = ACTIONS(405), + [anon_sym_null] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(407), + [anon_sym_do] = ACTIONS(405), + [anon_sym_while] = ACTIONS(405), + [anon_sym_for] = ACTIONS(405), + [anon_sym_if] = ACTIONS(405), + [anon_sym_else] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [aux_sym_number_literal_token1] = ACTIONS(405), + [aux_sym_number_literal_token2] = ACTIONS(407), + [aux_sym_number_literal_token3] = ACTIONS(407), + [aux_sym_number_literal_token4] = ACTIONS(405), + [aux_sym_number_literal_token5] = ACTIONS(407), + [anon_sym_return] = ACTIONS(405), + [anon_sym_SQUOTE] = ACTIONS(405), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(405), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(407), + [anon_sym_DOLLAR_SLASH] = ACTIONS(407), + [anon_sym_switch] = ACTIONS(405), + [anon_sym_QMARK] = ACTIONS(405), + [anon_sym_try] = ACTIONS(405), + [anon_sym_catch] = ACTIONS(405), + [anon_sym_finally] = ACTIONS(405), + [anon_sym_int] = ACTIONS(405), + [anon_sym_boolean] = ACTIONS(405), + [anon_sym_char] = ACTIONS(405), + [anon_sym_short] = ACTIONS(405), + [anon_sym_long] = ACTIONS(405), + [anon_sym_float] = ACTIONS(405), + [anon_sym_double] = ACTIONS(405), + [anon_sym_void] = ACTIONS(405), + [anon_sym_public] = ACTIONS(405), + [anon_sym_protected] = ACTIONS(405), + [anon_sym_private] = ACTIONS(405), + [anon_sym_static] = ACTIONS(405), + [anon_sym_final] = ACTIONS(405), + [anon_sym_synchronized] = ACTIONS(405), + [anon_sym_TILDE] = ACTIONS(407), + [anon_sym_BANG] = ACTIONS(405), + [anon_sym_new] = ACTIONS(405), + }, + [113] = { + [sym_comment] = STATE(113), + [sym_groovy_doc] = STATE(113), + [sym_identifier] = ACTIONS(409), + [anon_sym_break] = ACTIONS(409), + [anon_sym_continue] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(411), + [anon_sym_DOT_AMP] = ACTIONS(411), + [anon_sym_DOT_AT] = ACTIONS(411), + [anon_sym_QMARK_DOT] = ACTIONS(411), + [anon_sym_STAR_DOT] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(409), + [anon_sym_STAR_COLON] = ACTIONS(411), + [anon_sym_import] = ACTIONS(409), + [anon_sym_as] = ACTIONS(409), + [anon_sym_package] = ACTIONS(409), + [anon_sym_AT] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_PLUS_PLUS] = ACTIONS(411), + [anon_sym_DASH_DASH] = ACTIONS(411), + [anon_sym_PERCENT] = ACTIONS(411), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_LT_LT] = ACTIONS(411), + [anon_sym_GT_GT] = ACTIONS(409), + [anon_sym_GT_GT_GT] = ACTIONS(411), + [anon_sym_DOT_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT_LT] = ACTIONS(411), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(411), + [anon_sym_LT_DOT_DOT] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_LT_EQ] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_GT_EQ] = ACTIONS(411), + [anon_sym_in] = ACTIONS(409), + [anon_sym_BANGin] = ACTIONS(409), + [anon_sym_instanceof] = ACTIONS(409), + [anon_sym_BANGinstanceof] = ACTIONS(411), + [anon_sym_EQ_EQ] = ACTIONS(409), + [anon_sym_BANG_EQ] = ACTIONS(409), + [anon_sym_LT_EQ_GT] = ACTIONS(411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(411), + [anon_sym_EQ_TILDE] = ACTIONS(411), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_CARET] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(411), + [anon_sym_PIPE_PIPE] = ACTIONS(411), + [anon_sym_QMARK_COLON] = ACTIONS(411), + [anon_sym_STAR_STAR] = ACTIONS(411), + [anon_sym_true] = ACTIONS(409), + [anon_sym_false] = ACTIONS(409), + [anon_sym_ATinterface] = ACTIONS(411), + [anon_sym_interface] = ACTIONS(409), + [anon_sym_class] = ACTIONS(409), + [anon_sym_COMMA] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_RBRACE] = ACTIONS(411), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(409), + [anon_sym_this] = ACTIONS(409), + [anon_sym_null] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_do] = ACTIONS(409), + [anon_sym_while] = ACTIONS(409), + [anon_sym_for] = ACTIONS(409), + [anon_sym_if] = ACTIONS(409), + [anon_sym_else] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(411), + [aux_sym_number_literal_token1] = ACTIONS(409), + [aux_sym_number_literal_token2] = ACTIONS(411), + [aux_sym_number_literal_token3] = ACTIONS(411), + [aux_sym_number_literal_token4] = ACTIONS(409), + [aux_sym_number_literal_token5] = ACTIONS(411), + [anon_sym_return] = ACTIONS(409), + [anon_sym_SQUOTE] = ACTIONS(409), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(411), + [anon_sym_DOLLAR_SLASH] = ACTIONS(411), + [anon_sym_switch] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(409), + [anon_sym_try] = ACTIONS(409), + [anon_sym_catch] = ACTIONS(409), + [anon_sym_finally] = ACTIONS(409), + [anon_sym_int] = ACTIONS(409), + [anon_sym_boolean] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_short] = ACTIONS(409), + [anon_sym_long] = ACTIONS(409), + [anon_sym_float] = ACTIONS(409), + [anon_sym_double] = ACTIONS(409), + [anon_sym_void] = ACTIONS(409), + [anon_sym_public] = ACTIONS(409), + [anon_sym_protected] = ACTIONS(409), + [anon_sym_private] = ACTIONS(409), + [anon_sym_static] = ACTIONS(409), + [anon_sym_final] = ACTIONS(409), + [anon_sym_synchronized] = ACTIONS(409), + [anon_sym_TILDE] = ACTIONS(411), + [anon_sym_BANG] = ACTIONS(409), + [anon_sym_new] = ACTIONS(409), + }, + [114] = { + [sym_comment] = STATE(114), + [sym_groovy_doc] = STATE(114), + [sym_identifier] = ACTIONS(279), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(281), + [anon_sym_DOT_AMP] = ACTIONS(281), + [anon_sym_DOT_AT] = ACTIONS(281), + [anon_sym_QMARK_DOT] = ACTIONS(281), + [anon_sym_STAR_DOT] = ACTIONS(281), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_STAR_COLON] = ACTIONS(281), + [anon_sym_DOT] = ACTIONS(279), + [anon_sym_import] = ACTIONS(279), + [anon_sym_as] = ACTIONS(279), + [anon_sym_package] = ACTIONS(279), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(279), + [anon_sym_PLUS_PLUS] = ACTIONS(281), + [anon_sym_DASH_DASH] = ACTIONS(281), + [anon_sym_PERCENT] = ACTIONS(281), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_LT_LT] = ACTIONS(281), + [anon_sym_GT_GT] = ACTIONS(279), + [anon_sym_GT_GT_GT] = ACTIONS(281), + [anon_sym_DOT_DOT] = ACTIONS(279), + [anon_sym_DOT_DOT_LT] = ACTIONS(281), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(281), + [anon_sym_LT_DOT_DOT] = ACTIONS(279), + [anon_sym_LT] = ACTIONS(279), + [anon_sym_LT_EQ] = ACTIONS(279), + [anon_sym_GT] = ACTIONS(279), + [anon_sym_GT_EQ] = ACTIONS(281), + [anon_sym_in] = ACTIONS(279), + [anon_sym_BANGin] = ACTIONS(279), + [anon_sym_instanceof] = ACTIONS(279), + [anon_sym_BANGinstanceof] = ACTIONS(281), + [anon_sym_EQ_EQ] = ACTIONS(279), + [anon_sym_BANG_EQ] = ACTIONS(279), + [anon_sym_LT_EQ_GT] = ACTIONS(281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(281), + [anon_sym_EQ_TILDE] = ACTIONS(281), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(279), + [anon_sym_CARET] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(279), + [anon_sym_AMP_AMP] = ACTIONS(281), + [anon_sym_PIPE_PIPE] = ACTIONS(281), + [anon_sym_QMARK_COLON] = ACTIONS(281), + [anon_sym_STAR_STAR] = ACTIONS(281), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_ATinterface] = ACTIONS(281), + [anon_sym_interface] = ACTIONS(279), + [anon_sym_class] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(281), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(281), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(279), + [anon_sym_this] = ACTIONS(279), + [anon_sym_null] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(281), + [anon_sym_do] = ACTIONS(279), + [anon_sym_while] = ACTIONS(279), + [anon_sym_for] = ACTIONS(279), + [anon_sym_if] = ACTIONS(279), + [anon_sym_else] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(281), + [aux_sym_number_literal_token1] = ACTIONS(279), + [aux_sym_number_literal_token2] = ACTIONS(281), + [aux_sym_number_literal_token3] = ACTIONS(281), + [aux_sym_number_literal_token4] = ACTIONS(279), + [aux_sym_number_literal_token5] = ACTIONS(281), + [anon_sym_return] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(279), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(281), + [anon_sym_DQUOTE] = ACTIONS(279), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [anon_sym_DOLLAR_SLASH] = ACTIONS(281), + [anon_sym_switch] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(279), + [anon_sym_try] = ACTIONS(279), + [anon_sym_int] = ACTIONS(279), + [anon_sym_boolean] = ACTIONS(279), + [anon_sym_char] = ACTIONS(279), + [anon_sym_short] = ACTIONS(279), + [anon_sym_long] = ACTIONS(279), + [anon_sym_float] = ACTIONS(279), + [anon_sym_double] = ACTIONS(279), + [anon_sym_void] = ACTIONS(279), + [anon_sym_public] = ACTIONS(279), + [anon_sym_protected] = ACTIONS(279), + [anon_sym_private] = ACTIONS(279), + [anon_sym_static] = ACTIONS(279), + [anon_sym_final] = ACTIONS(279), + [anon_sym_synchronized] = ACTIONS(279), + [anon_sym_TILDE] = ACTIONS(281), + [anon_sym_BANG] = ACTIONS(279), + [anon_sym_new] = ACTIONS(279), + }, + [115] = { + [sym_comment] = STATE(115), + [sym_groovy_doc] = STATE(115), + [sym_identifier] = ACTIONS(329), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_DOT_AMP] = ACTIONS(331), + [anon_sym_DOT_AT] = ACTIONS(331), + [anon_sym_QMARK_DOT] = ACTIONS(331), + [anon_sym_STAR_DOT] = ACTIONS(331), + [anon_sym_STAR] = ACTIONS(329), + [anon_sym_STAR_COLON] = ACTIONS(331), + [anon_sym_import] = ACTIONS(329), + [anon_sym_as] = ACTIONS(329), + [anon_sym_package] = ACTIONS(329), + [anon_sym_AT] = ACTIONS(329), + [anon_sym_assert] = ACTIONS(329), + [anon_sym_PLUS_PLUS] = ACTIONS(331), + [anon_sym_DASH_DASH] = ACTIONS(331), + [anon_sym_PERCENT] = ACTIONS(331), + [anon_sym_SLASH] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(329), + [anon_sym_DASH] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(331), + [anon_sym_DOT_DOT] = ACTIONS(329), + [anon_sym_DOT_DOT_LT] = ACTIONS(331), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(331), + [anon_sym_LT_DOT_DOT] = ACTIONS(329), + [anon_sym_LT] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(329), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_GT_EQ] = ACTIONS(331), + [anon_sym_in] = ACTIONS(329), + [anon_sym_BANGin] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANGinstanceof] = ACTIONS(331), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_LT_EQ_GT] = ACTIONS(331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(331), + [anon_sym_EQ_TILDE] = ACTIONS(331), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(331), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(331), + [anon_sym_QMARK_COLON] = ACTIONS(331), + [anon_sym_STAR_STAR] = ACTIONS(331), + [anon_sym_true] = ACTIONS(329), + [anon_sym_false] = ACTIONS(329), + [anon_sym_ATinterface] = ACTIONS(331), + [anon_sym_interface] = ACTIONS(329), + [anon_sym_class] = ACTIONS(329), + [anon_sym_COMMA] = ACTIONS(331), + [anon_sym_LBRACE] = ACTIONS(331), + [anon_sym_RBRACE] = ACTIONS(331), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(329), + [anon_sym_this] = ACTIONS(329), + [anon_sym_null] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_do] = ACTIONS(329), + [anon_sym_while] = ACTIONS(329), + [anon_sym_for] = ACTIONS(329), + [anon_sym_if] = ACTIONS(329), + [anon_sym_else] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(331), + [aux_sym_number_literal_token1] = ACTIONS(329), + [aux_sym_number_literal_token2] = ACTIONS(331), + [aux_sym_number_literal_token3] = ACTIONS(331), + [aux_sym_number_literal_token4] = ACTIONS(329), + [aux_sym_number_literal_token5] = ACTIONS(331), + [anon_sym_return] = ACTIONS(329), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(329), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(331), + [anon_sym_DOLLAR_SLASH] = ACTIONS(331), + [anon_sym_switch] = ACTIONS(329), + [anon_sym_QMARK] = ACTIONS(329), + [anon_sym_try] = ACTIONS(329), + [anon_sym_catch] = ACTIONS(329), + [anon_sym_finally] = ACTIONS(329), + [anon_sym_int] = ACTIONS(329), + [anon_sym_boolean] = ACTIONS(329), + [anon_sym_char] = ACTIONS(329), + [anon_sym_short] = ACTIONS(329), + [anon_sym_long] = ACTIONS(329), + [anon_sym_float] = ACTIONS(329), + [anon_sym_double] = ACTIONS(329), + [anon_sym_void] = ACTIONS(329), + [anon_sym_public] = ACTIONS(329), + [anon_sym_protected] = ACTIONS(329), + [anon_sym_private] = ACTIONS(329), + [anon_sym_static] = ACTIONS(329), + [anon_sym_final] = ACTIONS(329), + [anon_sym_synchronized] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(331), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_new] = ACTIONS(329), + }, + [116] = { + [sym_comment] = STATE(116), + [sym_groovy_doc] = STATE(116), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(291), + [anon_sym_DOT_AT] = ACTIONS(291), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_STAR_DOT] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_STAR_COLON] = ACTIONS(353), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(295), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(303), + [anon_sym_GT_GT_GT] = ACTIONS(301), + [anon_sym_DOT_DOT] = ACTIONS(303), + [anon_sym_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(295), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_in] = ACTIONS(295), + [anon_sym_BANGin] = ACTIONS(295), + [anon_sym_instanceof] = ACTIONS(295), + [anon_sym_BANGinstanceof] = ACTIONS(305), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_BANG_EQ] = ACTIONS(307), + [anon_sym_LT_EQ_GT] = ACTIONS(309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(309), + [anon_sym_EQ_TILDE] = ACTIONS(309), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(315), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(323), + [anon_sym_true] = ACTIONS(351), + [anon_sym_false] = ACTIONS(351), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_this] = ACTIONS(351), + [anon_sym_null] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(353), + [aux_sym_number_literal_token1] = ACTIONS(351), + [aux_sym_number_literal_token2] = ACTIONS(353), + [aux_sym_number_literal_token3] = ACTIONS(353), + [aux_sym_number_literal_token4] = ACTIONS(351), + [aux_sym_number_literal_token5] = ACTIONS(353), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_new] = ACTIONS(351), + }, + [117] = { + [sym_comment] = STATE(117), + [sym_groovy_doc] = STATE(117), + [sym_identifier] = ACTIONS(413), + [anon_sym_break] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_DOT_AMP] = ACTIONS(415), + [anon_sym_DOT_AT] = ACTIONS(415), + [anon_sym_QMARK_DOT] = ACTIONS(415), + [anon_sym_STAR_DOT] = ACTIONS(415), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_STAR_COLON] = ACTIONS(415), + [anon_sym_import] = ACTIONS(413), + [anon_sym_as] = ACTIONS(413), + [anon_sym_package] = ACTIONS(413), + [anon_sym_AT] = ACTIONS(413), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_PLUS_PLUS] = ACTIONS(415), + [anon_sym_DASH_DASH] = ACTIONS(415), + [anon_sym_PERCENT] = ACTIONS(415), + [anon_sym_SLASH] = ACTIONS(413), + [anon_sym_PLUS] = ACTIONS(413), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(415), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_GT_GT_GT] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(413), + [anon_sym_DOT_DOT_LT] = ACTIONS(415), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(415), + [anon_sym_LT_DOT_DOT] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_EQ] = ACTIONS(413), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_in] = ACTIONS(413), + [anon_sym_BANGin] = ACTIONS(413), + [anon_sym_instanceof] = ACTIONS(413), + [anon_sym_BANGinstanceof] = ACTIONS(415), + [anon_sym_EQ_EQ] = ACTIONS(413), + [anon_sym_BANG_EQ] = ACTIONS(413), + [anon_sym_LT_EQ_GT] = ACTIONS(415), + [anon_sym_EQ_EQ_EQ] = ACTIONS(415), + [anon_sym_BANG_EQ_EQ] = ACTIONS(415), + [anon_sym_EQ_TILDE] = ACTIONS(415), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_QMARK_COLON] = ACTIONS(415), + [anon_sym_STAR_STAR] = ACTIONS(415), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_ATinterface] = ACTIONS(415), + [anon_sym_interface] = ACTIONS(413), + [anon_sym_class] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(413), + [anon_sym_this] = ACTIONS(413), + [anon_sym_null] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_do] = ACTIONS(413), + [anon_sym_while] = ACTIONS(413), + [anon_sym_for] = ACTIONS(413), + [anon_sym_if] = ACTIONS(413), + [anon_sym_else] = ACTIONS(413), + [anon_sym_LBRACK] = ACTIONS(415), + [aux_sym_number_literal_token1] = ACTIONS(413), + [aux_sym_number_literal_token2] = ACTIONS(415), + [aux_sym_number_literal_token3] = ACTIONS(415), + [aux_sym_number_literal_token4] = ACTIONS(413), + [aux_sym_number_literal_token5] = ACTIONS(415), + [anon_sym_return] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(415), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_DOLLAR_SLASH] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(413), + [anon_sym_try] = ACTIONS(413), + [anon_sym_catch] = ACTIONS(413), + [anon_sym_finally] = ACTIONS(413), + [anon_sym_int] = ACTIONS(413), + [anon_sym_boolean] = ACTIONS(413), + [anon_sym_char] = ACTIONS(413), + [anon_sym_short] = ACTIONS(413), + [anon_sym_long] = ACTIONS(413), + [anon_sym_float] = ACTIONS(413), + [anon_sym_double] = ACTIONS(413), + [anon_sym_void] = ACTIONS(413), + [anon_sym_public] = ACTIONS(413), + [anon_sym_protected] = ACTIONS(413), + [anon_sym_private] = ACTIONS(413), + [anon_sym_static] = ACTIONS(413), + [anon_sym_final] = ACTIONS(413), + [anon_sym_synchronized] = ACTIONS(413), + [anon_sym_TILDE] = ACTIONS(415), + [anon_sym_BANG] = ACTIONS(413), + [anon_sym_new] = ACTIONS(413), + }, + [118] = { + [sym_comment] = STATE(118), + [sym_groovy_doc] = STATE(118), + [sym_identifier] = ACTIONS(417), + [anon_sym_break] = ACTIONS(417), + [anon_sym_continue] = ACTIONS(417), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_DOT_AMP] = ACTIONS(419), + [anon_sym_DOT_AT] = ACTIONS(419), + [anon_sym_QMARK_DOT] = ACTIONS(419), + [anon_sym_STAR_DOT] = ACTIONS(419), + [anon_sym_STAR] = ACTIONS(417), + [anon_sym_STAR_COLON] = ACTIONS(419), + [anon_sym_import] = ACTIONS(417), + [anon_sym_as] = ACTIONS(417), + [anon_sym_package] = ACTIONS(417), + [anon_sym_AT] = ACTIONS(417), + [anon_sym_assert] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(417), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(417), + [anon_sym_LT_LT] = ACTIONS(419), + [anon_sym_GT_GT] = ACTIONS(417), + [anon_sym_GT_GT_GT] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(417), + [anon_sym_DOT_DOT_LT] = ACTIONS(419), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(419), + [anon_sym_LT_DOT_DOT] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_LT_EQ] = ACTIONS(417), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_in] = ACTIONS(417), + [anon_sym_BANGin] = ACTIONS(417), + [anon_sym_instanceof] = ACTIONS(417), + [anon_sym_BANGinstanceof] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(417), + [anon_sym_BANG_EQ] = ACTIONS(417), + [anon_sym_LT_EQ_GT] = ACTIONS(419), + [anon_sym_EQ_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ_EQ] = ACTIONS(419), + [anon_sym_EQ_TILDE] = ACTIONS(419), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(419), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_CARET] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_QMARK_COLON] = ACTIONS(419), + [anon_sym_STAR_STAR] = ACTIONS(419), + [anon_sym_true] = ACTIONS(417), + [anon_sym_false] = ACTIONS(417), + [anon_sym_ATinterface] = ACTIONS(419), + [anon_sym_interface] = ACTIONS(417), + [anon_sym_class] = ACTIONS(417), + [anon_sym_COMMA] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(419), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(417), + [anon_sym_this] = ACTIONS(417), + [anon_sym_null] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(419), + [anon_sym_do] = ACTIONS(417), + [anon_sym_while] = ACTIONS(417), + [anon_sym_for] = ACTIONS(417), + [anon_sym_if] = ACTIONS(417), + [anon_sym_else] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [aux_sym_number_literal_token1] = ACTIONS(417), + [aux_sym_number_literal_token2] = ACTIONS(419), + [aux_sym_number_literal_token3] = ACTIONS(419), + [aux_sym_number_literal_token4] = ACTIONS(417), + [aux_sym_number_literal_token5] = ACTIONS(419), + [anon_sym_return] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(419), + [anon_sym_DQUOTE] = ACTIONS(417), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(419), + [anon_sym_DOLLAR_SLASH] = ACTIONS(419), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(417), + [anon_sym_try] = ACTIONS(417), + [anon_sym_catch] = ACTIONS(417), + [anon_sym_finally] = ACTIONS(417), + [anon_sym_int] = ACTIONS(417), + [anon_sym_boolean] = ACTIONS(417), + [anon_sym_char] = ACTIONS(417), + [anon_sym_short] = ACTIONS(417), + [anon_sym_long] = ACTIONS(417), + [anon_sym_float] = ACTIONS(417), + [anon_sym_double] = ACTIONS(417), + [anon_sym_void] = ACTIONS(417), + [anon_sym_public] = ACTIONS(417), + [anon_sym_protected] = ACTIONS(417), + [anon_sym_private] = ACTIONS(417), + [anon_sym_static] = ACTIONS(417), + [anon_sym_final] = ACTIONS(417), + [anon_sym_synchronized] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(419), + [anon_sym_BANG] = ACTIONS(417), + [anon_sym_new] = ACTIONS(417), + }, + [119] = { + [sym_comment] = STATE(119), + [sym_groovy_doc] = STATE(119), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(291), + [anon_sym_DOT_AT] = ACTIONS(291), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_STAR_DOT] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_STAR_COLON] = ACTIONS(353), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(295), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(303), + [anon_sym_GT_GT_GT] = ACTIONS(301), + [anon_sym_DOT_DOT] = ACTIONS(303), + [anon_sym_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(295), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_in] = ACTIONS(295), + [anon_sym_BANGin] = ACTIONS(295), + [anon_sym_instanceof] = ACTIONS(295), + [anon_sym_BANGinstanceof] = ACTIONS(305), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_BANG_EQ] = ACTIONS(307), + [anon_sym_LT_EQ_GT] = ACTIONS(309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(309), + [anon_sym_EQ_TILDE] = ACTIONS(309), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(315), + [anon_sym_AMP_AMP] = ACTIONS(317), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(323), + [anon_sym_true] = ACTIONS(351), + [anon_sym_false] = ACTIONS(351), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_this] = ACTIONS(351), + [anon_sym_null] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(353), + [aux_sym_number_literal_token1] = ACTIONS(351), + [aux_sym_number_literal_token2] = ACTIONS(353), + [aux_sym_number_literal_token3] = ACTIONS(353), + [aux_sym_number_literal_token4] = ACTIONS(351), + [aux_sym_number_literal_token5] = ACTIONS(353), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_new] = ACTIONS(351), + }, + [120] = { + [sym_comment] = STATE(120), + [sym_groovy_doc] = STATE(120), + [sym_identifier] = ACTIONS(271), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_SEMI] = ACTIONS(273), + [anon_sym_DOT_AMP] = ACTIONS(273), + [anon_sym_DOT_AT] = ACTIONS(273), + [anon_sym_QMARK_DOT] = ACTIONS(273), + [anon_sym_STAR_DOT] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_COLON] = ACTIONS(273), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_import] = ACTIONS(271), + [anon_sym_as] = ACTIONS(271), + [anon_sym_package] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_assert] = ACTIONS(271), + [anon_sym_PLUS_PLUS] = ACTIONS(273), + [anon_sym_DASH_DASH] = ACTIONS(273), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_LT_LT] = ACTIONS(273), + [anon_sym_GT_GT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(273), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_DOT_DOT_LT] = ACTIONS(273), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(273), + [anon_sym_LT_DOT_DOT] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(273), + [anon_sym_in] = ACTIONS(271), + [anon_sym_BANGin] = ACTIONS(271), + [anon_sym_instanceof] = ACTIONS(271), + [anon_sym_BANGinstanceof] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_LT_EQ_GT] = ACTIONS(273), + [anon_sym_EQ_EQ_EQ] = ACTIONS(273), + [anon_sym_BANG_EQ_EQ] = ACTIONS(273), + [anon_sym_EQ_TILDE] = ACTIONS(273), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(273), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(273), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(273), + [anon_sym_PIPE_PIPE] = ACTIONS(273), + [anon_sym_QMARK_COLON] = ACTIONS(273), + [anon_sym_STAR_STAR] = ACTIONS(273), + [anon_sym_true] = ACTIONS(271), + [anon_sym_false] = ACTIONS(271), + [anon_sym_ATinterface] = ACTIONS(273), + [anon_sym_interface] = ACTIONS(271), + [anon_sym_class] = ACTIONS(271), + [anon_sym_COMMA] = ACTIONS(273), + [anon_sym_LBRACE] = ACTIONS(273), + [anon_sym_DASH_GT] = ACTIONS(273), + [anon_sym_RBRACE] = ACTIONS(273), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(271), + [anon_sym_this] = ACTIONS(271), + [anon_sym_null] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(273), + [anon_sym_do] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [aux_sym_number_literal_token1] = ACTIONS(271), + [aux_sym_number_literal_token2] = ACTIONS(273), + [aux_sym_number_literal_token3] = ACTIONS(273), + [aux_sym_number_literal_token4] = ACTIONS(271), + [aux_sym_number_literal_token5] = ACTIONS(273), + [anon_sym_return] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(273), + [anon_sym_DQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(273), + [anon_sym_DOLLAR_SLASH] = ACTIONS(273), + [anon_sym_switch] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_int] = ACTIONS(271), + [anon_sym_boolean] = ACTIONS(271), + [anon_sym_char] = ACTIONS(271), + [anon_sym_short] = ACTIONS(271), + [anon_sym_long] = ACTIONS(271), + [anon_sym_float] = ACTIONS(271), + [anon_sym_double] = ACTIONS(271), + [anon_sym_void] = ACTIONS(271), + [anon_sym_public] = ACTIONS(271), + [anon_sym_protected] = ACTIONS(271), + [anon_sym_private] = ACTIONS(271), + [anon_sym_static] = ACTIONS(271), + [anon_sym_final] = ACTIONS(271), + [anon_sym_synchronized] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_new] = ACTIONS(271), + }, + [121] = { + [sym_comment] = STATE(121), + [sym_groovy_doc] = STATE(121), + [sym_identifier] = ACTIONS(343), + [anon_sym_break] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_DOT_AMP] = ACTIONS(345), + [anon_sym_DOT_AT] = ACTIONS(345), + [anon_sym_QMARK_DOT] = ACTIONS(345), + [anon_sym_STAR_DOT] = ACTIONS(345), + [anon_sym_STAR] = ACTIONS(343), + [anon_sym_STAR_COLON] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(343), + [anon_sym_import] = ACTIONS(343), + [anon_sym_as] = ACTIONS(343), + [anon_sym_package] = ACTIONS(343), + [anon_sym_AT] = ACTIONS(343), + [anon_sym_assert] = ACTIONS(343), + [anon_sym_PLUS_PLUS] = ACTIONS(345), + [anon_sym_DASH_DASH] = ACTIONS(345), + [anon_sym_PERCENT] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(343), + [anon_sym_DASH] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_GT_GT_GT] = ACTIONS(345), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_DOT_DOT_LT] = ACTIONS(345), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(345), + [anon_sym_LT_DOT_DOT] = ACTIONS(343), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_EQ] = ACTIONS(345), + [anon_sym_in] = ACTIONS(343), + [anon_sym_BANGin] = ACTIONS(343), + [anon_sym_instanceof] = ACTIONS(343), + [anon_sym_BANGinstanceof] = ACTIONS(345), + [anon_sym_EQ_EQ] = ACTIONS(343), + [anon_sym_BANG_EQ] = ACTIONS(343), + [anon_sym_LT_EQ_GT] = ACTIONS(345), + [anon_sym_EQ_EQ_EQ] = ACTIONS(345), + [anon_sym_BANG_EQ_EQ] = ACTIONS(345), + [anon_sym_EQ_TILDE] = ACTIONS(345), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(345), + [anon_sym_AMP] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(345), + [anon_sym_PIPE] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(345), + [anon_sym_PIPE_PIPE] = ACTIONS(345), + [anon_sym_QMARK_COLON] = ACTIONS(345), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_ATinterface] = ACTIONS(345), + [anon_sym_interface] = ACTIONS(343), + [anon_sym_class] = ACTIONS(343), + [anon_sym_COMMA] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_DASH_GT] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(345), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(343), + [anon_sym_this] = ACTIONS(343), + [anon_sym_null] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_do] = ACTIONS(343), + [anon_sym_while] = ACTIONS(343), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(343), + [anon_sym_else] = ACTIONS(343), + [anon_sym_LBRACK] = ACTIONS(345), + [aux_sym_number_literal_token1] = ACTIONS(343), + [aux_sym_number_literal_token2] = ACTIONS(345), + [aux_sym_number_literal_token3] = ACTIONS(345), + [aux_sym_number_literal_token4] = ACTIONS(343), + [aux_sym_number_literal_token5] = ACTIONS(345), + [anon_sym_return] = ACTIONS(343), + [anon_sym_SQUOTE] = ACTIONS(343), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_SLASH] = ACTIONS(345), + [anon_sym_switch] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(343), + [anon_sym_try] = ACTIONS(343), + [anon_sym_int] = ACTIONS(343), + [anon_sym_boolean] = ACTIONS(343), + [anon_sym_char] = ACTIONS(343), + [anon_sym_short] = ACTIONS(343), + [anon_sym_long] = ACTIONS(343), + [anon_sym_float] = ACTIONS(343), + [anon_sym_double] = ACTIONS(343), + [anon_sym_void] = ACTIONS(343), + [anon_sym_public] = ACTIONS(343), + [anon_sym_protected] = ACTIONS(343), + [anon_sym_private] = ACTIONS(343), + [anon_sym_static] = ACTIONS(343), + [anon_sym_final] = ACTIONS(343), + [anon_sym_synchronized] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_new] = ACTIONS(343), + }, + [122] = { + [sym_comment] = STATE(122), + [sym_groovy_doc] = STATE(122), + [sym_identifier] = ACTIONS(421), + [anon_sym_break] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_SEMI] = ACTIONS(423), + [anon_sym_DOT_AMP] = ACTIONS(423), + [anon_sym_DOT_AT] = ACTIONS(423), + [anon_sym_QMARK_DOT] = ACTIONS(423), + [anon_sym_STAR_DOT] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(421), + [anon_sym_STAR_COLON] = ACTIONS(423), + [anon_sym_import] = ACTIONS(421), + [anon_sym_as] = ACTIONS(421), + [anon_sym_package] = ACTIONS(421), + [anon_sym_AT] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_PLUS_PLUS] = ACTIONS(423), + [anon_sym_DASH_DASH] = ACTIONS(423), + [anon_sym_PERCENT] = ACTIONS(423), + [anon_sym_SLASH] = ACTIONS(421), + [anon_sym_PLUS] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(421), + [anon_sym_LT_LT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(421), + [anon_sym_GT_GT_GT] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(421), + [anon_sym_DOT_DOT_LT] = ACTIONS(423), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(423), + [anon_sym_LT_DOT_DOT] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_LT_EQ] = ACTIONS(421), + [anon_sym_GT] = ACTIONS(421), + [anon_sym_GT_EQ] = ACTIONS(423), + [anon_sym_in] = ACTIONS(421), + [anon_sym_BANGin] = ACTIONS(421), + [anon_sym_instanceof] = ACTIONS(421), + [anon_sym_BANGinstanceof] = ACTIONS(423), + [anon_sym_EQ_EQ] = ACTIONS(421), + [anon_sym_BANG_EQ] = ACTIONS(421), + [anon_sym_LT_EQ_GT] = ACTIONS(423), + [anon_sym_EQ_EQ_EQ] = ACTIONS(423), + [anon_sym_BANG_EQ_EQ] = ACTIONS(423), + [anon_sym_EQ_TILDE] = ACTIONS(423), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(421), + [anon_sym_CARET] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_AMP_AMP] = ACTIONS(423), + [anon_sym_PIPE_PIPE] = ACTIONS(423), + [anon_sym_QMARK_COLON] = ACTIONS(423), + [anon_sym_STAR_STAR] = ACTIONS(423), + [anon_sym_true] = ACTIONS(421), + [anon_sym_false] = ACTIONS(421), + [anon_sym_ATinterface] = ACTIONS(423), + [anon_sym_interface] = ACTIONS(421), + [anon_sym_class] = ACTIONS(421), + [anon_sym_COMMA] = ACTIONS(423), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_RBRACE] = ACTIONS(423), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(421), + [anon_sym_this] = ACTIONS(421), + [anon_sym_null] = ACTIONS(421), + [anon_sym_LPAREN] = ACTIONS(423), + [anon_sym_do] = ACTIONS(421), + [anon_sym_while] = ACTIONS(421), + [anon_sym_for] = ACTIONS(421), + [anon_sym_if] = ACTIONS(421), + [anon_sym_else] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(423), + [aux_sym_number_literal_token1] = ACTIONS(421), + [aux_sym_number_literal_token2] = ACTIONS(423), + [aux_sym_number_literal_token3] = ACTIONS(423), + [aux_sym_number_literal_token4] = ACTIONS(421), + [aux_sym_number_literal_token5] = ACTIONS(423), + [anon_sym_return] = ACTIONS(421), + [anon_sym_SQUOTE] = ACTIONS(421), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(423), + [anon_sym_DQUOTE] = ACTIONS(421), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(423), + [anon_sym_DOLLAR_SLASH] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(421), + [anon_sym_QMARK] = ACTIONS(421), + [anon_sym_try] = ACTIONS(421), + [anon_sym_catch] = ACTIONS(421), + [anon_sym_finally] = ACTIONS(421), + [anon_sym_int] = ACTIONS(421), + [anon_sym_boolean] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_short] = ACTIONS(421), + [anon_sym_long] = ACTIONS(421), + [anon_sym_float] = ACTIONS(421), + [anon_sym_double] = ACTIONS(421), + [anon_sym_void] = ACTIONS(421), + [anon_sym_public] = ACTIONS(421), + [anon_sym_protected] = ACTIONS(421), + [anon_sym_private] = ACTIONS(421), + [anon_sym_static] = ACTIONS(421), + [anon_sym_final] = ACTIONS(421), + [anon_sym_synchronized] = ACTIONS(421), + [anon_sym_TILDE] = ACTIONS(423), + [anon_sym_BANG] = ACTIONS(421), + [anon_sym_new] = ACTIONS(421), + }, + [123] = { + [sym_comment] = STATE(123), + [sym_groovy_doc] = STATE(123), + [sym_identifier] = ACTIONS(413), + [anon_sym_break] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_DOT_AMP] = ACTIONS(291), + [anon_sym_DOT_AT] = ACTIONS(291), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_STAR_DOT] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_STAR_COLON] = ACTIONS(415), + [anon_sym_import] = ACTIONS(413), + [anon_sym_as] = ACTIONS(413), + [anon_sym_package] = ACTIONS(413), + [anon_sym_AT] = ACTIONS(413), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_PLUS_PLUS] = ACTIONS(415), + [anon_sym_DASH_DASH] = ACTIONS(415), + [anon_sym_PERCENT] = ACTIONS(415), + [anon_sym_SLASH] = ACTIONS(413), + [anon_sym_PLUS] = ACTIONS(413), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(415), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_GT_GT_GT] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(413), + [anon_sym_DOT_DOT_LT] = ACTIONS(415), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(415), + [anon_sym_LT_DOT_DOT] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_EQ] = ACTIONS(413), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_in] = ACTIONS(413), + [anon_sym_BANGin] = ACTIONS(413), + [anon_sym_instanceof] = ACTIONS(413), + [anon_sym_BANGinstanceof] = ACTIONS(415), + [anon_sym_EQ_EQ] = ACTIONS(413), + [anon_sym_BANG_EQ] = ACTIONS(413), + [anon_sym_LT_EQ_GT] = ACTIONS(415), + [anon_sym_EQ_EQ_EQ] = ACTIONS(415), + [anon_sym_BANG_EQ_EQ] = ACTIONS(415), + [anon_sym_EQ_TILDE] = ACTIONS(415), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_QMARK_COLON] = ACTIONS(415), + [anon_sym_STAR_STAR] = ACTIONS(323), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_ATinterface] = ACTIONS(415), + [anon_sym_interface] = ACTIONS(413), + [anon_sym_class] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(413), + [anon_sym_this] = ACTIONS(413), + [anon_sym_null] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_do] = ACTIONS(413), + [anon_sym_while] = ACTIONS(413), + [anon_sym_for] = ACTIONS(413), + [anon_sym_if] = ACTIONS(413), + [anon_sym_else] = ACTIONS(413), + [anon_sym_LBRACK] = ACTIONS(415), + [aux_sym_number_literal_token1] = ACTIONS(413), + [aux_sym_number_literal_token2] = ACTIONS(415), + [aux_sym_number_literal_token3] = ACTIONS(415), + [aux_sym_number_literal_token4] = ACTIONS(413), + [aux_sym_number_literal_token5] = ACTIONS(415), + [anon_sym_return] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(415), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_DOLLAR_SLASH] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(413), + [anon_sym_try] = ACTIONS(413), + [anon_sym_catch] = ACTIONS(413), + [anon_sym_finally] = ACTIONS(413), + [anon_sym_int] = ACTIONS(413), + [anon_sym_boolean] = ACTIONS(413), + [anon_sym_char] = ACTIONS(413), + [anon_sym_short] = ACTIONS(413), + [anon_sym_long] = ACTIONS(413), + [anon_sym_float] = ACTIONS(413), + [anon_sym_double] = ACTIONS(413), + [anon_sym_void] = ACTIONS(413), + [anon_sym_public] = ACTIONS(413), + [anon_sym_protected] = ACTIONS(413), + [anon_sym_private] = ACTIONS(413), + [anon_sym_static] = ACTIONS(413), + [anon_sym_final] = ACTIONS(413), + [anon_sym_synchronized] = ACTIONS(413), + [anon_sym_TILDE] = ACTIONS(415), + [anon_sym_BANG] = ACTIONS(413), + [anon_sym_new] = ACTIONS(413), + }, + [124] = { + [sym_comment] = STATE(124), + [sym_groovy_doc] = STATE(124), + [sym_identifier] = ACTIONS(425), + [anon_sym_break] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(425), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_DOT_AMP] = ACTIONS(427), + [anon_sym_DOT_AT] = ACTIONS(427), + [anon_sym_QMARK_DOT] = ACTIONS(427), + [anon_sym_STAR_DOT] = ACTIONS(427), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_STAR_COLON] = ACTIONS(427), + [anon_sym_import] = ACTIONS(425), + [anon_sym_as] = ACTIONS(425), + [anon_sym_package] = ACTIONS(425), + [anon_sym_AT] = ACTIONS(425), + [anon_sym_assert] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(427), + [anon_sym_DASH_DASH] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(425), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_LT_LT] = ACTIONS(427), + [anon_sym_GT_GT] = ACTIONS(425), + [anon_sym_GT_GT_GT] = ACTIONS(427), + [anon_sym_DOT_DOT] = ACTIONS(425), + [anon_sym_DOT_DOT_LT] = ACTIONS(427), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(427), + [anon_sym_LT_DOT_DOT] = ACTIONS(425), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_LT_EQ] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(425), + [anon_sym_GT_EQ] = ACTIONS(427), + [anon_sym_in] = ACTIONS(425), + [anon_sym_BANGin] = ACTIONS(425), + [anon_sym_instanceof] = ACTIONS(425), + [anon_sym_BANGinstanceof] = ACTIONS(427), + [anon_sym_EQ_EQ] = ACTIONS(425), + [anon_sym_BANG_EQ] = ACTIONS(425), + [anon_sym_LT_EQ_GT] = ACTIONS(427), + [anon_sym_EQ_EQ_EQ] = ACTIONS(427), + [anon_sym_BANG_EQ_EQ] = ACTIONS(427), + [anon_sym_EQ_TILDE] = ACTIONS(427), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_PIPE] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(427), + [anon_sym_PIPE_PIPE] = ACTIONS(427), + [anon_sym_QMARK_COLON] = ACTIONS(427), + [anon_sym_STAR_STAR] = ACTIONS(427), + [anon_sym_true] = ACTIONS(425), + [anon_sym_false] = ACTIONS(425), + [anon_sym_ATinterface] = ACTIONS(427), + [anon_sym_interface] = ACTIONS(425), + [anon_sym_class] = ACTIONS(425), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(427), + [anon_sym_RBRACE] = ACTIONS(427), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(425), + [anon_sym_this] = ACTIONS(425), + [anon_sym_null] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_do] = ACTIONS(425), + [anon_sym_while] = ACTIONS(425), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(425), + [anon_sym_else] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [aux_sym_number_literal_token1] = ACTIONS(425), + [aux_sym_number_literal_token2] = ACTIONS(427), + [aux_sym_number_literal_token3] = ACTIONS(427), + [aux_sym_number_literal_token4] = ACTIONS(425), + [aux_sym_number_literal_token5] = ACTIONS(427), + [anon_sym_return] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(425), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(425), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR_SLASH] = ACTIONS(427), + [anon_sym_switch] = ACTIONS(425), + [anon_sym_QMARK] = ACTIONS(425), + [anon_sym_try] = ACTIONS(425), + [anon_sym_catch] = ACTIONS(425), + [anon_sym_finally] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_char] = ACTIONS(425), + [anon_sym_short] = ACTIONS(425), + [anon_sym_long] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_double] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_static] = ACTIONS(425), + [anon_sym_final] = ACTIONS(425), + [anon_sym_synchronized] = ACTIONS(425), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(425), + [anon_sym_new] = ACTIONS(425), + }, + [125] = { + [sym_comment] = STATE(125), + [sym_groovy_doc] = STATE(125), + [sym_identifier] = ACTIONS(429), + [anon_sym_break] = ACTIONS(429), + [anon_sym_continue] = ACTIONS(429), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_DOT_AMP] = ACTIONS(431), + [anon_sym_DOT_AT] = ACTIONS(431), + [anon_sym_QMARK_DOT] = ACTIONS(431), + [anon_sym_STAR_DOT] = ACTIONS(431), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_STAR_COLON] = ACTIONS(431), + [anon_sym_import] = ACTIONS(429), + [anon_sym_as] = ACTIONS(429), + [anon_sym_package] = ACTIONS(429), + [anon_sym_AT] = ACTIONS(429), + [anon_sym_assert] = ACTIONS(429), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(431), + [anon_sym_GT_GT] = ACTIONS(429), + [anon_sym_GT_GT_GT] = ACTIONS(431), + [anon_sym_DOT_DOT] = ACTIONS(429), + [anon_sym_DOT_DOT_LT] = ACTIONS(431), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(431), + [anon_sym_LT_DOT_DOT] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LT_EQ] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_EQ] = ACTIONS(431), + [anon_sym_in] = ACTIONS(429), + [anon_sym_BANGin] = ACTIONS(429), + [anon_sym_instanceof] = ACTIONS(429), + [anon_sym_BANGinstanceof] = ACTIONS(431), + [anon_sym_EQ_EQ] = ACTIONS(429), + [anon_sym_BANG_EQ] = ACTIONS(429), + [anon_sym_LT_EQ_GT] = ACTIONS(431), + [anon_sym_EQ_EQ_EQ] = ACTIONS(431), + [anon_sym_BANG_EQ_EQ] = ACTIONS(431), + [anon_sym_EQ_TILDE] = ACTIONS(431), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(431), + [anon_sym_PIPE_PIPE] = ACTIONS(431), + [anon_sym_QMARK_COLON] = ACTIONS(431), + [anon_sym_STAR_STAR] = ACTIONS(431), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ATinterface] = ACTIONS(431), + [anon_sym_interface] = ACTIONS(429), + [anon_sym_class] = ACTIONS(429), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_RBRACE] = ACTIONS(431), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(429), + [anon_sym_this] = ACTIONS(429), + [anon_sym_null] = ACTIONS(429), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_do] = ACTIONS(429), + [anon_sym_while] = ACTIONS(429), + [anon_sym_for] = ACTIONS(429), + [anon_sym_if] = ACTIONS(429), + [anon_sym_else] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(431), + [aux_sym_number_literal_token1] = ACTIONS(429), + [aux_sym_number_literal_token2] = ACTIONS(431), + [aux_sym_number_literal_token3] = ACTIONS(431), + [aux_sym_number_literal_token4] = ACTIONS(429), + [aux_sym_number_literal_token5] = ACTIONS(431), + [anon_sym_return] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(429), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(429), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(431), + [anon_sym_DOLLAR_SLASH] = ACTIONS(431), + [anon_sym_switch] = ACTIONS(429), + [anon_sym_QMARK] = ACTIONS(429), + [anon_sym_try] = ACTIONS(429), + [anon_sym_catch] = ACTIONS(429), + [anon_sym_finally] = ACTIONS(429), + [anon_sym_int] = ACTIONS(429), + [anon_sym_boolean] = ACTIONS(429), + [anon_sym_char] = ACTIONS(429), + [anon_sym_short] = ACTIONS(429), + [anon_sym_long] = ACTIONS(429), + [anon_sym_float] = ACTIONS(429), + [anon_sym_double] = ACTIONS(429), + [anon_sym_void] = ACTIONS(429), + [anon_sym_public] = ACTIONS(429), + [anon_sym_protected] = ACTIONS(429), + [anon_sym_private] = ACTIONS(429), + [anon_sym_static] = ACTIONS(429), + [anon_sym_final] = ACTIONS(429), + [anon_sym_synchronized] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_new] = ACTIONS(429), + }, + [126] = { + [sym_comment] = STATE(126), + [sym_groovy_doc] = STATE(126), + [sym_identifier] = ACTIONS(99), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_DOT_AMP] = ACTIONS(93), + [anon_sym_DOT_AT] = ACTIONS(93), + [anon_sym_QMARK_DOT] = ACTIONS(93), + [anon_sym_STAR_DOT] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_STAR_COLON] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(97), + [anon_sym_import] = ACTIONS(99), + [anon_sym_as] = ACTIONS(99), + [anon_sym_package] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(93), + [anon_sym_SLASH] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(99), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_LT_LT] = ACTIONS(93), + [anon_sym_GT_GT] = ACTIONS(99), + [anon_sym_GT_GT_GT] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(99), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_in] = ACTIONS(99), + [anon_sym_BANGin] = ACTIONS(99), + [anon_sym_instanceof] = ACTIONS(99), + [anon_sym_BANGinstanceof] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_LT_EQ_GT] = ACTIONS(93), + [anon_sym_EQ_EQ_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ_EQ] = ACTIONS(93), + [anon_sym_EQ_TILDE] = ACTIONS(93), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(99), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(93), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_ATinterface] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(99), + [anon_sym_class] = ACTIONS(99), + [anon_sym_COMMA] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_DASH_GT] = ACTIONS(93), + [anon_sym_RBRACE] = ACTIONS(93), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(99), + [anon_sym_this] = ACTIONS(99), + [anon_sym_null] = ACTIONS(99), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(99), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(99), + [anon_sym_if] = ACTIONS(99), + [anon_sym_else] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(101), + [aux_sym_number_literal_token1] = ACTIONS(99), + [aux_sym_number_literal_token2] = ACTIONS(93), + [aux_sym_number_literal_token3] = ACTIONS(93), + [aux_sym_number_literal_token4] = ACTIONS(99), + [aux_sym_number_literal_token5] = ACTIONS(93), + [anon_sym_return] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_SLASH] = ACTIONS(93), + [anon_sym_switch] = ACTIONS(99), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_int] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_char] = ACTIONS(99), + [anon_sym_short] = ACTIONS(99), + [anon_sym_long] = ACTIONS(99), + [anon_sym_float] = ACTIONS(99), + [anon_sym_double] = ACTIONS(99), + [anon_sym_void] = ACTIONS(99), + [anon_sym_public] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_static] = ACTIONS(99), + [anon_sym_final] = ACTIONS(99), + [anon_sym_synchronized] = ACTIONS(99), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_new] = ACTIONS(99), + }, + [127] = { + [sym_comment] = STATE(127), + [sym_groovy_doc] = STATE(127), + [sym_identifier] = ACTIONS(433), + [anon_sym_break] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_DOT_AMP] = ACTIONS(435), + [anon_sym_DOT_AT] = ACTIONS(435), + [anon_sym_QMARK_DOT] = ACTIONS(435), + [anon_sym_STAR_DOT] = ACTIONS(435), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_STAR_COLON] = ACTIONS(435), + [anon_sym_import] = ACTIONS(433), + [anon_sym_as] = ACTIONS(433), + [anon_sym_package] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_assert] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PERCENT] = ACTIONS(435), + [anon_sym_SLASH] = ACTIONS(433), + [anon_sym_PLUS] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_LT_LT] = ACTIONS(435), + [anon_sym_GT_GT] = ACTIONS(433), + [anon_sym_GT_GT_GT] = ACTIONS(435), + [anon_sym_DOT_DOT] = ACTIONS(433), + [anon_sym_DOT_DOT_LT] = ACTIONS(435), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(435), + [anon_sym_LT_DOT_DOT] = ACTIONS(433), + [anon_sym_LT] = ACTIONS(433), + [anon_sym_LT_EQ] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(433), + [anon_sym_GT_EQ] = ACTIONS(435), + [anon_sym_in] = ACTIONS(433), + [anon_sym_BANGin] = ACTIONS(433), + [anon_sym_instanceof] = ACTIONS(433), + [anon_sym_BANGinstanceof] = ACTIONS(435), + [anon_sym_EQ_EQ] = ACTIONS(433), + [anon_sym_BANG_EQ] = ACTIONS(433), + [anon_sym_LT_EQ_GT] = ACTIONS(435), + [anon_sym_EQ_EQ_EQ] = ACTIONS(435), + [anon_sym_BANG_EQ_EQ] = ACTIONS(435), + [anon_sym_EQ_TILDE] = ACTIONS(435), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(435), + [anon_sym_AMP] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(433), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_QMARK_COLON] = ACTIONS(435), + [anon_sym_STAR_STAR] = ACTIONS(435), + [anon_sym_true] = ACTIONS(433), + [anon_sym_false] = ACTIONS(433), + [anon_sym_ATinterface] = ACTIONS(435), + [anon_sym_interface] = ACTIONS(433), + [anon_sym_class] = ACTIONS(433), + [anon_sym_COMMA] = ACTIONS(435), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_RBRACE] = ACTIONS(435), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(433), + [anon_sym_this] = ACTIONS(433), + [anon_sym_null] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_do] = ACTIONS(433), + [anon_sym_while] = ACTIONS(433), + [anon_sym_for] = ACTIONS(433), + [anon_sym_if] = ACTIONS(433), + [anon_sym_else] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [aux_sym_number_literal_token1] = ACTIONS(433), + [aux_sym_number_literal_token2] = ACTIONS(435), + [aux_sym_number_literal_token3] = ACTIONS(435), + [aux_sym_number_literal_token4] = ACTIONS(433), + [aux_sym_number_literal_token5] = ACTIONS(435), + [anon_sym_return] = ACTIONS(433), + [anon_sym_SQUOTE] = ACTIONS(433), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(433), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(435), + [anon_sym_DOLLAR_SLASH] = ACTIONS(435), + [anon_sym_switch] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [anon_sym_try] = ACTIONS(433), + [anon_sym_catch] = ACTIONS(433), + [anon_sym_finally] = ACTIONS(433), + [anon_sym_int] = ACTIONS(433), + [anon_sym_boolean] = ACTIONS(433), + [anon_sym_char] = ACTIONS(433), + [anon_sym_short] = ACTIONS(433), + [anon_sym_long] = ACTIONS(433), + [anon_sym_float] = ACTIONS(433), + [anon_sym_double] = ACTIONS(433), + [anon_sym_void] = ACTIONS(433), + [anon_sym_public] = ACTIONS(433), + [anon_sym_protected] = ACTIONS(433), + [anon_sym_private] = ACTIONS(433), + [anon_sym_static] = ACTIONS(433), + [anon_sym_final] = ACTIONS(433), + [anon_sym_synchronized] = ACTIONS(433), + [anon_sym_TILDE] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_new] = ACTIONS(433), + }, + [128] = { + [sym_comment] = STATE(128), + [sym_groovy_doc] = STATE(128), + [sym_identifier] = ACTIONS(335), + [anon_sym_break] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(335), + [anon_sym_SEMI] = ACTIONS(337), + [anon_sym_DOT_AMP] = ACTIONS(337), + [anon_sym_DOT_AT] = ACTIONS(337), + [anon_sym_QMARK_DOT] = ACTIONS(337), + [anon_sym_STAR_DOT] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(335), + [anon_sym_STAR_COLON] = ACTIONS(337), + [anon_sym_DOT] = ACTIONS(335), + [anon_sym_import] = ACTIONS(335), + [anon_sym_as] = ACTIONS(335), + [anon_sym_package] = ACTIONS(335), + [anon_sym_AT] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(337), + [anon_sym_DASH_DASH] = ACTIONS(337), + [anon_sym_PERCENT] = ACTIONS(337), + [anon_sym_SLASH] = ACTIONS(335), + [anon_sym_PLUS] = ACTIONS(335), + [anon_sym_DASH] = ACTIONS(335), + [anon_sym_LT_LT] = ACTIONS(337), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_GT_GT_GT] = ACTIONS(337), + [anon_sym_DOT_DOT] = ACTIONS(335), + [anon_sym_DOT_DOT_LT] = ACTIONS(337), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(337), + [anon_sym_LT_DOT_DOT] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_LT_EQ] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(335), + [anon_sym_GT_EQ] = ACTIONS(337), + [anon_sym_in] = ACTIONS(335), + [anon_sym_BANGin] = ACTIONS(335), + [anon_sym_instanceof] = ACTIONS(335), + [anon_sym_BANGinstanceof] = ACTIONS(337), + [anon_sym_EQ_EQ] = ACTIONS(335), + [anon_sym_BANG_EQ] = ACTIONS(335), + [anon_sym_LT_EQ_GT] = ACTIONS(337), + [anon_sym_EQ_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ_EQ] = ACTIONS(337), + [anon_sym_EQ_TILDE] = ACTIONS(337), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(335), + [anon_sym_CARET] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(335), + [anon_sym_AMP_AMP] = ACTIONS(337), + [anon_sym_PIPE_PIPE] = ACTIONS(337), + [anon_sym_QMARK_COLON] = ACTIONS(337), + [anon_sym_STAR_STAR] = ACTIONS(337), + [anon_sym_true] = ACTIONS(335), + [anon_sym_false] = ACTIONS(335), + [anon_sym_ATinterface] = ACTIONS(337), + [anon_sym_interface] = ACTIONS(335), + [anon_sym_class] = ACTIONS(335), + [anon_sym_COMMA] = ACTIONS(337), + [anon_sym_LBRACE] = ACTIONS(337), + [anon_sym_DASH_GT] = ACTIONS(337), + [anon_sym_RBRACE] = ACTIONS(337), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(335), + [anon_sym_this] = ACTIONS(335), + [anon_sym_null] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_do] = ACTIONS(335), + [anon_sym_while] = ACTIONS(335), + [anon_sym_for] = ACTIONS(335), + [anon_sym_if] = ACTIONS(335), + [anon_sym_else] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [aux_sym_number_literal_token1] = ACTIONS(335), + [aux_sym_number_literal_token2] = ACTIONS(337), + [aux_sym_number_literal_token3] = ACTIONS(337), + [aux_sym_number_literal_token4] = ACTIONS(335), + [aux_sym_number_literal_token5] = ACTIONS(337), + [anon_sym_return] = ACTIONS(335), + [anon_sym_SQUOTE] = ACTIONS(335), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(337), + [anon_sym_DQUOTE] = ACTIONS(335), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(337), + [anon_sym_DOLLAR_SLASH] = ACTIONS(337), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_QMARK] = ACTIONS(335), + [anon_sym_try] = ACTIONS(335), + [anon_sym_int] = ACTIONS(335), + [anon_sym_boolean] = ACTIONS(335), + [anon_sym_char] = ACTIONS(335), + [anon_sym_short] = ACTIONS(335), + [anon_sym_long] = ACTIONS(335), + [anon_sym_float] = ACTIONS(335), + [anon_sym_double] = ACTIONS(335), + [anon_sym_void] = ACTIONS(335), + [anon_sym_public] = ACTIONS(335), + [anon_sym_protected] = ACTIONS(335), + [anon_sym_private] = ACTIONS(335), + [anon_sym_static] = ACTIONS(335), + [anon_sym_final] = ACTIONS(335), + [anon_sym_synchronized] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(337), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_new] = ACTIONS(335), + }, + [129] = { + [sym_comment] = STATE(129), + [sym_groovy_doc] = STATE(129), + [sym_identifier] = ACTIONS(339), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(341), + [anon_sym_DOT_AMP] = ACTIONS(341), + [anon_sym_DOT_AT] = ACTIONS(341), + [anon_sym_QMARK_DOT] = ACTIONS(341), + [anon_sym_STAR_DOT] = ACTIONS(341), + [anon_sym_STAR] = ACTIONS(339), + [anon_sym_STAR_COLON] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(339), + [anon_sym_import] = ACTIONS(339), + [anon_sym_as] = ACTIONS(339), + [anon_sym_package] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(339), + [anon_sym_assert] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_PERCENT] = ACTIONS(341), + [anon_sym_SLASH] = ACTIONS(339), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_GT_GT_GT] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(339), + [anon_sym_DOT_DOT_LT] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(341), + [anon_sym_LT_DOT_DOT] = ACTIONS(339), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_in] = ACTIONS(339), + [anon_sym_BANGin] = ACTIONS(339), + [anon_sym_instanceof] = ACTIONS(339), + [anon_sym_BANGinstanceof] = ACTIONS(341), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_LT_EQ_GT] = ACTIONS(341), + [anon_sym_EQ_EQ_EQ] = ACTIONS(341), + [anon_sym_BANG_EQ_EQ] = ACTIONS(341), + [anon_sym_EQ_TILDE] = ACTIONS(341), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(339), + [anon_sym_CARET] = ACTIONS(341), + [anon_sym_PIPE] = ACTIONS(339), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_QMARK_COLON] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(341), + [anon_sym_true] = ACTIONS(339), + [anon_sym_false] = ACTIONS(339), + [anon_sym_ATinterface] = ACTIONS(341), + [anon_sym_interface] = ACTIONS(339), + [anon_sym_class] = ACTIONS(339), + [anon_sym_COMMA] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_DASH_GT] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(341), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(339), + [anon_sym_this] = ACTIONS(339), + [anon_sym_null] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_do] = ACTIONS(339), + [anon_sym_while] = ACTIONS(339), + [anon_sym_for] = ACTIONS(339), + [anon_sym_if] = ACTIONS(339), + [anon_sym_else] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(341), + [aux_sym_number_literal_token1] = ACTIONS(339), + [aux_sym_number_literal_token2] = ACTIONS(341), + [aux_sym_number_literal_token3] = ACTIONS(341), + [aux_sym_number_literal_token4] = ACTIONS(339), + [aux_sym_number_literal_token5] = ACTIONS(341), + [anon_sym_return] = ACTIONS(339), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(341), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(341), + [anon_sym_DOLLAR_SLASH] = ACTIONS(341), + [anon_sym_switch] = ACTIONS(339), + [anon_sym_QMARK] = ACTIONS(339), + [anon_sym_try] = ACTIONS(339), + [anon_sym_int] = ACTIONS(339), + [anon_sym_boolean] = ACTIONS(339), + [anon_sym_char] = ACTIONS(339), + [anon_sym_short] = ACTIONS(339), + [anon_sym_long] = ACTIONS(339), + [anon_sym_float] = ACTIONS(339), + [anon_sym_double] = ACTIONS(339), + [anon_sym_void] = ACTIONS(339), + [anon_sym_public] = ACTIONS(339), + [anon_sym_protected] = ACTIONS(339), + [anon_sym_private] = ACTIONS(339), + [anon_sym_static] = ACTIONS(339), + [anon_sym_final] = ACTIONS(339), + [anon_sym_synchronized] = ACTIONS(339), + [anon_sym_TILDE] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_new] = ACTIONS(339), + }, + [130] = { + [sym_comment] = STATE(130), + [sym_groovy_doc] = STATE(130), + [sym_identifier] = ACTIONS(69), + [anon_sym_break] = ACTIONS(69), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_SEMI] = ACTIONS(71), + [anon_sym_DOT_AMP] = ACTIONS(71), + [anon_sym_DOT_AT] = ACTIONS(71), + [anon_sym_QMARK_DOT] = ACTIONS(71), + [anon_sym_STAR_DOT] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(69), + [anon_sym_STAR_COLON] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(69), + [anon_sym_import] = ACTIONS(69), + [anon_sym_as] = ACTIONS(69), + [anon_sym_package] = ACTIONS(69), + [anon_sym_AT] = ACTIONS(69), + [anon_sym_assert] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_LT_LT] = ACTIONS(71), + [anon_sym_GT_GT] = ACTIONS(69), + [anon_sym_GT_GT_GT] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_DOT_DOT_LT] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(71), + [anon_sym_LT_DOT_DOT] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(69), + [anon_sym_LT_EQ] = ACTIONS(69), + [anon_sym_GT] = ACTIONS(69), + [anon_sym_GT_EQ] = ACTIONS(71), + [anon_sym_in] = ACTIONS(69), + [anon_sym_BANGin] = ACTIONS(69), + [anon_sym_instanceof] = ACTIONS(69), + [anon_sym_BANGinstanceof] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(69), + [anon_sym_BANG_EQ] = ACTIONS(69), + [anon_sym_LT_EQ_GT] = ACTIONS(71), + [anon_sym_EQ_EQ_EQ] = ACTIONS(71), + [anon_sym_BANG_EQ_EQ] = ACTIONS(71), + [anon_sym_EQ_TILDE] = ACTIONS(71), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(69), + [anon_sym_CARET] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(69), + [anon_sym_AMP_AMP] = ACTIONS(71), + [anon_sym_PIPE_PIPE] = ACTIONS(71), + [anon_sym_QMARK_COLON] = ACTIONS(71), + [anon_sym_STAR_STAR] = ACTIONS(71), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(69), + [anon_sym_class] = ACTIONS(69), + [anon_sym_COMMA] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DASH_GT] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(71), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(69), + [anon_sym_this] = ACTIONS(69), + [anon_sym_null] = ACTIONS(69), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_do] = ACTIONS(69), + [anon_sym_while] = ACTIONS(69), + [anon_sym_for] = ACTIONS(69), + [anon_sym_if] = ACTIONS(69), + [anon_sym_else] = ACTIONS(69), + [anon_sym_LBRACK] = ACTIONS(71), + [aux_sym_number_literal_token1] = ACTIONS(69), + [aux_sym_number_literal_token2] = ACTIONS(71), + [aux_sym_number_literal_token3] = ACTIONS(71), + [aux_sym_number_literal_token4] = ACTIONS(69), + [aux_sym_number_literal_token5] = ACTIONS(71), + [anon_sym_return] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_SLASH] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_QMARK] = ACTIONS(69), + [anon_sym_try] = ACTIONS(69), + [anon_sym_int] = ACTIONS(69), + [anon_sym_boolean] = ACTIONS(69), + [anon_sym_char] = ACTIONS(69), + [anon_sym_short] = ACTIONS(69), + [anon_sym_long] = ACTIONS(69), + [anon_sym_float] = ACTIONS(69), + [anon_sym_double] = ACTIONS(69), + [anon_sym_void] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_protected] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_final] = ACTIONS(69), + [anon_sym_synchronized] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_new] = ACTIONS(69), + }, + [131] = { + [sym_comment] = STATE(131), + [sym_groovy_doc] = STATE(131), + [sym_identifier] = ACTIONS(267), + [anon_sym_break] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(267), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_DOT_AMP] = ACTIONS(269), + [anon_sym_DOT_AT] = ACTIONS(269), + [anon_sym_QMARK_DOT] = ACTIONS(269), + [anon_sym_STAR_DOT] = ACTIONS(269), + [anon_sym_STAR] = ACTIONS(267), + [anon_sym_STAR_COLON] = ACTIONS(269), + [anon_sym_import] = ACTIONS(267), + [anon_sym_as] = ACTIONS(267), + [anon_sym_package] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(267), + [anon_sym_assert] = ACTIONS(267), + [anon_sym_PLUS_PLUS] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(269), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_GT_GT] = ACTIONS(267), + [anon_sym_GT_GT_GT] = ACTIONS(269), + [anon_sym_DOT_DOT] = ACTIONS(267), + [anon_sym_DOT_DOT_LT] = ACTIONS(269), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(269), + [anon_sym_LT_DOT_DOT] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(267), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_in] = ACTIONS(267), + [anon_sym_BANGin] = ACTIONS(267), + [anon_sym_instanceof] = ACTIONS(267), + [anon_sym_BANGinstanceof] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(267), + [anon_sym_BANG_EQ] = ACTIONS(267), + [anon_sym_LT_EQ_GT] = ACTIONS(269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(269), + [anon_sym_EQ_TILDE] = ACTIONS(269), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(267), + [anon_sym_AMP_AMP] = ACTIONS(269), + [anon_sym_PIPE_PIPE] = ACTIONS(269), + [anon_sym_QMARK_COLON] = ACTIONS(269), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_true] = ACTIONS(267), + [anon_sym_false] = ACTIONS(267), + [anon_sym_ATinterface] = ACTIONS(269), + [anon_sym_interface] = ACTIONS(267), + [anon_sym_class] = ACTIONS(267), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_DASH_GT] = ACTIONS(269), + [anon_sym_RBRACE] = ACTIONS(269), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(267), + [anon_sym_this] = ACTIONS(267), + [anon_sym_null] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(269), + [anon_sym_do] = ACTIONS(267), + [anon_sym_while] = ACTIONS(267), + [anon_sym_for] = ACTIONS(267), + [anon_sym_if] = ACTIONS(267), + [anon_sym_else] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_COLON] = ACTIONS(269), + [aux_sym_number_literal_token1] = ACTIONS(267), + [aux_sym_number_literal_token2] = ACTIONS(269), + [aux_sym_number_literal_token3] = ACTIONS(269), + [aux_sym_number_literal_token4] = ACTIONS(267), + [aux_sym_number_literal_token5] = ACTIONS(269), + [anon_sym_return] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(267), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(267), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(269), + [anon_sym_DOLLAR_SLASH] = ACTIONS(269), + [anon_sym_switch] = ACTIONS(267), + [anon_sym_QMARK] = ACTIONS(267), + [anon_sym_try] = ACTIONS(267), + [anon_sym_int] = ACTIONS(267), + [anon_sym_boolean] = ACTIONS(267), + [anon_sym_char] = ACTIONS(267), + [anon_sym_short] = ACTIONS(267), + [anon_sym_long] = ACTIONS(267), + [anon_sym_float] = ACTIONS(267), + [anon_sym_double] = ACTIONS(267), + [anon_sym_void] = ACTIONS(267), + [anon_sym_public] = ACTIONS(267), + [anon_sym_protected] = ACTIONS(267), + [anon_sym_private] = ACTIONS(267), + [anon_sym_static] = ACTIONS(267), + [anon_sym_final] = ACTIONS(267), + [anon_sym_synchronized] = ACTIONS(267), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_new] = ACTIONS(267), + }, + [132] = { + [sym_comment] = STATE(132), + [sym_groovy_doc] = STATE(132), + [sym_identifier] = ACTIONS(97), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(101), + [anon_sym_DOT_AMP] = ACTIONS(101), + [anon_sym_DOT_AT] = ACTIONS(101), + [anon_sym_QMARK_DOT] = ACTIONS(101), + [anon_sym_STAR_DOT] = ACTIONS(101), + [anon_sym_STAR] = ACTIONS(97), + [anon_sym_STAR_COLON] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(97), + [anon_sym_import] = ACTIONS(97), + [anon_sym_as] = ACTIONS(97), + [anon_sym_package] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_assert] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(97), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(97), + [anon_sym_GT_GT_GT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(97), + [anon_sym_DOT_DOT_LT] = ACTIONS(101), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(101), + [anon_sym_LT_DOT_DOT] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(97), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(101), + [anon_sym_in] = ACTIONS(97), + [anon_sym_BANGin] = ACTIONS(97), + [anon_sym_instanceof] = ACTIONS(97), + [anon_sym_BANGinstanceof] = ACTIONS(101), + [anon_sym_EQ_EQ] = ACTIONS(97), + [anon_sym_BANG_EQ] = ACTIONS(97), + [anon_sym_LT_EQ_GT] = ACTIONS(101), + [anon_sym_EQ_EQ_EQ] = ACTIONS(101), + [anon_sym_BANG_EQ_EQ] = ACTIONS(101), + [anon_sym_EQ_TILDE] = ACTIONS(101), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(97), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_PIPE] = ACTIONS(97), + [anon_sym_AMP_AMP] = ACTIONS(101), + [anon_sym_PIPE_PIPE] = ACTIONS(101), + [anon_sym_QMARK_COLON] = ACTIONS(101), + [anon_sym_STAR_STAR] = ACTIONS(101), + [anon_sym_true] = ACTIONS(97), + [anon_sym_false] = ACTIONS(97), + [anon_sym_ATinterface] = ACTIONS(101), + [anon_sym_interface] = ACTIONS(97), + [anon_sym_class] = ACTIONS(97), + [anon_sym_COMMA] = ACTIONS(101), + [anon_sym_LBRACE] = ACTIONS(101), + [anon_sym_DASH_GT] = ACTIONS(101), + [anon_sym_RBRACE] = ACTIONS(101), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(97), + [anon_sym_this] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(97), + [anon_sym_while] = ACTIONS(97), + [anon_sym_for] = ACTIONS(97), + [anon_sym_if] = ACTIONS(97), + [anon_sym_else] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(101), + [aux_sym_number_literal_token1] = ACTIONS(97), + [aux_sym_number_literal_token2] = ACTIONS(101), + [aux_sym_number_literal_token3] = ACTIONS(101), + [aux_sym_number_literal_token4] = ACTIONS(97), + [aux_sym_number_literal_token5] = ACTIONS(101), + [anon_sym_return] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(101), + [anon_sym_DOLLAR_SLASH] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(97), + [anon_sym_try] = ACTIONS(97), + [anon_sym_int] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_char] = ACTIONS(97), + [anon_sym_short] = ACTIONS(97), + [anon_sym_long] = ACTIONS(97), + [anon_sym_float] = ACTIONS(97), + [anon_sym_double] = ACTIONS(97), + [anon_sym_void] = ACTIONS(97), + [anon_sym_public] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_static] = ACTIONS(97), + [anon_sym_final] = ACTIONS(97), + [anon_sym_synchronized] = ACTIONS(97), + [anon_sym_TILDE] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_new] = ACTIONS(97), + }, + [133] = { + [sym_comment] = STATE(133), + [sym_groovy_doc] = STATE(133), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(291), + [anon_sym_DOT_AT] = ACTIONS(291), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_STAR_DOT] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_STAR_COLON] = ACTIONS(353), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(295), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(303), + [anon_sym_GT_GT_GT] = ACTIONS(301), + [anon_sym_DOT_DOT] = ACTIONS(303), + [anon_sym_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(295), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_in] = ACTIONS(295), + [anon_sym_BANGin] = ACTIONS(295), + [anon_sym_instanceof] = ACTIONS(295), + [anon_sym_BANGinstanceof] = ACTIONS(305), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_BANG_EQ] = ACTIONS(307), + [anon_sym_LT_EQ_GT] = ACTIONS(309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(309), + [anon_sym_EQ_TILDE] = ACTIONS(309), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(315), + [anon_sym_AMP_AMP] = ACTIONS(317), + [anon_sym_PIPE_PIPE] = ACTIONS(319), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(323), + [anon_sym_true] = ACTIONS(351), + [anon_sym_false] = ACTIONS(351), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_this] = ACTIONS(351), + [anon_sym_null] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(353), + [aux_sym_number_literal_token1] = ACTIONS(351), + [aux_sym_number_literal_token2] = ACTIONS(353), + [aux_sym_number_literal_token3] = ACTIONS(353), + [aux_sym_number_literal_token4] = ACTIONS(351), + [aux_sym_number_literal_token5] = ACTIONS(353), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_new] = ACTIONS(351), + }, + [134] = { + [sym_comment] = STATE(134), + [sym_groovy_doc] = STATE(134), + [sym_identifier] = ACTIONS(77), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_DOT_AMP] = ACTIONS(79), + [anon_sym_DOT_AT] = ACTIONS(79), + [anon_sym_QMARK_DOT] = ACTIONS(79), + [anon_sym_STAR_DOT] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(77), + [anon_sym_STAR_COLON] = ACTIONS(79), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_import] = ACTIONS(77), + [anon_sym_as] = ACTIONS(77), + [anon_sym_package] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_assert] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_LT_LT] = ACTIONS(79), + [anon_sym_GT_GT] = ACTIONS(77), + [anon_sym_GT_GT_GT] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(77), + [anon_sym_DOT_DOT_LT] = ACTIONS(79), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(79), + [anon_sym_LT_DOT_DOT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(79), + [anon_sym_in] = ACTIONS(77), + [anon_sym_BANGin] = ACTIONS(77), + [anon_sym_instanceof] = ACTIONS(77), + [anon_sym_BANGinstanceof] = ACTIONS(79), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_LT_EQ_GT] = ACTIONS(79), + [anon_sym_EQ_EQ_EQ] = ACTIONS(79), + [anon_sym_BANG_EQ_EQ] = ACTIONS(79), + [anon_sym_EQ_TILDE] = ACTIONS(79), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_CARET] = ACTIONS(79), + [anon_sym_PIPE] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(79), + [anon_sym_PIPE_PIPE] = ACTIONS(79), + [anon_sym_QMARK_COLON] = ACTIONS(79), + [anon_sym_STAR_STAR] = ACTIONS(79), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_class] = ACTIONS(77), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_DASH_GT] = ACTIONS(79), + [anon_sym_RBRACE] = ACTIONS(79), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(77), + [anon_sym_this] = ACTIONS(77), + [anon_sym_null] = ACTIONS(77), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_do] = ACTIONS(77), + [anon_sym_while] = ACTIONS(77), + [anon_sym_for] = ACTIONS(77), + [anon_sym_if] = ACTIONS(77), + [anon_sym_else] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(79), + [aux_sym_number_literal_token1] = ACTIONS(77), + [aux_sym_number_literal_token2] = ACTIONS(79), + [aux_sym_number_literal_token3] = ACTIONS(79), + [aux_sym_number_literal_token4] = ACTIONS(77), + [aux_sym_number_literal_token5] = ACTIONS(79), + [anon_sym_return] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(77), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR_SLASH] = ACTIONS(79), + [anon_sym_switch] = ACTIONS(77), + [anon_sym_QMARK] = ACTIONS(77), + [anon_sym_try] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_boolean] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [anon_sym_void] = ACTIONS(77), + [anon_sym_public] = ACTIONS(77), + [anon_sym_protected] = ACTIONS(77), + [anon_sym_private] = ACTIONS(77), + [anon_sym_static] = ACTIONS(77), + [anon_sym_final] = ACTIONS(77), + [anon_sym_synchronized] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_new] = ACTIONS(77), + }, + [135] = { + [sym_comment] = STATE(135), + [sym_groovy_doc] = STATE(135), + [sym_identifier] = ACTIONS(397), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_SEMI] = ACTIONS(399), + [anon_sym_DOT_AMP] = ACTIONS(399), + [anon_sym_DOT_AT] = ACTIONS(399), + [anon_sym_QMARK_DOT] = ACTIONS(399), + [anon_sym_STAR_DOT] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_STAR_COLON] = ACTIONS(399), + [anon_sym_import] = ACTIONS(397), + [anon_sym_as] = ACTIONS(397), + [anon_sym_package] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(397), + [anon_sym_assert] = ACTIONS(397), + [anon_sym_PLUS_PLUS] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_GT_GT_GT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_LT] = ACTIONS(399), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(399), + [anon_sym_LT_DOT_DOT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_in] = ACTIONS(397), + [anon_sym_BANGin] = ACTIONS(397), + [anon_sym_instanceof] = ACTIONS(397), + [anon_sym_BANGinstanceof] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_LT_EQ_GT] = ACTIONS(399), + [anon_sym_EQ_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ_EQ] = ACTIONS(399), + [anon_sym_EQ_TILDE] = ACTIONS(399), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(399), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_QMARK_COLON] = ACTIONS(399), + [anon_sym_STAR_STAR] = ACTIONS(399), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_ATinterface] = ACTIONS(399), + [anon_sym_interface] = ACTIONS(397), + [anon_sym_class] = ACTIONS(397), + [anon_sym_COMMA] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_DASH_GT] = ACTIONS(399), + [anon_sym_RBRACE] = ACTIONS(399), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(397), + [anon_sym_this] = ACTIONS(397), + [anon_sym_null] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_do] = ACTIONS(397), + [anon_sym_while] = ACTIONS(397), + [anon_sym_for] = ACTIONS(397), + [anon_sym_if] = ACTIONS(397), + [anon_sym_else] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(399), + [aux_sym_number_literal_token1] = ACTIONS(397), + [aux_sym_number_literal_token2] = ACTIONS(399), + [aux_sym_number_literal_token3] = ACTIONS(399), + [aux_sym_number_literal_token4] = ACTIONS(397), + [aux_sym_number_literal_token5] = ACTIONS(399), + [anon_sym_return] = ACTIONS(397), + [anon_sym_SQUOTE] = ACTIONS(397), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(399), + [anon_sym_DQUOTE] = ACTIONS(397), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(399), + [anon_sym_DOLLAR_SLASH] = ACTIONS(399), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_try] = ACTIONS(397), + [anon_sym_int] = ACTIONS(397), + [anon_sym_boolean] = ACTIONS(397), + [anon_sym_char] = ACTIONS(397), + [anon_sym_short] = ACTIONS(397), + [anon_sym_long] = ACTIONS(397), + [anon_sym_float] = ACTIONS(397), + [anon_sym_double] = ACTIONS(397), + [anon_sym_void] = ACTIONS(397), + [anon_sym_public] = ACTIONS(397), + [anon_sym_protected] = ACTIONS(397), + [anon_sym_private] = ACTIONS(397), + [anon_sym_static] = ACTIONS(397), + [anon_sym_final] = ACTIONS(397), + [anon_sym_synchronized] = ACTIONS(397), + [anon_sym_TILDE] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_new] = ACTIONS(397), + }, + [136] = { + [sym_comment] = STATE(136), + [sym_groovy_doc] = STATE(136), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_STAR_COLON] = ACTIONS(353), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(353), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_GT_GT_GT] = ACTIONS(353), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(351), + [anon_sym_false] = ACTIONS(351), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_DASH_GT] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_this] = ACTIONS(351), + [anon_sym_null] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(353), + [aux_sym_number_literal_token1] = ACTIONS(351), + [aux_sym_number_literal_token2] = ACTIONS(353), + [aux_sym_number_literal_token3] = ACTIONS(353), + [aux_sym_number_literal_token4] = ACTIONS(351), + [aux_sym_number_literal_token5] = ACTIONS(353), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_new] = ACTIONS(351), + }, + [137] = { + [sym_comment] = STATE(137), + [sym_groovy_doc] = STATE(137), + [sym_identifier] = ACTIONS(409), + [anon_sym_break] = ACTIONS(409), + [anon_sym_continue] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(411), + [anon_sym_DOT_AMP] = ACTIONS(411), + [anon_sym_DOT_AT] = ACTIONS(411), + [anon_sym_QMARK_DOT] = ACTIONS(411), + [anon_sym_STAR_DOT] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(409), + [anon_sym_STAR_COLON] = ACTIONS(411), + [anon_sym_import] = ACTIONS(409), + [anon_sym_as] = ACTIONS(409), + [anon_sym_package] = ACTIONS(409), + [anon_sym_AT] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_PLUS_PLUS] = ACTIONS(411), + [anon_sym_DASH_DASH] = ACTIONS(411), + [anon_sym_PERCENT] = ACTIONS(411), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_LT_LT] = ACTIONS(411), + [anon_sym_GT_GT] = ACTIONS(409), + [anon_sym_GT_GT_GT] = ACTIONS(411), + [anon_sym_DOT_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT_LT] = ACTIONS(411), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(411), + [anon_sym_LT_DOT_DOT] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_LT_EQ] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_GT_EQ] = ACTIONS(411), + [anon_sym_in] = ACTIONS(409), + [anon_sym_BANGin] = ACTIONS(409), + [anon_sym_instanceof] = ACTIONS(409), + [anon_sym_BANGinstanceof] = ACTIONS(411), + [anon_sym_EQ_EQ] = ACTIONS(409), + [anon_sym_BANG_EQ] = ACTIONS(409), + [anon_sym_LT_EQ_GT] = ACTIONS(411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(411), + [anon_sym_EQ_TILDE] = ACTIONS(411), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_CARET] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(411), + [anon_sym_PIPE_PIPE] = ACTIONS(411), + [anon_sym_QMARK_COLON] = ACTIONS(411), + [anon_sym_STAR_STAR] = ACTIONS(411), + [anon_sym_true] = ACTIONS(409), + [anon_sym_false] = ACTIONS(409), + [anon_sym_ATinterface] = ACTIONS(411), + [anon_sym_interface] = ACTIONS(409), + [anon_sym_class] = ACTIONS(409), + [anon_sym_COMMA] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_DASH_GT] = ACTIONS(411), + [anon_sym_RBRACE] = ACTIONS(411), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(409), + [anon_sym_this] = ACTIONS(409), + [anon_sym_null] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_do] = ACTIONS(409), + [anon_sym_while] = ACTIONS(409), + [anon_sym_for] = ACTIONS(409), + [anon_sym_if] = ACTIONS(409), + [anon_sym_else] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(411), + [aux_sym_number_literal_token1] = ACTIONS(409), + [aux_sym_number_literal_token2] = ACTIONS(411), + [aux_sym_number_literal_token3] = ACTIONS(411), + [aux_sym_number_literal_token4] = ACTIONS(409), + [aux_sym_number_literal_token5] = ACTIONS(411), + [anon_sym_return] = ACTIONS(409), + [anon_sym_SQUOTE] = ACTIONS(409), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(411), + [anon_sym_DOLLAR_SLASH] = ACTIONS(411), + [anon_sym_switch] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(409), + [anon_sym_try] = ACTIONS(409), + [anon_sym_int] = ACTIONS(409), + [anon_sym_boolean] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_short] = ACTIONS(409), + [anon_sym_long] = ACTIONS(409), + [anon_sym_float] = ACTIONS(409), + [anon_sym_double] = ACTIONS(409), + [anon_sym_void] = ACTIONS(409), + [anon_sym_public] = ACTIONS(409), + [anon_sym_protected] = ACTIONS(409), + [anon_sym_private] = ACTIONS(409), + [anon_sym_static] = ACTIONS(409), + [anon_sym_final] = ACTIONS(409), + [anon_sym_synchronized] = ACTIONS(409), + [anon_sym_TILDE] = ACTIONS(411), + [anon_sym_BANG] = ACTIONS(409), + [anon_sym_new] = ACTIONS(409), + }, + [138] = { + [sym_comment] = STATE(138), + [sym_groovy_doc] = STATE(138), + [sym_identifier] = ACTIONS(429), + [anon_sym_break] = ACTIONS(429), + [anon_sym_continue] = ACTIONS(429), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_DOT_AMP] = ACTIONS(431), + [anon_sym_DOT_AT] = ACTIONS(431), + [anon_sym_QMARK_DOT] = ACTIONS(431), + [anon_sym_STAR_DOT] = ACTIONS(431), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_STAR_COLON] = ACTIONS(431), + [anon_sym_import] = ACTIONS(429), + [anon_sym_as] = ACTIONS(429), + [anon_sym_package] = ACTIONS(429), + [anon_sym_AT] = ACTIONS(429), + [anon_sym_assert] = ACTIONS(429), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(431), + [anon_sym_GT_GT] = ACTIONS(429), + [anon_sym_GT_GT_GT] = ACTIONS(431), + [anon_sym_DOT_DOT] = ACTIONS(429), + [anon_sym_DOT_DOT_LT] = ACTIONS(431), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(431), + [anon_sym_LT_DOT_DOT] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LT_EQ] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_EQ] = ACTIONS(431), + [anon_sym_in] = ACTIONS(429), + [anon_sym_BANGin] = ACTIONS(429), + [anon_sym_instanceof] = ACTIONS(429), + [anon_sym_BANGinstanceof] = ACTIONS(431), + [anon_sym_EQ_EQ] = ACTIONS(429), + [anon_sym_BANG_EQ] = ACTIONS(429), + [anon_sym_LT_EQ_GT] = ACTIONS(431), + [anon_sym_EQ_EQ_EQ] = ACTIONS(431), + [anon_sym_BANG_EQ_EQ] = ACTIONS(431), + [anon_sym_EQ_TILDE] = ACTIONS(431), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(431), + [anon_sym_PIPE_PIPE] = ACTIONS(431), + [anon_sym_QMARK_COLON] = ACTIONS(431), + [anon_sym_STAR_STAR] = ACTIONS(431), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ATinterface] = ACTIONS(431), + [anon_sym_interface] = ACTIONS(429), + [anon_sym_class] = ACTIONS(429), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_DASH_GT] = ACTIONS(431), + [anon_sym_RBRACE] = ACTIONS(431), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(429), + [anon_sym_this] = ACTIONS(429), + [anon_sym_null] = ACTIONS(429), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_do] = ACTIONS(429), + [anon_sym_while] = ACTIONS(429), + [anon_sym_for] = ACTIONS(429), + [anon_sym_if] = ACTIONS(429), + [anon_sym_else] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(431), + [aux_sym_number_literal_token1] = ACTIONS(429), + [aux_sym_number_literal_token2] = ACTIONS(431), + [aux_sym_number_literal_token3] = ACTIONS(431), + [aux_sym_number_literal_token4] = ACTIONS(429), + [aux_sym_number_literal_token5] = ACTIONS(431), + [anon_sym_return] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(429), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(429), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(431), + [anon_sym_DOLLAR_SLASH] = ACTIONS(431), + [anon_sym_switch] = ACTIONS(429), + [anon_sym_QMARK] = ACTIONS(429), + [anon_sym_try] = ACTIONS(429), + [anon_sym_int] = ACTIONS(429), + [anon_sym_boolean] = ACTIONS(429), + [anon_sym_char] = ACTIONS(429), + [anon_sym_short] = ACTIONS(429), + [anon_sym_long] = ACTIONS(429), + [anon_sym_float] = ACTIONS(429), + [anon_sym_double] = ACTIONS(429), + [anon_sym_void] = ACTIONS(429), + [anon_sym_public] = ACTIONS(429), + [anon_sym_protected] = ACTIONS(429), + [anon_sym_private] = ACTIONS(429), + [anon_sym_static] = ACTIONS(429), + [anon_sym_final] = ACTIONS(429), + [anon_sym_synchronized] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_new] = ACTIONS(429), + }, + [139] = { + [sym_comment] = STATE(139), + [sym_groovy_doc] = STATE(139), + [sym_identifier] = ACTIONS(329), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_DOT_AMP] = ACTIONS(331), + [anon_sym_DOT_AT] = ACTIONS(331), + [anon_sym_QMARK_DOT] = ACTIONS(331), + [anon_sym_STAR_DOT] = ACTIONS(331), + [anon_sym_STAR] = ACTIONS(329), + [anon_sym_STAR_COLON] = ACTIONS(331), + [anon_sym_import] = ACTIONS(329), + [anon_sym_as] = ACTIONS(329), + [anon_sym_package] = ACTIONS(329), + [anon_sym_AT] = ACTIONS(329), + [anon_sym_assert] = ACTIONS(329), + [anon_sym_PLUS_PLUS] = ACTIONS(331), + [anon_sym_DASH_DASH] = ACTIONS(331), + [anon_sym_PERCENT] = ACTIONS(331), + [anon_sym_SLASH] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(329), + [anon_sym_DASH] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(331), + [anon_sym_DOT_DOT] = ACTIONS(329), + [anon_sym_DOT_DOT_LT] = ACTIONS(331), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(331), + [anon_sym_LT_DOT_DOT] = ACTIONS(329), + [anon_sym_LT] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(329), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_GT_EQ] = ACTIONS(331), + [anon_sym_in] = ACTIONS(329), + [anon_sym_BANGin] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANGinstanceof] = ACTIONS(331), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_LT_EQ_GT] = ACTIONS(331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(331), + [anon_sym_EQ_TILDE] = ACTIONS(331), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(331), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(331), + [anon_sym_QMARK_COLON] = ACTIONS(331), + [anon_sym_STAR_STAR] = ACTIONS(331), + [anon_sym_true] = ACTIONS(329), + [anon_sym_false] = ACTIONS(329), + [anon_sym_ATinterface] = ACTIONS(331), + [anon_sym_interface] = ACTIONS(329), + [anon_sym_class] = ACTIONS(329), + [anon_sym_COMMA] = ACTIONS(331), + [anon_sym_LBRACE] = ACTIONS(331), + [anon_sym_DASH_GT] = ACTIONS(331), + [anon_sym_RBRACE] = ACTIONS(331), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(329), + [anon_sym_this] = ACTIONS(329), + [anon_sym_null] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_do] = ACTIONS(329), + [anon_sym_while] = ACTIONS(329), + [anon_sym_for] = ACTIONS(329), + [anon_sym_if] = ACTIONS(329), + [anon_sym_else] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(331), + [aux_sym_number_literal_token1] = ACTIONS(329), + [aux_sym_number_literal_token2] = ACTIONS(331), + [aux_sym_number_literal_token3] = ACTIONS(331), + [aux_sym_number_literal_token4] = ACTIONS(329), + [aux_sym_number_literal_token5] = ACTIONS(331), + [anon_sym_return] = ACTIONS(329), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(329), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(331), + [anon_sym_DOLLAR_SLASH] = ACTIONS(331), + [anon_sym_switch] = ACTIONS(329), + [anon_sym_QMARK] = ACTIONS(329), + [anon_sym_try] = ACTIONS(329), + [anon_sym_int] = ACTIONS(329), + [anon_sym_boolean] = ACTIONS(329), + [anon_sym_char] = ACTIONS(329), + [anon_sym_short] = ACTIONS(329), + [anon_sym_long] = ACTIONS(329), + [anon_sym_float] = ACTIONS(329), + [anon_sym_double] = ACTIONS(329), + [anon_sym_void] = ACTIONS(329), + [anon_sym_public] = ACTIONS(329), + [anon_sym_protected] = ACTIONS(329), + [anon_sym_private] = ACTIONS(329), + [anon_sym_static] = ACTIONS(329), + [anon_sym_final] = ACTIONS(329), + [anon_sym_synchronized] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(331), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_new] = ACTIONS(329), + }, + [140] = { + [sym_comment] = STATE(140), + [sym_groovy_doc] = STATE(140), + [sym_identifier] = ACTIONS(389), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_SEMI] = ACTIONS(391), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_STAR_COLON] = ACTIONS(391), + [anon_sym_import] = ACTIONS(389), + [anon_sym_as] = ACTIONS(447), + [anon_sym_package] = ACTIONS(389), + [anon_sym_AT] = ACTIONS(389), + [anon_sym_assert] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_GT_GT_GT] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_in] = ACTIONS(447), + [anon_sym_BANGin] = ACTIONS(447), + [anon_sym_instanceof] = ACTIONS(447), + [anon_sym_BANGinstanceof] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(455), + [anon_sym_BANG_EQ] = ACTIONS(455), + [anon_sym_LT_EQ_GT] = ACTIONS(457), + [anon_sym_EQ_EQ_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ_EQ] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(457), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_AMP_AMP] = ACTIONS(465), + [anon_sym_PIPE_PIPE] = ACTIONS(467), + [anon_sym_QMARK_COLON] = ACTIONS(469), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(389), + [anon_sym_false] = ACTIONS(389), + [anon_sym_ATinterface] = ACTIONS(391), + [anon_sym_interface] = ACTIONS(389), + [anon_sym_class] = ACTIONS(389), + [anon_sym_COMMA] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_DASH_GT] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(391), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(389), + [anon_sym_this] = ACTIONS(389), + [anon_sym_null] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_do] = ACTIONS(389), + [anon_sym_while] = ACTIONS(389), + [anon_sym_for] = ACTIONS(389), + [anon_sym_if] = ACTIONS(389), + [anon_sym_else] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(391), + [aux_sym_number_literal_token1] = ACTIONS(389), + [aux_sym_number_literal_token2] = ACTIONS(391), + [aux_sym_number_literal_token3] = ACTIONS(391), + [aux_sym_number_literal_token4] = ACTIONS(389), + [aux_sym_number_literal_token5] = ACTIONS(391), + [anon_sym_return] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(391), + [anon_sym_DQUOTE] = ACTIONS(389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(391), + [anon_sym_DOLLAR_SLASH] = ACTIONS(391), + [anon_sym_switch] = ACTIONS(389), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_try] = ACTIONS(389), + [anon_sym_int] = ACTIONS(389), + [anon_sym_boolean] = ACTIONS(389), + [anon_sym_char] = ACTIONS(389), + [anon_sym_short] = ACTIONS(389), + [anon_sym_long] = ACTIONS(389), + [anon_sym_float] = ACTIONS(389), + [anon_sym_double] = ACTIONS(389), + [anon_sym_void] = ACTIONS(389), + [anon_sym_public] = ACTIONS(389), + [anon_sym_protected] = ACTIONS(389), + [anon_sym_private] = ACTIONS(389), + [anon_sym_static] = ACTIONS(389), + [anon_sym_final] = ACTIONS(389), + [anon_sym_synchronized] = ACTIONS(389), + [anon_sym_TILDE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_new] = ACTIONS(389), + }, + [141] = { + [sym_comment] = STATE(141), + [sym_groovy_doc] = STATE(141), + [sym_identifier] = ACTIONS(355), + [anon_sym_break] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_DOT_AMP] = ACTIONS(357), + [anon_sym_DOT_AT] = ACTIONS(357), + [anon_sym_QMARK_DOT] = ACTIONS(357), + [anon_sym_STAR_DOT] = ACTIONS(357), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_STAR_COLON] = ACTIONS(357), + [anon_sym_import] = ACTIONS(355), + [anon_sym_as] = ACTIONS(355), + [anon_sym_package] = ACTIONS(355), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_assert] = ACTIONS(355), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(355), + [anon_sym_PLUS] = ACTIONS(355), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_LT_LT] = ACTIONS(357), + [anon_sym_GT_GT] = ACTIONS(355), + [anon_sym_GT_GT_GT] = ACTIONS(357), + [anon_sym_DOT_DOT] = ACTIONS(355), + [anon_sym_DOT_DOT_LT] = ACTIONS(357), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(357), + [anon_sym_LT_DOT_DOT] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_LT_EQ] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_EQ] = ACTIONS(357), + [anon_sym_in] = ACTIONS(355), + [anon_sym_BANGin] = ACTIONS(355), + [anon_sym_instanceof] = ACTIONS(355), + [anon_sym_BANGinstanceof] = ACTIONS(357), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_BANG_EQ] = ACTIONS(355), + [anon_sym_LT_EQ_GT] = ACTIONS(357), + [anon_sym_EQ_EQ_EQ] = ACTIONS(357), + [anon_sym_BANG_EQ_EQ] = ACTIONS(357), + [anon_sym_EQ_TILDE] = ACTIONS(357), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_CARET] = ACTIONS(357), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(357), + [anon_sym_PIPE_PIPE] = ACTIONS(357), + [anon_sym_QMARK_COLON] = ACTIONS(357), + [anon_sym_STAR_STAR] = ACTIONS(357), + [anon_sym_true] = ACTIONS(355), + [anon_sym_false] = ACTIONS(355), + [anon_sym_ATinterface] = ACTIONS(357), + [anon_sym_interface] = ACTIONS(355), + [anon_sym_class] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_DASH_GT] = ACTIONS(357), + [anon_sym_RBRACE] = ACTIONS(357), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(355), + [anon_sym_this] = ACTIONS(355), + [anon_sym_null] = ACTIONS(355), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_do] = ACTIONS(355), + [anon_sym_while] = ACTIONS(355), + [anon_sym_for] = ACTIONS(355), + [anon_sym_if] = ACTIONS(355), + [anon_sym_else] = ACTIONS(355), + [anon_sym_LBRACK] = ACTIONS(357), + [aux_sym_number_literal_token1] = ACTIONS(355), + [aux_sym_number_literal_token2] = ACTIONS(357), + [aux_sym_number_literal_token3] = ACTIONS(357), + [aux_sym_number_literal_token4] = ACTIONS(355), + [aux_sym_number_literal_token5] = ACTIONS(357), + [anon_sym_return] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(355), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(357), + [anon_sym_DOLLAR_SLASH] = ACTIONS(357), + [anon_sym_switch] = ACTIONS(355), + [anon_sym_QMARK] = ACTIONS(355), + [anon_sym_try] = ACTIONS(355), + [anon_sym_int] = ACTIONS(355), + [anon_sym_boolean] = ACTIONS(355), + [anon_sym_char] = ACTIONS(355), + [anon_sym_short] = ACTIONS(355), + [anon_sym_long] = ACTIONS(355), + [anon_sym_float] = ACTIONS(355), + [anon_sym_double] = ACTIONS(355), + [anon_sym_void] = ACTIONS(355), + [anon_sym_public] = ACTIONS(355), + [anon_sym_protected] = ACTIONS(355), + [anon_sym_private] = ACTIONS(355), + [anon_sym_static] = ACTIONS(355), + [anon_sym_final] = ACTIONS(355), + [anon_sym_synchronized] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_new] = ACTIONS(355), + }, + [142] = { + [sym_comment] = STATE(142), + [sym_groovy_doc] = STATE(142), + [sym_identifier] = ACTIONS(425), + [anon_sym_break] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(425), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_DOT_AMP] = ACTIONS(427), + [anon_sym_DOT_AT] = ACTIONS(427), + [anon_sym_QMARK_DOT] = ACTIONS(427), + [anon_sym_STAR_DOT] = ACTIONS(427), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_STAR_COLON] = ACTIONS(427), + [anon_sym_import] = ACTIONS(425), + [anon_sym_as] = ACTIONS(425), + [anon_sym_package] = ACTIONS(425), + [anon_sym_AT] = ACTIONS(425), + [anon_sym_assert] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(427), + [anon_sym_DASH_DASH] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(425), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_LT_LT] = ACTIONS(427), + [anon_sym_GT_GT] = ACTIONS(425), + [anon_sym_GT_GT_GT] = ACTIONS(427), + [anon_sym_DOT_DOT] = ACTIONS(425), + [anon_sym_DOT_DOT_LT] = ACTIONS(427), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(427), + [anon_sym_LT_DOT_DOT] = ACTIONS(425), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_LT_EQ] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(425), + [anon_sym_GT_EQ] = ACTIONS(427), + [anon_sym_in] = ACTIONS(425), + [anon_sym_BANGin] = ACTIONS(425), + [anon_sym_instanceof] = ACTIONS(425), + [anon_sym_BANGinstanceof] = ACTIONS(427), + [anon_sym_EQ_EQ] = ACTIONS(425), + [anon_sym_BANG_EQ] = ACTIONS(425), + [anon_sym_LT_EQ_GT] = ACTIONS(427), + [anon_sym_EQ_EQ_EQ] = ACTIONS(427), + [anon_sym_BANG_EQ_EQ] = ACTIONS(427), + [anon_sym_EQ_TILDE] = ACTIONS(427), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_PIPE] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(427), + [anon_sym_PIPE_PIPE] = ACTIONS(427), + [anon_sym_QMARK_COLON] = ACTIONS(427), + [anon_sym_STAR_STAR] = ACTIONS(427), + [anon_sym_true] = ACTIONS(425), + [anon_sym_false] = ACTIONS(425), + [anon_sym_ATinterface] = ACTIONS(427), + [anon_sym_interface] = ACTIONS(425), + [anon_sym_class] = ACTIONS(425), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(427), + [anon_sym_RBRACE] = ACTIONS(427), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(425), + [anon_sym_this] = ACTIONS(425), + [anon_sym_null] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_do] = ACTIONS(425), + [anon_sym_while] = ACTIONS(425), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(425), + [anon_sym_else] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [aux_sym_number_literal_token1] = ACTIONS(425), + [aux_sym_number_literal_token2] = ACTIONS(427), + [aux_sym_number_literal_token3] = ACTIONS(427), + [aux_sym_number_literal_token4] = ACTIONS(425), + [aux_sym_number_literal_token5] = ACTIONS(427), + [anon_sym_return] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(425), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(425), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR_SLASH] = ACTIONS(427), + [anon_sym_switch] = ACTIONS(425), + [anon_sym_QMARK] = ACTIONS(425), + [anon_sym_try] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_char] = ACTIONS(425), + [anon_sym_short] = ACTIONS(425), + [anon_sym_long] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_double] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_static] = ACTIONS(425), + [anon_sym_final] = ACTIONS(425), + [anon_sym_synchronized] = ACTIONS(425), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(425), + [anon_sym_new] = ACTIONS(425), + }, + [143] = { + [sym_comment] = STATE(143), + [sym_groovy_doc] = STATE(143), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_STAR_COLON] = ACTIONS(353), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(447), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_GT_GT_GT] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_in] = ACTIONS(447), + [anon_sym_BANGin] = ACTIONS(447), + [anon_sym_instanceof] = ACTIONS(447), + [anon_sym_BANGinstanceof] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(455), + [anon_sym_BANG_EQ] = ACTIONS(455), + [anon_sym_LT_EQ_GT] = ACTIONS(457), + [anon_sym_EQ_EQ_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ_EQ] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(457), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_AMP_AMP] = ACTIONS(465), + [anon_sym_PIPE_PIPE] = ACTIONS(467), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(351), + [anon_sym_false] = ACTIONS(351), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_DASH_GT] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_this] = ACTIONS(351), + [anon_sym_null] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(353), + [aux_sym_number_literal_token1] = ACTIONS(351), + [aux_sym_number_literal_token2] = ACTIONS(353), + [aux_sym_number_literal_token3] = ACTIONS(353), + [aux_sym_number_literal_token4] = ACTIONS(351), + [aux_sym_number_literal_token5] = ACTIONS(353), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_new] = ACTIONS(351), + }, + [144] = { + [sym_comment] = STATE(144), + [sym_groovy_doc] = STATE(144), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_STAR_COLON] = ACTIONS(353), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(447), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_GT_GT_GT] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_in] = ACTIONS(447), + [anon_sym_BANGin] = ACTIONS(447), + [anon_sym_instanceof] = ACTIONS(447), + [anon_sym_BANGinstanceof] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(455), + [anon_sym_BANG_EQ] = ACTIONS(455), + [anon_sym_LT_EQ_GT] = ACTIONS(457), + [anon_sym_EQ_EQ_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ_EQ] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(457), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_AMP_AMP] = ACTIONS(465), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(351), + [anon_sym_false] = ACTIONS(351), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_DASH_GT] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_this] = ACTIONS(351), + [anon_sym_null] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(353), + [aux_sym_number_literal_token1] = ACTIONS(351), + [aux_sym_number_literal_token2] = ACTIONS(353), + [aux_sym_number_literal_token3] = ACTIONS(353), + [aux_sym_number_literal_token4] = ACTIONS(351), + [aux_sym_number_literal_token5] = ACTIONS(353), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_new] = ACTIONS(351), + }, + [145] = { + [sym_comment] = STATE(145), + [sym_groovy_doc] = STATE(145), + [sym_identifier] = ACTIONS(363), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(365), + [anon_sym_DOT_AMP] = ACTIONS(365), + [anon_sym_DOT_AT] = ACTIONS(365), + [anon_sym_QMARK_DOT] = ACTIONS(365), + [anon_sym_STAR_DOT] = ACTIONS(365), + [anon_sym_STAR] = ACTIONS(363), + [anon_sym_STAR_COLON] = ACTIONS(365), + [anon_sym_import] = ACTIONS(363), + [anon_sym_as] = ACTIONS(363), + [anon_sym_package] = ACTIONS(363), + [anon_sym_AT] = ACTIONS(363), + [anon_sym_assert] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(365), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(363), + [anon_sym_DASH] = ACTIONS(363), + [anon_sym_LT_LT] = ACTIONS(365), + [anon_sym_GT_GT] = ACTIONS(363), + [anon_sym_GT_GT_GT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(363), + [anon_sym_DOT_DOT_LT] = ACTIONS(365), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(365), + [anon_sym_LT_DOT_DOT] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(363), + [anon_sym_LT_EQ] = ACTIONS(363), + [anon_sym_GT] = ACTIONS(363), + [anon_sym_GT_EQ] = ACTIONS(365), + [anon_sym_in] = ACTIONS(363), + [anon_sym_BANGin] = ACTIONS(363), + [anon_sym_instanceof] = ACTIONS(363), + [anon_sym_BANGinstanceof] = ACTIONS(365), + [anon_sym_EQ_EQ] = ACTIONS(363), + [anon_sym_BANG_EQ] = ACTIONS(363), + [anon_sym_LT_EQ_GT] = ACTIONS(365), + [anon_sym_EQ_EQ_EQ] = ACTIONS(365), + [anon_sym_BANG_EQ_EQ] = ACTIONS(365), + [anon_sym_EQ_TILDE] = ACTIONS(365), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(365), + [anon_sym_AMP] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(363), + [anon_sym_AMP_AMP] = ACTIONS(365), + [anon_sym_PIPE_PIPE] = ACTIONS(365), + [anon_sym_QMARK_COLON] = ACTIONS(365), + [anon_sym_STAR_STAR] = ACTIONS(365), + [anon_sym_true] = ACTIONS(363), + [anon_sym_false] = ACTIONS(363), + [anon_sym_ATinterface] = ACTIONS(365), + [anon_sym_interface] = ACTIONS(363), + [anon_sym_class] = ACTIONS(363), + [anon_sym_COMMA] = ACTIONS(365), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_DASH_GT] = ACTIONS(365), + [anon_sym_RBRACE] = ACTIONS(365), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(363), + [anon_sym_this] = ACTIONS(363), + [anon_sym_null] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(365), + [anon_sym_do] = ACTIONS(363), + [anon_sym_while] = ACTIONS(363), + [anon_sym_for] = ACTIONS(363), + [anon_sym_if] = ACTIONS(363), + [anon_sym_else] = ACTIONS(363), + [anon_sym_LBRACK] = ACTIONS(365), + [aux_sym_number_literal_token1] = ACTIONS(363), + [aux_sym_number_literal_token2] = ACTIONS(365), + [aux_sym_number_literal_token3] = ACTIONS(365), + [aux_sym_number_literal_token4] = ACTIONS(363), + [aux_sym_number_literal_token5] = ACTIONS(365), + [anon_sym_return] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(363), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(365), + [anon_sym_DQUOTE] = ACTIONS(363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(365), + [anon_sym_DOLLAR_SLASH] = ACTIONS(365), + [anon_sym_switch] = ACTIONS(363), + [anon_sym_QMARK] = ACTIONS(363), + [anon_sym_try] = ACTIONS(363), + [anon_sym_int] = ACTIONS(363), + [anon_sym_boolean] = ACTIONS(363), + [anon_sym_char] = ACTIONS(363), + [anon_sym_short] = ACTIONS(363), + [anon_sym_long] = ACTIONS(363), + [anon_sym_float] = ACTIONS(363), + [anon_sym_double] = ACTIONS(363), + [anon_sym_void] = ACTIONS(363), + [anon_sym_public] = ACTIONS(363), + [anon_sym_protected] = ACTIONS(363), + [anon_sym_private] = ACTIONS(363), + [anon_sym_static] = ACTIONS(363), + [anon_sym_final] = ACTIONS(363), + [anon_sym_synchronized] = ACTIONS(363), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(363), + [anon_sym_new] = ACTIONS(363), + }, + [146] = { + [sym_comment] = STATE(146), + [sym_groovy_doc] = STATE(146), + [sym_identifier] = ACTIONS(473), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_DOT_AMP] = ACTIONS(291), + [anon_sym_DOT_AT] = ACTIONS(291), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_STAR_DOT] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_STAR_COLON] = ACTIONS(475), + [anon_sym_import] = ACTIONS(473), + [anon_sym_as] = ACTIONS(295), + [anon_sym_package] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(473), + [anon_sym_assert] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(303), + [anon_sym_GT_GT_GT] = ACTIONS(301), + [anon_sym_DOT_DOT] = ACTIONS(303), + [anon_sym_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(295), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_in] = ACTIONS(295), + [anon_sym_BANGin] = ACTIONS(295), + [anon_sym_instanceof] = ACTIONS(295), + [anon_sym_BANGinstanceof] = ACTIONS(305), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_BANG_EQ] = ACTIONS(307), + [anon_sym_LT_EQ_GT] = ACTIONS(309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(309), + [anon_sym_EQ_TILDE] = ACTIONS(309), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(315), + [anon_sym_AMP_AMP] = ACTIONS(317), + [anon_sym_PIPE_PIPE] = ACTIONS(319), + [anon_sym_QMARK_COLON] = ACTIONS(321), + [anon_sym_STAR_STAR] = ACTIONS(323), + [anon_sym_true] = ACTIONS(473), + [anon_sym_false] = ACTIONS(473), + [anon_sym_ATinterface] = ACTIONS(475), + [anon_sym_interface] = ACTIONS(473), + [anon_sym_class] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_RBRACE] = ACTIONS(475), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(473), + [anon_sym_this] = ACTIONS(473), + [anon_sym_null] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_do] = ACTIONS(473), + [anon_sym_while] = ACTIONS(473), + [anon_sym_for] = ACTIONS(473), + [anon_sym_if] = ACTIONS(473), + [anon_sym_else] = ACTIONS(473), + [anon_sym_LBRACK] = ACTIONS(475), + [aux_sym_number_literal_token1] = ACTIONS(473), + [aux_sym_number_literal_token2] = ACTIONS(475), + [aux_sym_number_literal_token3] = ACTIONS(475), + [aux_sym_number_literal_token4] = ACTIONS(473), + [aux_sym_number_literal_token5] = ACTIONS(475), + [anon_sym_return] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_SLASH] = ACTIONS(475), + [anon_sym_switch] = ACTIONS(473), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_try] = ACTIONS(473), + [anon_sym_catch] = ACTIONS(473), + [anon_sym_finally] = ACTIONS(473), + [anon_sym_int] = ACTIONS(473), + [anon_sym_boolean] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_short] = ACTIONS(473), + [anon_sym_long] = ACTIONS(473), + [anon_sym_float] = ACTIONS(473), + [anon_sym_double] = ACTIONS(473), + [anon_sym_void] = ACTIONS(473), + [anon_sym_public] = ACTIONS(473), + [anon_sym_protected] = ACTIONS(473), + [anon_sym_private] = ACTIONS(473), + [anon_sym_static] = ACTIONS(473), + [anon_sym_final] = ACTIONS(473), + [anon_sym_synchronized] = ACTIONS(473), + [anon_sym_TILDE] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_new] = ACTIONS(473), + }, + [147] = { + [sym_comment] = STATE(147), + [sym_groovy_doc] = STATE(147), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_STAR_COLON] = ACTIONS(353), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(447), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_GT_GT_GT] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_in] = ACTIONS(447), + [anon_sym_BANGin] = ACTIONS(447), + [anon_sym_instanceof] = ACTIONS(447), + [anon_sym_BANGinstanceof] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(455), + [anon_sym_BANG_EQ] = ACTIONS(455), + [anon_sym_LT_EQ_GT] = ACTIONS(457), + [anon_sym_EQ_EQ_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ_EQ] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(457), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(351), + [anon_sym_false] = ACTIONS(351), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_DASH_GT] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_this] = ACTIONS(351), + [anon_sym_null] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(353), + [aux_sym_number_literal_token1] = ACTIONS(351), + [aux_sym_number_literal_token2] = ACTIONS(353), + [aux_sym_number_literal_token3] = ACTIONS(353), + [aux_sym_number_literal_token4] = ACTIONS(351), + [aux_sym_number_literal_token5] = ACTIONS(353), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_new] = ACTIONS(351), + }, + [148] = { + [sym_comment] = STATE(148), + [sym_groovy_doc] = STATE(148), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_STAR_COLON] = ACTIONS(353), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(447), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_GT_GT_GT] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_in] = ACTIONS(447), + [anon_sym_BANGin] = ACTIONS(447), + [anon_sym_instanceof] = ACTIONS(447), + [anon_sym_BANGinstanceof] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(455), + [anon_sym_BANG_EQ] = ACTIONS(455), + [anon_sym_LT_EQ_GT] = ACTIONS(457), + [anon_sym_EQ_EQ_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ_EQ] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(457), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(351), + [anon_sym_false] = ACTIONS(351), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_DASH_GT] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_this] = ACTIONS(351), + [anon_sym_null] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(353), + [aux_sym_number_literal_token1] = ACTIONS(351), + [aux_sym_number_literal_token2] = ACTIONS(353), + [aux_sym_number_literal_token3] = ACTIONS(353), + [aux_sym_number_literal_token4] = ACTIONS(351), + [aux_sym_number_literal_token5] = ACTIONS(353), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_new] = ACTIONS(351), + }, + [149] = { + [sym_comment] = STATE(149), + [sym_groovy_doc] = STATE(149), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_STAR_COLON] = ACTIONS(353), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(447), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_GT_GT_GT] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_in] = ACTIONS(447), + [anon_sym_BANGin] = ACTIONS(447), + [anon_sym_instanceof] = ACTIONS(447), + [anon_sym_BANGinstanceof] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(455), + [anon_sym_BANG_EQ] = ACTIONS(455), + [anon_sym_LT_EQ_GT] = ACTIONS(457), + [anon_sym_EQ_EQ_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ_EQ] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(457), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(351), + [anon_sym_false] = ACTIONS(351), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_DASH_GT] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_this] = ACTIONS(351), + [anon_sym_null] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(353), + [aux_sym_number_literal_token1] = ACTIONS(351), + [aux_sym_number_literal_token2] = ACTIONS(353), + [aux_sym_number_literal_token3] = ACTIONS(353), + [aux_sym_number_literal_token4] = ACTIONS(351), + [aux_sym_number_literal_token5] = ACTIONS(353), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_new] = ACTIONS(351), + }, + [150] = { + [sym_comment] = STATE(150), + [sym_groovy_doc] = STATE(150), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_STAR_COLON] = ACTIONS(353), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(447), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_GT_GT_GT] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_in] = ACTIONS(447), + [anon_sym_BANGin] = ACTIONS(447), + [anon_sym_instanceof] = ACTIONS(447), + [anon_sym_BANGinstanceof] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(455), + [anon_sym_BANG_EQ] = ACTIONS(455), + [anon_sym_LT_EQ_GT] = ACTIONS(457), + [anon_sym_EQ_EQ_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ_EQ] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(457), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(351), + [anon_sym_false] = ACTIONS(351), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_DASH_GT] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_this] = ACTIONS(351), + [anon_sym_null] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(353), + [aux_sym_number_literal_token1] = ACTIONS(351), + [aux_sym_number_literal_token2] = ACTIONS(353), + [aux_sym_number_literal_token3] = ACTIONS(353), + [aux_sym_number_literal_token4] = ACTIONS(351), + [aux_sym_number_literal_token5] = ACTIONS(353), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_new] = ACTIONS(351), + }, + [151] = { + [sym_comment] = STATE(151), + [sym_groovy_doc] = STATE(151), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_STAR_COLON] = ACTIONS(353), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(447), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_GT_GT_GT] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_in] = ACTIONS(447), + [anon_sym_BANGin] = ACTIONS(447), + [anon_sym_instanceof] = ACTIONS(447), + [anon_sym_BANGinstanceof] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(351), + [anon_sym_false] = ACTIONS(351), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_DASH_GT] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_this] = ACTIONS(351), + [anon_sym_null] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(353), + [aux_sym_number_literal_token1] = ACTIONS(351), + [aux_sym_number_literal_token2] = ACTIONS(353), + [aux_sym_number_literal_token3] = ACTIONS(353), + [aux_sym_number_literal_token4] = ACTIONS(351), + [aux_sym_number_literal_token5] = ACTIONS(353), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_new] = ACTIONS(351), + }, + [152] = { + [sym_comment] = STATE(152), + [sym_groovy_doc] = STATE(152), + [aux_sym__juxt_argument_list_repeat1] = STATE(794), + [sym_identifier] = ACTIONS(287), + [anon_sym_break] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_STAR_COLON] = ACTIONS(289), + [anon_sym_import] = ACTIONS(287), + [anon_sym_as] = ACTIONS(447), + [anon_sym_package] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_assert] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(289), + [anon_sym_DASH_DASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_GT_GT_GT] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_in] = ACTIONS(447), + [anon_sym_BANGin] = ACTIONS(447), + [anon_sym_instanceof] = ACTIONS(447), + [anon_sym_BANGinstanceof] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(455), + [anon_sym_BANG_EQ] = ACTIONS(455), + [anon_sym_LT_EQ_GT] = ACTIONS(457), + [anon_sym_EQ_EQ_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ_EQ] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(457), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_AMP_AMP] = ACTIONS(465), + [anon_sym_PIPE_PIPE] = ACTIONS(467), + [anon_sym_QMARK_COLON] = ACTIONS(469), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(287), + [anon_sym_false] = ACTIONS(287), + [anon_sym_ATinterface] = ACTIONS(289), + [anon_sym_interface] = ACTIONS(287), + [anon_sym_class] = ACTIONS(287), + [anon_sym_COMMA] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(289), + [anon_sym_RBRACE] = ACTIONS(289), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(287), + [anon_sym_this] = ACTIONS(287), + [anon_sym_null] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(289), + [anon_sym_do] = ACTIONS(287), + [anon_sym_while] = ACTIONS(287), + [anon_sym_for] = ACTIONS(287), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(289), + [aux_sym_number_literal_token1] = ACTIONS(287), + [aux_sym_number_literal_token2] = ACTIONS(289), + [aux_sym_number_literal_token3] = ACTIONS(289), + [aux_sym_number_literal_token4] = ACTIONS(287), + [aux_sym_number_literal_token5] = ACTIONS(289), + [anon_sym_return] = ACTIONS(287), + [anon_sym_SQUOTE] = ACTIONS(287), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR_SLASH] = ACTIONS(289), + [anon_sym_switch] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_try] = ACTIONS(287), + [anon_sym_int] = ACTIONS(287), + [anon_sym_boolean] = ACTIONS(287), + [anon_sym_char] = ACTIONS(287), + [anon_sym_short] = ACTIONS(287), + [anon_sym_long] = ACTIONS(287), + [anon_sym_float] = ACTIONS(287), + [anon_sym_double] = ACTIONS(287), + [anon_sym_void] = ACTIONS(287), + [anon_sym_public] = ACTIONS(287), + [anon_sym_protected] = ACTIONS(287), + [anon_sym_private] = ACTIONS(287), + [anon_sym_static] = ACTIONS(287), + [anon_sym_final] = ACTIONS(287), + [anon_sym_synchronized] = ACTIONS(287), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_new] = ACTIONS(287), + }, + [153] = { + [sym_comment] = STATE(153), + [sym_groovy_doc] = STATE(153), + [sym_identifier] = ACTIONS(259), + [anon_sym_break] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(259), + [anon_sym_SEMI] = ACTIONS(261), + [anon_sym_DOT_AMP] = ACTIONS(261), + [anon_sym_DOT_AT] = ACTIONS(261), + [anon_sym_QMARK_DOT] = ACTIONS(261), + [anon_sym_STAR_DOT] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(259), + [anon_sym_STAR_COLON] = ACTIONS(261), + [anon_sym_import] = ACTIONS(259), + [anon_sym_as] = ACTIONS(259), + [anon_sym_package] = ACTIONS(259), + [anon_sym_AT] = ACTIONS(259), + [anon_sym_assert] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(261), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_GT_GT_GT] = ACTIONS(261), + [anon_sym_DOT_DOT] = ACTIONS(259), + [anon_sym_DOT_DOT_LT] = ACTIONS(261), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(261), + [anon_sym_LT_DOT_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(259), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_GT_EQ] = ACTIONS(261), + [anon_sym_in] = ACTIONS(259), + [anon_sym_BANGin] = ACTIONS(259), + [anon_sym_instanceof] = ACTIONS(259), + [anon_sym_BANGinstanceof] = ACTIONS(261), + [anon_sym_EQ_EQ] = ACTIONS(259), + [anon_sym_BANG_EQ] = ACTIONS(259), + [anon_sym_LT_EQ_GT] = ACTIONS(261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(261), + [anon_sym_BANG_EQ_EQ] = ACTIONS(261), + [anon_sym_EQ_TILDE] = ACTIONS(261), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_CARET] = ACTIONS(261), + [anon_sym_PIPE] = ACTIONS(259), + [anon_sym_AMP_AMP] = ACTIONS(261), + [anon_sym_PIPE_PIPE] = ACTIONS(261), + [anon_sym_QMARK_COLON] = ACTIONS(261), + [anon_sym_STAR_STAR] = ACTIONS(261), + [anon_sym_true] = ACTIONS(259), + [anon_sym_false] = ACTIONS(259), + [anon_sym_ATinterface] = ACTIONS(261), + [anon_sym_interface] = ACTIONS(259), + [anon_sym_class] = ACTIONS(259), + [anon_sym_COMMA] = ACTIONS(261), + [anon_sym_LBRACE] = ACTIONS(261), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_RBRACE] = ACTIONS(261), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(259), + [anon_sym_this] = ACTIONS(259), + [anon_sym_null] = ACTIONS(259), + [anon_sym_LPAREN] = ACTIONS(261), + [anon_sym_do] = ACTIONS(259), + [anon_sym_while] = ACTIONS(259), + [anon_sym_for] = ACTIONS(259), + [anon_sym_if] = ACTIONS(259), + [anon_sym_else] = ACTIONS(259), + [anon_sym_LBRACK] = ACTIONS(261), + [aux_sym_number_literal_token1] = ACTIONS(259), + [aux_sym_number_literal_token2] = ACTIONS(261), + [aux_sym_number_literal_token3] = ACTIONS(261), + [aux_sym_number_literal_token4] = ACTIONS(259), + [aux_sym_number_literal_token5] = ACTIONS(261), + [anon_sym_return] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(261), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_SLASH] = ACTIONS(261), + [anon_sym_switch] = ACTIONS(259), + [anon_sym_QMARK] = ACTIONS(259), + [anon_sym_try] = ACTIONS(259), + [anon_sym_int] = ACTIONS(259), + [anon_sym_boolean] = ACTIONS(259), + [anon_sym_char] = ACTIONS(259), + [anon_sym_short] = ACTIONS(259), + [anon_sym_long] = ACTIONS(259), + [anon_sym_float] = ACTIONS(259), + [anon_sym_double] = ACTIONS(259), + [anon_sym_void] = ACTIONS(259), + [anon_sym_public] = ACTIONS(259), + [anon_sym_protected] = ACTIONS(259), + [anon_sym_private] = ACTIONS(259), + [anon_sym_static] = ACTIONS(259), + [anon_sym_final] = ACTIONS(259), + [anon_sym_synchronized] = ACTIONS(259), + [anon_sym_TILDE] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(259), + [anon_sym_new] = ACTIONS(259), + }, + [154] = { + [sym_comment] = STATE(154), + [sym_groovy_doc] = STATE(154), + [sym_identifier] = ACTIONS(417), + [anon_sym_break] = ACTIONS(417), + [anon_sym_continue] = ACTIONS(417), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_DOT_AMP] = ACTIONS(419), + [anon_sym_DOT_AT] = ACTIONS(419), + [anon_sym_QMARK_DOT] = ACTIONS(419), + [anon_sym_STAR_DOT] = ACTIONS(419), + [anon_sym_STAR] = ACTIONS(417), + [anon_sym_STAR_COLON] = ACTIONS(419), + [anon_sym_import] = ACTIONS(417), + [anon_sym_as] = ACTIONS(417), + [anon_sym_package] = ACTIONS(417), + [anon_sym_AT] = ACTIONS(417), + [anon_sym_assert] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(417), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(417), + [anon_sym_LT_LT] = ACTIONS(419), + [anon_sym_GT_GT] = ACTIONS(417), + [anon_sym_GT_GT_GT] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(417), + [anon_sym_DOT_DOT_LT] = ACTIONS(419), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(419), + [anon_sym_LT_DOT_DOT] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_LT_EQ] = ACTIONS(417), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_in] = ACTIONS(417), + [anon_sym_BANGin] = ACTIONS(417), + [anon_sym_instanceof] = ACTIONS(417), + [anon_sym_BANGinstanceof] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(417), + [anon_sym_BANG_EQ] = ACTIONS(417), + [anon_sym_LT_EQ_GT] = ACTIONS(419), + [anon_sym_EQ_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ_EQ] = ACTIONS(419), + [anon_sym_EQ_TILDE] = ACTIONS(419), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(419), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_CARET] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_QMARK_COLON] = ACTIONS(419), + [anon_sym_STAR_STAR] = ACTIONS(419), + [anon_sym_true] = ACTIONS(417), + [anon_sym_false] = ACTIONS(417), + [anon_sym_ATinterface] = ACTIONS(419), + [anon_sym_interface] = ACTIONS(417), + [anon_sym_class] = ACTIONS(417), + [anon_sym_COMMA] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(419), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(417), + [anon_sym_this] = ACTIONS(417), + [anon_sym_null] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(419), + [anon_sym_do] = ACTIONS(417), + [anon_sym_while] = ACTIONS(417), + [anon_sym_for] = ACTIONS(417), + [anon_sym_if] = ACTIONS(417), + [anon_sym_else] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [aux_sym_number_literal_token1] = ACTIONS(417), + [aux_sym_number_literal_token2] = ACTIONS(419), + [aux_sym_number_literal_token3] = ACTIONS(419), + [aux_sym_number_literal_token4] = ACTIONS(417), + [aux_sym_number_literal_token5] = ACTIONS(419), + [anon_sym_return] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(419), + [anon_sym_DQUOTE] = ACTIONS(417), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(419), + [anon_sym_DOLLAR_SLASH] = ACTIONS(419), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(417), + [anon_sym_try] = ACTIONS(417), + [anon_sym_int] = ACTIONS(417), + [anon_sym_boolean] = ACTIONS(417), + [anon_sym_char] = ACTIONS(417), + [anon_sym_short] = ACTIONS(417), + [anon_sym_long] = ACTIONS(417), + [anon_sym_float] = ACTIONS(417), + [anon_sym_double] = ACTIONS(417), + [anon_sym_void] = ACTIONS(417), + [anon_sym_public] = ACTIONS(417), + [anon_sym_protected] = ACTIONS(417), + [anon_sym_private] = ACTIONS(417), + [anon_sym_static] = ACTIONS(417), + [anon_sym_final] = ACTIONS(417), + [anon_sym_synchronized] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(419), + [anon_sym_BANG] = ACTIONS(417), + [anon_sym_new] = ACTIONS(417), + }, + [155] = { + [sym_comment] = STATE(155), + [sym_groovy_doc] = STATE(155), + [sym_identifier] = ACTIONS(479), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(481), + [anon_sym_DOT_AMP] = ACTIONS(291), + [anon_sym_DOT_AT] = ACTIONS(291), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_STAR_DOT] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_STAR_COLON] = ACTIONS(481), + [anon_sym_import] = ACTIONS(479), + [anon_sym_as] = ACTIONS(295), + [anon_sym_package] = ACTIONS(479), + [anon_sym_AT] = ACTIONS(479), + [anon_sym_assert] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(303), + [anon_sym_GT_GT_GT] = ACTIONS(301), + [anon_sym_DOT_DOT] = ACTIONS(303), + [anon_sym_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(295), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_in] = ACTIONS(295), + [anon_sym_BANGin] = ACTIONS(295), + [anon_sym_instanceof] = ACTIONS(295), + [anon_sym_BANGinstanceof] = ACTIONS(305), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_BANG_EQ] = ACTIONS(307), + [anon_sym_LT_EQ_GT] = ACTIONS(309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(309), + [anon_sym_EQ_TILDE] = ACTIONS(309), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(315), + [anon_sym_AMP_AMP] = ACTIONS(317), + [anon_sym_PIPE_PIPE] = ACTIONS(319), + [anon_sym_QMARK_COLON] = ACTIONS(321), + [anon_sym_STAR_STAR] = ACTIONS(323), + [anon_sym_true] = ACTIONS(479), + [anon_sym_false] = ACTIONS(479), + [anon_sym_ATinterface] = ACTIONS(481), + [anon_sym_interface] = ACTIONS(479), + [anon_sym_class] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(481), + [anon_sym_RBRACE] = ACTIONS(481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(479), + [anon_sym_this] = ACTIONS(479), + [anon_sym_null] = ACTIONS(479), + [anon_sym_LPAREN] = ACTIONS(481), + [anon_sym_do] = ACTIONS(479), + [anon_sym_while] = ACTIONS(479), + [anon_sym_for] = ACTIONS(479), + [anon_sym_if] = ACTIONS(479), + [anon_sym_else] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(481), + [aux_sym_number_literal_token1] = ACTIONS(479), + [aux_sym_number_literal_token2] = ACTIONS(481), + [aux_sym_number_literal_token3] = ACTIONS(481), + [aux_sym_number_literal_token4] = ACTIONS(479), + [aux_sym_number_literal_token5] = ACTIONS(481), + [anon_sym_return] = ACTIONS(479), + [anon_sym_SQUOTE] = ACTIONS(479), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(481), + [anon_sym_DQUOTE] = ACTIONS(479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(481), + [anon_sym_DOLLAR_SLASH] = ACTIONS(481), + [anon_sym_switch] = ACTIONS(479), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_try] = ACTIONS(479), + [anon_sym_catch] = ACTIONS(479), + [anon_sym_finally] = ACTIONS(479), + [anon_sym_int] = ACTIONS(479), + [anon_sym_boolean] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_short] = ACTIONS(479), + [anon_sym_long] = ACTIONS(479), + [anon_sym_float] = ACTIONS(479), + [anon_sym_double] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_public] = ACTIONS(479), + [anon_sym_protected] = ACTIONS(479), + [anon_sym_private] = ACTIONS(479), + [anon_sym_static] = ACTIONS(479), + [anon_sym_final] = ACTIONS(479), + [anon_sym_synchronized] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_new] = ACTIONS(479), + }, + [156] = { + [sym_comment] = STATE(156), + [sym_groovy_doc] = STATE(156), + [sym_identifier] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_DOT_AMP] = ACTIONS(387), + [anon_sym_DOT_AT] = ACTIONS(387), + [anon_sym_QMARK_DOT] = ACTIONS(387), + [anon_sym_STAR_DOT] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(385), + [anon_sym_STAR_COLON] = ACTIONS(387), + [anon_sym_import] = ACTIONS(385), + [anon_sym_as] = ACTIONS(385), + [anon_sym_package] = ACTIONS(385), + [anon_sym_AT] = ACTIONS(385), + [anon_sym_assert] = ACTIONS(385), + [anon_sym_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_GT_GT_GT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_LT] = ACTIONS(387), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(387), + [anon_sym_LT_DOT_DOT] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_in] = ACTIONS(385), + [anon_sym_BANGin] = ACTIONS(385), + [anon_sym_instanceof] = ACTIONS(385), + [anon_sym_BANGinstanceof] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(385), + [anon_sym_BANG_EQ] = ACTIONS(385), + [anon_sym_LT_EQ_GT] = ACTIONS(387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(387), + [anon_sym_EQ_TILDE] = ACTIONS(387), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_QMARK_COLON] = ACTIONS(387), + [anon_sym_STAR_STAR] = ACTIONS(387), + [anon_sym_true] = ACTIONS(385), + [anon_sym_false] = ACTIONS(385), + [anon_sym_ATinterface] = ACTIONS(387), + [anon_sym_interface] = ACTIONS(385), + [anon_sym_class] = ACTIONS(385), + [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(387), + [anon_sym_DASH_GT] = ACTIONS(387), + [anon_sym_RBRACE] = ACTIONS(387), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(385), + [anon_sym_this] = ACTIONS(385), + [anon_sym_null] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_do] = ACTIONS(385), + [anon_sym_while] = ACTIONS(385), + [anon_sym_for] = ACTIONS(385), + [anon_sym_if] = ACTIONS(385), + [anon_sym_else] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [aux_sym_number_literal_token1] = ACTIONS(385), + [aux_sym_number_literal_token2] = ACTIONS(387), + [aux_sym_number_literal_token3] = ACTIONS(387), + [aux_sym_number_literal_token4] = ACTIONS(385), + [aux_sym_number_literal_token5] = ACTIONS(387), + [anon_sym_return] = ACTIONS(385), + [anon_sym_SQUOTE] = ACTIONS(385), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(387), + [anon_sym_DQUOTE] = ACTIONS(385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_SLASH] = ACTIONS(387), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_try] = ACTIONS(385), + [anon_sym_int] = ACTIONS(385), + [anon_sym_boolean] = ACTIONS(385), + [anon_sym_char] = ACTIONS(385), + [anon_sym_short] = ACTIONS(385), + [anon_sym_long] = ACTIONS(385), + [anon_sym_float] = ACTIONS(385), + [anon_sym_double] = ACTIONS(385), + [anon_sym_void] = ACTIONS(385), + [anon_sym_public] = ACTIONS(385), + [anon_sym_protected] = ACTIONS(385), + [anon_sym_private] = ACTIONS(385), + [anon_sym_static] = ACTIONS(385), + [anon_sym_final] = ACTIONS(385), + [anon_sym_synchronized] = ACTIONS(385), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(385), + [anon_sym_new] = ACTIONS(385), + }, + [157] = { + [sym_comment] = STATE(157), + [sym_groovy_doc] = STATE(157), + [sym_identifier] = ACTIONS(483), + [anon_sym_break] = ACTIONS(483), + [anon_sym_continue] = ACTIONS(483), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_DOT_AMP] = ACTIONS(291), + [anon_sym_DOT_AT] = ACTIONS(291), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_STAR_DOT] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_STAR_COLON] = ACTIONS(485), + [anon_sym_import] = ACTIONS(483), + [anon_sym_as] = ACTIONS(295), + [anon_sym_package] = ACTIONS(483), + [anon_sym_AT] = ACTIONS(483), + [anon_sym_assert] = ACTIONS(483), + [anon_sym_PLUS_PLUS] = ACTIONS(485), + [anon_sym_DASH_DASH] = ACTIONS(485), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(303), + [anon_sym_GT_GT_GT] = ACTIONS(301), + [anon_sym_DOT_DOT] = ACTIONS(303), + [anon_sym_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(295), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_in] = ACTIONS(295), + [anon_sym_BANGin] = ACTIONS(295), + [anon_sym_instanceof] = ACTIONS(295), + [anon_sym_BANGinstanceof] = ACTIONS(305), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_BANG_EQ] = ACTIONS(307), + [anon_sym_LT_EQ_GT] = ACTIONS(309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(309), + [anon_sym_EQ_TILDE] = ACTIONS(309), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(315), + [anon_sym_AMP_AMP] = ACTIONS(317), + [anon_sym_PIPE_PIPE] = ACTIONS(319), + [anon_sym_QMARK_COLON] = ACTIONS(321), + [anon_sym_STAR_STAR] = ACTIONS(323), + [anon_sym_true] = ACTIONS(483), + [anon_sym_false] = ACTIONS(483), + [anon_sym_ATinterface] = ACTIONS(485), + [anon_sym_interface] = ACTIONS(483), + [anon_sym_class] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_RBRACE] = ACTIONS(485), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(483), + [anon_sym_this] = ACTIONS(483), + [anon_sym_null] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_do] = ACTIONS(483), + [anon_sym_while] = ACTIONS(483), + [anon_sym_for] = ACTIONS(483), + [anon_sym_if] = ACTIONS(483), + [anon_sym_else] = ACTIONS(483), + [anon_sym_LBRACK] = ACTIONS(485), + [aux_sym_number_literal_token1] = ACTIONS(483), + [aux_sym_number_literal_token2] = ACTIONS(485), + [aux_sym_number_literal_token3] = ACTIONS(485), + [aux_sym_number_literal_token4] = ACTIONS(483), + [aux_sym_number_literal_token5] = ACTIONS(485), + [anon_sym_return] = ACTIONS(483), + [anon_sym_SQUOTE] = ACTIONS(483), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(485), + [anon_sym_DQUOTE] = ACTIONS(483), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(485), + [anon_sym_DOLLAR_SLASH] = ACTIONS(485), + [anon_sym_switch] = ACTIONS(483), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_try] = ACTIONS(483), + [anon_sym_catch] = ACTIONS(483), + [anon_sym_finally] = ACTIONS(483), + [anon_sym_int] = ACTIONS(483), + [anon_sym_boolean] = ACTIONS(483), + [anon_sym_char] = ACTIONS(483), + [anon_sym_short] = ACTIONS(483), + [anon_sym_long] = ACTIONS(483), + [anon_sym_float] = ACTIONS(483), + [anon_sym_double] = ACTIONS(483), + [anon_sym_void] = ACTIONS(483), + [anon_sym_public] = ACTIONS(483), + [anon_sym_protected] = ACTIONS(483), + [anon_sym_private] = ACTIONS(483), + [anon_sym_static] = ACTIONS(483), + [anon_sym_final] = ACTIONS(483), + [anon_sym_synchronized] = ACTIONS(483), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(483), + [anon_sym_new] = ACTIONS(483), + }, + [158] = { + [sym_comment] = STATE(158), + [sym_groovy_doc] = STATE(158), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_STAR_COLON] = ACTIONS(353), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LT_LT] = ACTIONS(353), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_GT_GT_GT] = ACTIONS(353), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(351), + [anon_sym_false] = ACTIONS(351), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_DASH_GT] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_this] = ACTIONS(351), + [anon_sym_null] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(353), + [aux_sym_number_literal_token1] = ACTIONS(351), + [aux_sym_number_literal_token2] = ACTIONS(353), + [aux_sym_number_literal_token3] = ACTIONS(353), + [aux_sym_number_literal_token4] = ACTIONS(351), + [aux_sym_number_literal_token5] = ACTIONS(353), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_new] = ACTIONS(351), + }, + [159] = { + [sym_comment] = STATE(159), + [sym_groovy_doc] = STATE(159), + [sym_identifier] = ACTIONS(487), + [anon_sym_break] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_SEMI] = ACTIONS(489), + [anon_sym_DOT_AMP] = ACTIONS(291), + [anon_sym_DOT_AT] = ACTIONS(291), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_STAR_DOT] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_STAR_COLON] = ACTIONS(489), + [anon_sym_import] = ACTIONS(487), + [anon_sym_as] = ACTIONS(295), + [anon_sym_package] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(487), + [anon_sym_assert] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(489), + [anon_sym_DASH_DASH] = ACTIONS(489), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(303), + [anon_sym_GT_GT_GT] = ACTIONS(301), + [anon_sym_DOT_DOT] = ACTIONS(303), + [anon_sym_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(295), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_in] = ACTIONS(295), + [anon_sym_BANGin] = ACTIONS(295), + [anon_sym_instanceof] = ACTIONS(295), + [anon_sym_BANGinstanceof] = ACTIONS(305), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_BANG_EQ] = ACTIONS(307), + [anon_sym_LT_EQ_GT] = ACTIONS(309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(309), + [anon_sym_EQ_TILDE] = ACTIONS(309), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(315), + [anon_sym_AMP_AMP] = ACTIONS(317), + [anon_sym_PIPE_PIPE] = ACTIONS(319), + [anon_sym_QMARK_COLON] = ACTIONS(321), + [anon_sym_STAR_STAR] = ACTIONS(323), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_ATinterface] = ACTIONS(489), + [anon_sym_interface] = ACTIONS(487), + [anon_sym_class] = ACTIONS(487), + [anon_sym_LBRACE] = ACTIONS(489), + [anon_sym_RBRACE] = ACTIONS(489), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(487), + [anon_sym_this] = ACTIONS(487), + [anon_sym_null] = ACTIONS(487), + [anon_sym_LPAREN] = ACTIONS(489), + [anon_sym_do] = ACTIONS(487), + [anon_sym_while] = ACTIONS(487), + [anon_sym_for] = ACTIONS(487), + [anon_sym_if] = ACTIONS(487), + [anon_sym_else] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(489), + [aux_sym_number_literal_token1] = ACTIONS(487), + [aux_sym_number_literal_token2] = ACTIONS(489), + [aux_sym_number_literal_token3] = ACTIONS(489), + [aux_sym_number_literal_token4] = ACTIONS(487), + [aux_sym_number_literal_token5] = ACTIONS(489), + [anon_sym_return] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(487), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(489), + [anon_sym_DQUOTE] = ACTIONS(487), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(489), + [anon_sym_DOLLAR_SLASH] = ACTIONS(489), + [anon_sym_switch] = ACTIONS(487), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_try] = ACTIONS(487), + [anon_sym_catch] = ACTIONS(487), + [anon_sym_finally] = ACTIONS(487), + [anon_sym_int] = ACTIONS(487), + [anon_sym_boolean] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_short] = ACTIONS(487), + [anon_sym_long] = ACTIONS(487), + [anon_sym_float] = ACTIONS(487), + [anon_sym_double] = ACTIONS(487), + [anon_sym_void] = ACTIONS(487), + [anon_sym_public] = ACTIONS(487), + [anon_sym_protected] = ACTIONS(487), + [anon_sym_private] = ACTIONS(487), + [anon_sym_static] = ACTIONS(487), + [anon_sym_final] = ACTIONS(487), + [anon_sym_synchronized] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_new] = ACTIONS(487), + }, + [160] = { + [sym_comment] = STATE(160), + [sym_groovy_doc] = STATE(160), + [sym_identifier] = ACTIONS(359), + [anon_sym_break] = ACTIONS(359), + [anon_sym_continue] = ACTIONS(359), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym_DOT_AMP] = ACTIONS(361), + [anon_sym_DOT_AT] = ACTIONS(361), + [anon_sym_QMARK_DOT] = ACTIONS(361), + [anon_sym_STAR_DOT] = ACTIONS(361), + [anon_sym_STAR] = ACTIONS(359), + [anon_sym_STAR_COLON] = ACTIONS(361), + [anon_sym_import] = ACTIONS(359), + [anon_sym_as] = ACTIONS(359), + [anon_sym_package] = ACTIONS(359), + [anon_sym_AT] = ACTIONS(359), + [anon_sym_assert] = ACTIONS(359), + [anon_sym_PLUS_PLUS] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(361), + [anon_sym_PERCENT] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(359), + [anon_sym_DASH] = ACTIONS(359), + [anon_sym_LT_LT] = ACTIONS(361), + [anon_sym_GT_GT] = ACTIONS(359), + [anon_sym_GT_GT_GT] = ACTIONS(361), + [anon_sym_DOT_DOT] = ACTIONS(359), + [anon_sym_DOT_DOT_LT] = ACTIONS(361), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(361), + [anon_sym_LT_DOT_DOT] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(359), + [anon_sym_LT_EQ] = ACTIONS(359), + [anon_sym_GT] = ACTIONS(359), + [anon_sym_GT_EQ] = ACTIONS(361), + [anon_sym_in] = ACTIONS(359), + [anon_sym_BANGin] = ACTIONS(359), + [anon_sym_instanceof] = ACTIONS(359), + [anon_sym_BANGinstanceof] = ACTIONS(361), + [anon_sym_EQ_EQ] = ACTIONS(359), + [anon_sym_BANG_EQ] = ACTIONS(359), + [anon_sym_LT_EQ_GT] = ACTIONS(361), + [anon_sym_EQ_EQ_EQ] = ACTIONS(361), + [anon_sym_BANG_EQ_EQ] = ACTIONS(361), + [anon_sym_EQ_TILDE] = ACTIONS(361), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(361), + [anon_sym_AMP] = ACTIONS(359), + [anon_sym_CARET] = ACTIONS(361), + [anon_sym_PIPE] = ACTIONS(359), + [anon_sym_AMP_AMP] = ACTIONS(361), + [anon_sym_PIPE_PIPE] = ACTIONS(361), + [anon_sym_QMARK_COLON] = ACTIONS(361), + [anon_sym_STAR_STAR] = ACTIONS(361), + [anon_sym_true] = ACTIONS(359), + [anon_sym_false] = ACTIONS(359), + [anon_sym_ATinterface] = ACTIONS(361), + [anon_sym_interface] = ACTIONS(359), + [anon_sym_class] = ACTIONS(359), + [anon_sym_COMMA] = ACTIONS(361), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_DASH_GT] = ACTIONS(361), + [anon_sym_RBRACE] = ACTIONS(361), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(359), + [anon_sym_this] = ACTIONS(359), + [anon_sym_null] = ACTIONS(359), + [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_do] = ACTIONS(359), + [anon_sym_while] = ACTIONS(359), + [anon_sym_for] = ACTIONS(359), + [anon_sym_if] = ACTIONS(359), + [anon_sym_else] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(361), + [aux_sym_number_literal_token1] = ACTIONS(359), + [aux_sym_number_literal_token2] = ACTIONS(361), + [aux_sym_number_literal_token3] = ACTIONS(361), + [aux_sym_number_literal_token4] = ACTIONS(359), + [aux_sym_number_literal_token5] = ACTIONS(361), + [anon_sym_return] = ACTIONS(359), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(361), + [anon_sym_DOLLAR_SLASH] = ACTIONS(361), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_QMARK] = ACTIONS(359), + [anon_sym_try] = ACTIONS(359), + [anon_sym_int] = ACTIONS(359), + [anon_sym_boolean] = ACTIONS(359), + [anon_sym_char] = ACTIONS(359), + [anon_sym_short] = ACTIONS(359), + [anon_sym_long] = ACTIONS(359), + [anon_sym_float] = ACTIONS(359), + [anon_sym_double] = ACTIONS(359), + [anon_sym_void] = ACTIONS(359), + [anon_sym_public] = ACTIONS(359), + [anon_sym_protected] = ACTIONS(359), + [anon_sym_private] = ACTIONS(359), + [anon_sym_static] = ACTIONS(359), + [anon_sym_final] = ACTIONS(359), + [anon_sym_synchronized] = ACTIONS(359), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_new] = ACTIONS(359), + }, + [161] = { + [sym_comment] = STATE(161), + [sym_groovy_doc] = STATE(161), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_STAR_COLON] = ACTIONS(353), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_GT_GT_GT] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(351), + [anon_sym_false] = ACTIONS(351), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_DASH_GT] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_this] = ACTIONS(351), + [anon_sym_null] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(353), + [aux_sym_number_literal_token1] = ACTIONS(351), + [aux_sym_number_literal_token2] = ACTIONS(353), + [aux_sym_number_literal_token3] = ACTIONS(353), + [aux_sym_number_literal_token4] = ACTIONS(351), + [aux_sym_number_literal_token5] = ACTIONS(353), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_new] = ACTIONS(351), + }, + [162] = { + [sym_comment] = STATE(162), + [sym_groovy_doc] = STATE(162), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_STAR_COLON] = ACTIONS(353), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(353), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LT_LT] = ACTIONS(353), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_GT_GT_GT] = ACTIONS(353), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(351), + [anon_sym_false] = ACTIONS(351), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_DASH_GT] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_this] = ACTIONS(351), + [anon_sym_null] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(353), + [aux_sym_number_literal_token1] = ACTIONS(351), + [aux_sym_number_literal_token2] = ACTIONS(353), + [aux_sym_number_literal_token3] = ACTIONS(353), + [aux_sym_number_literal_token4] = ACTIONS(351), + [aux_sym_number_literal_token5] = ACTIONS(353), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_new] = ACTIONS(351), + }, + [163] = { + [sym_comment] = STATE(163), + [sym_groovy_doc] = STATE(163), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_STAR_COLON] = ACTIONS(353), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(353), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LT_LT] = ACTIONS(353), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_GT_GT_GT] = ACTIONS(353), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(351), + [anon_sym_false] = ACTIONS(351), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_DASH_GT] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_this] = ACTIONS(351), + [anon_sym_null] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(353), + [aux_sym_number_literal_token1] = ACTIONS(351), + [aux_sym_number_literal_token2] = ACTIONS(353), + [aux_sym_number_literal_token3] = ACTIONS(353), + [aux_sym_number_literal_token4] = ACTIONS(351), + [aux_sym_number_literal_token5] = ACTIONS(353), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_new] = ACTIONS(351), + }, + [164] = { + [sym_comment] = STATE(164), + [sym_groovy_doc] = STATE(164), + [sym_identifier] = ACTIONS(401), + [anon_sym_break] = ACTIONS(401), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(403), + [anon_sym_DOT_AMP] = ACTIONS(403), + [anon_sym_DOT_AT] = ACTIONS(403), + [anon_sym_QMARK_DOT] = ACTIONS(403), + [anon_sym_STAR_DOT] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_STAR_COLON] = ACTIONS(403), + [anon_sym_import] = ACTIONS(401), + [anon_sym_as] = ACTIONS(401), + [anon_sym_package] = ACTIONS(401), + [anon_sym_AT] = ACTIONS(401), + [anon_sym_assert] = ACTIONS(401), + [anon_sym_PLUS_PLUS] = ACTIONS(403), + [anon_sym_DASH_DASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_GT_GT_GT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_LT] = ACTIONS(403), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(403), + [anon_sym_LT_DOT_DOT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(403), + [anon_sym_in] = ACTIONS(401), + [anon_sym_BANGin] = ACTIONS(401), + [anon_sym_instanceof] = ACTIONS(401), + [anon_sym_BANGinstanceof] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_LT_EQ_GT] = ACTIONS(403), + [anon_sym_EQ_EQ_EQ] = ACTIONS(403), + [anon_sym_BANG_EQ_EQ] = ACTIONS(403), + [anon_sym_EQ_TILDE] = ACTIONS(403), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_QMARK_COLON] = ACTIONS(403), + [anon_sym_STAR_STAR] = ACTIONS(403), + [anon_sym_true] = ACTIONS(401), + [anon_sym_false] = ACTIONS(401), + [anon_sym_ATinterface] = ACTIONS(403), + [anon_sym_interface] = ACTIONS(401), + [anon_sym_class] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(403), + [anon_sym_DASH_GT] = ACTIONS(403), + [anon_sym_RBRACE] = ACTIONS(403), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(401), + [anon_sym_this] = ACTIONS(401), + [anon_sym_null] = ACTIONS(401), + [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_do] = ACTIONS(401), + [anon_sym_while] = ACTIONS(401), + [anon_sym_for] = ACTIONS(401), + [anon_sym_if] = ACTIONS(401), + [anon_sym_else] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(403), + [aux_sym_number_literal_token1] = ACTIONS(401), + [aux_sym_number_literal_token2] = ACTIONS(403), + [aux_sym_number_literal_token3] = ACTIONS(403), + [aux_sym_number_literal_token4] = ACTIONS(401), + [aux_sym_number_literal_token5] = ACTIONS(403), + [anon_sym_return] = ACTIONS(401), + [anon_sym_SQUOTE] = ACTIONS(401), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(403), + [anon_sym_DQUOTE] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_DOLLAR_SLASH] = ACTIONS(403), + [anon_sym_switch] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_try] = ACTIONS(401), + [anon_sym_int] = ACTIONS(401), + [anon_sym_boolean] = ACTIONS(401), + [anon_sym_char] = ACTIONS(401), + [anon_sym_short] = ACTIONS(401), + [anon_sym_long] = ACTIONS(401), + [anon_sym_float] = ACTIONS(401), + [anon_sym_double] = ACTIONS(401), + [anon_sym_void] = ACTIONS(401), + [anon_sym_public] = ACTIONS(401), + [anon_sym_protected] = ACTIONS(401), + [anon_sym_private] = ACTIONS(401), + [anon_sym_static] = ACTIONS(401), + [anon_sym_final] = ACTIONS(401), + [anon_sym_synchronized] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_new] = ACTIONS(401), + }, + [165] = { + [sym_comment] = STATE(165), + [sym_groovy_doc] = STATE(165), + [sym_identifier] = ACTIONS(491), + [anon_sym_break] = ACTIONS(491), + [anon_sym_continue] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(493), + [anon_sym_DOT_AMP] = ACTIONS(291), + [anon_sym_DOT_AT] = ACTIONS(291), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_STAR_DOT] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_STAR_COLON] = ACTIONS(493), + [anon_sym_import] = ACTIONS(491), + [anon_sym_as] = ACTIONS(295), + [anon_sym_package] = ACTIONS(491), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_assert] = ACTIONS(491), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(303), + [anon_sym_GT_GT_GT] = ACTIONS(301), + [anon_sym_DOT_DOT] = ACTIONS(303), + [anon_sym_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(295), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_in] = ACTIONS(295), + [anon_sym_BANGin] = ACTIONS(295), + [anon_sym_instanceof] = ACTIONS(295), + [anon_sym_BANGinstanceof] = ACTIONS(305), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_BANG_EQ] = ACTIONS(307), + [anon_sym_LT_EQ_GT] = ACTIONS(309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(309), + [anon_sym_EQ_TILDE] = ACTIONS(309), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(315), + [anon_sym_AMP_AMP] = ACTIONS(317), + [anon_sym_PIPE_PIPE] = ACTIONS(319), + [anon_sym_QMARK_COLON] = ACTIONS(321), + [anon_sym_STAR_STAR] = ACTIONS(323), + [anon_sym_true] = ACTIONS(491), + [anon_sym_false] = ACTIONS(491), + [anon_sym_ATinterface] = ACTIONS(493), + [anon_sym_interface] = ACTIONS(491), + [anon_sym_class] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_RBRACE] = ACTIONS(493), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(491), + [anon_sym_this] = ACTIONS(491), + [anon_sym_null] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_do] = ACTIONS(491), + [anon_sym_while] = ACTIONS(491), + [anon_sym_for] = ACTIONS(491), + [anon_sym_if] = ACTIONS(491), + [anon_sym_else] = ACTIONS(491), + [anon_sym_LBRACK] = ACTIONS(493), + [aux_sym_number_literal_token1] = ACTIONS(491), + [aux_sym_number_literal_token2] = ACTIONS(493), + [aux_sym_number_literal_token3] = ACTIONS(493), + [aux_sym_number_literal_token4] = ACTIONS(491), + [aux_sym_number_literal_token5] = ACTIONS(493), + [anon_sym_return] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(491), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(491), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(493), + [anon_sym_DOLLAR_SLASH] = ACTIONS(493), + [anon_sym_switch] = ACTIONS(491), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_try] = ACTIONS(491), + [anon_sym_catch] = ACTIONS(491), + [anon_sym_finally] = ACTIONS(491), + [anon_sym_int] = ACTIONS(491), + [anon_sym_boolean] = ACTIONS(491), + [anon_sym_char] = ACTIONS(491), + [anon_sym_short] = ACTIONS(491), + [anon_sym_long] = ACTIONS(491), + [anon_sym_float] = ACTIONS(491), + [anon_sym_double] = ACTIONS(491), + [anon_sym_void] = ACTIONS(491), + [anon_sym_public] = ACTIONS(491), + [anon_sym_protected] = ACTIONS(491), + [anon_sym_private] = ACTIONS(491), + [anon_sym_static] = ACTIONS(491), + [anon_sym_final] = ACTIONS(491), + [anon_sym_synchronized] = ACTIONS(491), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_BANG] = ACTIONS(491), + [anon_sym_new] = ACTIONS(491), + }, + [166] = { + [sym_comment] = STATE(166), + [sym_groovy_doc] = STATE(166), + [sym_identifier] = ACTIONS(379), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_DOT_AMP] = ACTIONS(381), + [anon_sym_DOT_AT] = ACTIONS(381), + [anon_sym_QMARK_DOT] = ACTIONS(381), + [anon_sym_STAR_DOT] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(379), + [anon_sym_STAR_COLON] = ACTIONS(381), + [anon_sym_import] = ACTIONS(379), + [anon_sym_as] = ACTIONS(379), + [anon_sym_package] = ACTIONS(379), + [anon_sym_AT] = ACTIONS(379), + [anon_sym_assert] = ACTIONS(379), + [anon_sym_PLUS_PLUS] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(379), + [anon_sym_DASH] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(379), + [anon_sym_GT_GT_GT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_LT] = ACTIONS(381), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(381), + [anon_sym_LT_DOT_DOT] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_in] = ACTIONS(379), + [anon_sym_BANGin] = ACTIONS(379), + [anon_sym_instanceof] = ACTIONS(379), + [anon_sym_BANGinstanceof] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT_EQ_GT] = ACTIONS(381), + [anon_sym_EQ_EQ_EQ] = ACTIONS(381), + [anon_sym_BANG_EQ_EQ] = ACTIONS(381), + [anon_sym_EQ_TILDE] = ACTIONS(381), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [anon_sym_QMARK_COLON] = ACTIONS(381), + [anon_sym_STAR_STAR] = ACTIONS(381), + [anon_sym_true] = ACTIONS(379), + [anon_sym_false] = ACTIONS(379), + [anon_sym_ATinterface] = ACTIONS(381), + [anon_sym_interface] = ACTIONS(379), + [anon_sym_class] = ACTIONS(379), + [anon_sym_COMMA] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(381), + [anon_sym_DASH_GT] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(381), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(379), + [anon_sym_this] = ACTIONS(379), + [anon_sym_null] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_do] = ACTIONS(379), + [anon_sym_while] = ACTIONS(379), + [anon_sym_for] = ACTIONS(379), + [anon_sym_if] = ACTIONS(379), + [anon_sym_else] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [aux_sym_number_literal_token1] = ACTIONS(379), + [aux_sym_number_literal_token2] = ACTIONS(381), + [aux_sym_number_literal_token3] = ACTIONS(381), + [aux_sym_number_literal_token4] = ACTIONS(379), + [aux_sym_number_literal_token5] = ACTIONS(381), + [anon_sym_return] = ACTIONS(379), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(381), + [anon_sym_DOLLAR_SLASH] = ACTIONS(381), + [anon_sym_switch] = ACTIONS(379), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_try] = ACTIONS(379), + [anon_sym_int] = ACTIONS(379), + [anon_sym_boolean] = ACTIONS(379), + [anon_sym_char] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [anon_sym_long] = ACTIONS(379), + [anon_sym_float] = ACTIONS(379), + [anon_sym_double] = ACTIONS(379), + [anon_sym_void] = ACTIONS(379), + [anon_sym_public] = ACTIONS(379), + [anon_sym_protected] = ACTIONS(379), + [anon_sym_private] = ACTIONS(379), + [anon_sym_static] = ACTIONS(379), + [anon_sym_final] = ACTIONS(379), + [anon_sym_synchronized] = ACTIONS(379), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(379), + [anon_sym_new] = ACTIONS(379), + }, + [167] = { + [sym_comment] = STATE(167), + [sym_groovy_doc] = STATE(167), + [sym_identifier] = ACTIONS(405), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(407), + [anon_sym_DOT_AMP] = ACTIONS(407), + [anon_sym_DOT_AT] = ACTIONS(407), + [anon_sym_QMARK_DOT] = ACTIONS(407), + [anon_sym_STAR_DOT] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_STAR_COLON] = ACTIONS(407), + [anon_sym_import] = ACTIONS(405), + [anon_sym_as] = ACTIONS(405), + [anon_sym_package] = ACTIONS(405), + [anon_sym_AT] = ACTIONS(405), + [anon_sym_assert] = ACTIONS(405), + [anon_sym_PLUS_PLUS] = ACTIONS(407), + [anon_sym_DASH_DASH] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_LT_LT] = ACTIONS(407), + [anon_sym_GT_GT] = ACTIONS(405), + [anon_sym_GT_GT_GT] = ACTIONS(407), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT_LT] = ACTIONS(407), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(407), + [anon_sym_LT_DOT_DOT] = ACTIONS(405), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(405), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_in] = ACTIONS(405), + [anon_sym_BANGin] = ACTIONS(405), + [anon_sym_instanceof] = ACTIONS(405), + [anon_sym_BANGinstanceof] = ACTIONS(407), + [anon_sym_EQ_EQ] = ACTIONS(405), + [anon_sym_BANG_EQ] = ACTIONS(405), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_EQ_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ_EQ] = ACTIONS(407), + [anon_sym_EQ_TILDE] = ACTIONS(407), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(405), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [anon_sym_QMARK_COLON] = ACTIONS(407), + [anon_sym_STAR_STAR] = ACTIONS(407), + [anon_sym_true] = ACTIONS(405), + [anon_sym_false] = ACTIONS(405), + [anon_sym_ATinterface] = ACTIONS(407), + [anon_sym_interface] = ACTIONS(405), + [anon_sym_class] = ACTIONS(405), + [anon_sym_COMMA] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_DASH_GT] = ACTIONS(407), + [anon_sym_RBRACE] = ACTIONS(407), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(405), + [anon_sym_this] = ACTIONS(405), + [anon_sym_null] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(407), + [anon_sym_do] = ACTIONS(405), + [anon_sym_while] = ACTIONS(405), + [anon_sym_for] = ACTIONS(405), + [anon_sym_if] = ACTIONS(405), + [anon_sym_else] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [aux_sym_number_literal_token1] = ACTIONS(405), + [aux_sym_number_literal_token2] = ACTIONS(407), + [aux_sym_number_literal_token3] = ACTIONS(407), + [aux_sym_number_literal_token4] = ACTIONS(405), + [aux_sym_number_literal_token5] = ACTIONS(407), + [anon_sym_return] = ACTIONS(405), + [anon_sym_SQUOTE] = ACTIONS(405), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(405), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(407), + [anon_sym_DOLLAR_SLASH] = ACTIONS(407), + [anon_sym_switch] = ACTIONS(405), + [anon_sym_QMARK] = ACTIONS(405), + [anon_sym_try] = ACTIONS(405), + [anon_sym_int] = ACTIONS(405), + [anon_sym_boolean] = ACTIONS(405), + [anon_sym_char] = ACTIONS(405), + [anon_sym_short] = ACTIONS(405), + [anon_sym_long] = ACTIONS(405), + [anon_sym_float] = ACTIONS(405), + [anon_sym_double] = ACTIONS(405), + [anon_sym_void] = ACTIONS(405), + [anon_sym_public] = ACTIONS(405), + [anon_sym_protected] = ACTIONS(405), + [anon_sym_private] = ACTIONS(405), + [anon_sym_static] = ACTIONS(405), + [anon_sym_final] = ACTIONS(405), + [anon_sym_synchronized] = ACTIONS(405), + [anon_sym_TILDE] = ACTIONS(407), + [anon_sym_BANG] = ACTIONS(405), + [anon_sym_new] = ACTIONS(405), + }, + [168] = { + [sym_comment] = STATE(168), + [sym_groovy_doc] = STATE(168), + [sym_identifier] = ACTIONS(99), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_DOT_AMP] = ACTIONS(93), + [anon_sym_DOT_AT] = ACTIONS(93), + [anon_sym_QMARK_DOT] = ACTIONS(93), + [anon_sym_STAR_DOT] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_STAR_COLON] = ACTIONS(93), + [anon_sym_import] = ACTIONS(99), + [anon_sym_as] = ACTIONS(99), + [anon_sym_package] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(93), + [anon_sym_SLASH] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(99), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_LT_LT] = ACTIONS(93), + [anon_sym_GT_GT] = ACTIONS(99), + [anon_sym_GT_GT_GT] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(99), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_in] = ACTIONS(99), + [anon_sym_BANGin] = ACTIONS(99), + [anon_sym_instanceof] = ACTIONS(99), + [anon_sym_BANGinstanceof] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_LT_EQ_GT] = ACTIONS(93), + [anon_sym_EQ_EQ_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ_EQ] = ACTIONS(93), + [anon_sym_EQ_TILDE] = ACTIONS(93), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(99), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(93), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_ATinterface] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(99), + [anon_sym_class] = ACTIONS(99), + [anon_sym_COMMA] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_DASH_GT] = ACTIONS(93), + [anon_sym_RBRACE] = ACTIONS(93), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(99), + [anon_sym_this] = ACTIONS(99), + [anon_sym_null] = ACTIONS(99), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_do] = ACTIONS(99), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(99), + [anon_sym_if] = ACTIONS(99), + [anon_sym_else] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(93), + [aux_sym_number_literal_token1] = ACTIONS(99), + [aux_sym_number_literal_token2] = ACTIONS(93), + [aux_sym_number_literal_token3] = ACTIONS(93), + [aux_sym_number_literal_token4] = ACTIONS(99), + [aux_sym_number_literal_token5] = ACTIONS(93), + [anon_sym_return] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_SLASH] = ACTIONS(93), + [anon_sym_switch] = ACTIONS(99), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_int] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_char] = ACTIONS(99), + [anon_sym_short] = ACTIONS(99), + [anon_sym_long] = ACTIONS(99), + [anon_sym_float] = ACTIONS(99), + [anon_sym_double] = ACTIONS(99), + [anon_sym_void] = ACTIONS(99), + [anon_sym_public] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_static] = ACTIONS(99), + [anon_sym_final] = ACTIONS(99), + [anon_sym_synchronized] = ACTIONS(99), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_new] = ACTIONS(99), + }, + [169] = { + [sym_comment] = STATE(169), + [sym_groovy_doc] = STATE(169), + [sym_identifier] = ACTIONS(495), + [anon_sym_break] = ACTIONS(495), + [anon_sym_continue] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(497), + [anon_sym_DOT_AMP] = ACTIONS(291), + [anon_sym_DOT_AT] = ACTIONS(291), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_STAR_DOT] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_STAR_COLON] = ACTIONS(497), + [anon_sym_import] = ACTIONS(495), + [anon_sym_as] = ACTIONS(295), + [anon_sym_package] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(495), + [anon_sym_assert] = ACTIONS(495), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(303), + [anon_sym_GT_GT_GT] = ACTIONS(301), + [anon_sym_DOT_DOT] = ACTIONS(303), + [anon_sym_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(295), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_in] = ACTIONS(295), + [anon_sym_BANGin] = ACTIONS(295), + [anon_sym_instanceof] = ACTIONS(295), + [anon_sym_BANGinstanceof] = ACTIONS(305), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_BANG_EQ] = ACTIONS(307), + [anon_sym_LT_EQ_GT] = ACTIONS(309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(309), + [anon_sym_EQ_TILDE] = ACTIONS(309), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(315), + [anon_sym_AMP_AMP] = ACTIONS(317), + [anon_sym_PIPE_PIPE] = ACTIONS(319), + [anon_sym_QMARK_COLON] = ACTIONS(321), + [anon_sym_STAR_STAR] = ACTIONS(323), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_ATinterface] = ACTIONS(497), + [anon_sym_interface] = ACTIONS(495), + [anon_sym_class] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(497), + [anon_sym_RBRACE] = ACTIONS(497), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(495), + [anon_sym_this] = ACTIONS(495), + [anon_sym_null] = ACTIONS(495), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_do] = ACTIONS(495), + [anon_sym_while] = ACTIONS(495), + [anon_sym_for] = ACTIONS(495), + [anon_sym_if] = ACTIONS(495), + [anon_sym_else] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [aux_sym_number_literal_token1] = ACTIONS(495), + [aux_sym_number_literal_token2] = ACTIONS(497), + [aux_sym_number_literal_token3] = ACTIONS(497), + [aux_sym_number_literal_token4] = ACTIONS(495), + [aux_sym_number_literal_token5] = ACTIONS(497), + [anon_sym_return] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(495), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(495), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(497), + [anon_sym_DOLLAR_SLASH] = ACTIONS(497), + [anon_sym_switch] = ACTIONS(495), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_try] = ACTIONS(495), + [anon_sym_catch] = ACTIONS(495), + [anon_sym_finally] = ACTIONS(495), + [anon_sym_int] = ACTIONS(495), + [anon_sym_boolean] = ACTIONS(495), + [anon_sym_char] = ACTIONS(495), + [anon_sym_short] = ACTIONS(495), + [anon_sym_long] = ACTIONS(495), + [anon_sym_float] = ACTIONS(495), + [anon_sym_double] = ACTIONS(495), + [anon_sym_void] = ACTIONS(495), + [anon_sym_public] = ACTIONS(495), + [anon_sym_protected] = ACTIONS(495), + [anon_sym_private] = ACTIONS(495), + [anon_sym_static] = ACTIONS(495), + [anon_sym_final] = ACTIONS(495), + [anon_sym_synchronized] = ACTIONS(495), + [anon_sym_TILDE] = ACTIONS(497), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_new] = ACTIONS(495), + }, + [170] = { + [sym_comment] = STATE(170), + [sym_groovy_doc] = STATE(170), + [sym_identifier] = ACTIONS(329), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_DOT_AMP] = ACTIONS(331), + [anon_sym_DOT_AT] = ACTIONS(331), + [anon_sym_QMARK_DOT] = ACTIONS(331), + [anon_sym_STAR_DOT] = ACTIONS(331), + [anon_sym_STAR] = ACTIONS(329), + [anon_sym_STAR_COLON] = ACTIONS(331), + [anon_sym_import] = ACTIONS(329), + [anon_sym_as] = ACTIONS(329), + [anon_sym_package] = ACTIONS(329), + [anon_sym_AT] = ACTIONS(329), + [anon_sym_assert] = ACTIONS(329), + [anon_sym_PLUS_PLUS] = ACTIONS(331), + [anon_sym_DASH_DASH] = ACTIONS(331), + [anon_sym_PERCENT] = ACTIONS(331), + [anon_sym_SLASH] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(329), + [anon_sym_DASH] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(331), + [anon_sym_DOT_DOT] = ACTIONS(329), + [anon_sym_DOT_DOT_LT] = ACTIONS(331), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(331), + [anon_sym_LT_DOT_DOT] = ACTIONS(329), + [anon_sym_LT] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(329), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_GT_EQ] = ACTIONS(331), + [anon_sym_in] = ACTIONS(329), + [anon_sym_BANGin] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANGinstanceof] = ACTIONS(331), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_LT_EQ_GT] = ACTIONS(331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(331), + [anon_sym_EQ_TILDE] = ACTIONS(331), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(331), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(331), + [anon_sym_QMARK_COLON] = ACTIONS(331), + [anon_sym_STAR_STAR] = ACTIONS(331), + [anon_sym_true] = ACTIONS(329), + [anon_sym_false] = ACTIONS(329), + [anon_sym_ATinterface] = ACTIONS(331), + [anon_sym_interface] = ACTIONS(329), + [anon_sym_class] = ACTIONS(329), + [anon_sym_COMMA] = ACTIONS(331), + [anon_sym_LBRACE] = ACTIONS(331), + [anon_sym_RBRACE] = ACTIONS(331), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(329), + [anon_sym_this] = ACTIONS(329), + [anon_sym_null] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_do] = ACTIONS(329), + [anon_sym_while] = ACTIONS(329), + [anon_sym_for] = ACTIONS(329), + [anon_sym_if] = ACTIONS(329), + [anon_sym_else] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(331), + [anon_sym_COLON] = ACTIONS(499), + [aux_sym_number_literal_token1] = ACTIONS(329), + [aux_sym_number_literal_token2] = ACTIONS(331), + [aux_sym_number_literal_token3] = ACTIONS(331), + [aux_sym_number_literal_token4] = ACTIONS(329), + [aux_sym_number_literal_token5] = ACTIONS(331), + [anon_sym_return] = ACTIONS(329), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(329), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(331), + [anon_sym_DOLLAR_SLASH] = ACTIONS(331), + [anon_sym_switch] = ACTIONS(329), + [anon_sym_QMARK] = ACTIONS(329), + [anon_sym_try] = ACTIONS(329), + [anon_sym_int] = ACTIONS(329), + [anon_sym_boolean] = ACTIONS(329), + [anon_sym_char] = ACTIONS(329), + [anon_sym_short] = ACTIONS(329), + [anon_sym_long] = ACTIONS(329), + [anon_sym_float] = ACTIONS(329), + [anon_sym_double] = ACTIONS(329), + [anon_sym_void] = ACTIONS(329), + [anon_sym_public] = ACTIONS(329), + [anon_sym_protected] = ACTIONS(329), + [anon_sym_private] = ACTIONS(329), + [anon_sym_static] = ACTIONS(329), + [anon_sym_final] = ACTIONS(329), + [anon_sym_synchronized] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(331), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_new] = ACTIONS(329), + }, + [171] = { + [sym_comment] = STATE(171), + [sym_groovy_doc] = STATE(171), + [sym_identifier] = ACTIONS(501), + [anon_sym_break] = ACTIONS(501), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_SEMI] = ACTIONS(503), + [anon_sym_DOT_AMP] = ACTIONS(291), + [anon_sym_DOT_AT] = ACTIONS(291), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_STAR_DOT] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_STAR_COLON] = ACTIONS(503), + [anon_sym_import] = ACTIONS(501), + [anon_sym_as] = ACTIONS(295), + [anon_sym_package] = ACTIONS(501), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_assert] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(503), + [anon_sym_DASH_DASH] = ACTIONS(503), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(303), + [anon_sym_GT_GT_GT] = ACTIONS(301), + [anon_sym_DOT_DOT] = ACTIONS(303), + [anon_sym_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(295), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_in] = ACTIONS(295), + [anon_sym_BANGin] = ACTIONS(295), + [anon_sym_instanceof] = ACTIONS(295), + [anon_sym_BANGinstanceof] = ACTIONS(305), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_BANG_EQ] = ACTIONS(307), + [anon_sym_LT_EQ_GT] = ACTIONS(309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(309), + [anon_sym_EQ_TILDE] = ACTIONS(309), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(315), + [anon_sym_AMP_AMP] = ACTIONS(317), + [anon_sym_PIPE_PIPE] = ACTIONS(319), + [anon_sym_QMARK_COLON] = ACTIONS(321), + [anon_sym_STAR_STAR] = ACTIONS(323), + [anon_sym_true] = ACTIONS(501), + [anon_sym_false] = ACTIONS(501), + [anon_sym_ATinterface] = ACTIONS(503), + [anon_sym_interface] = ACTIONS(501), + [anon_sym_class] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(503), + [anon_sym_RBRACE] = ACTIONS(503), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(501), + [anon_sym_this] = ACTIONS(501), + [anon_sym_null] = ACTIONS(501), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_do] = ACTIONS(501), + [anon_sym_while] = ACTIONS(501), + [anon_sym_for] = ACTIONS(501), + [anon_sym_if] = ACTIONS(501), + [anon_sym_else] = ACTIONS(501), + [anon_sym_LBRACK] = ACTIONS(503), + [aux_sym_number_literal_token1] = ACTIONS(501), + [aux_sym_number_literal_token2] = ACTIONS(503), + [aux_sym_number_literal_token3] = ACTIONS(503), + [aux_sym_number_literal_token4] = ACTIONS(501), + [aux_sym_number_literal_token5] = ACTIONS(503), + [anon_sym_return] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(503), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(503), + [anon_sym_DOLLAR_SLASH] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(501), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_try] = ACTIONS(501), + [anon_sym_catch] = ACTIONS(501), + [anon_sym_finally] = ACTIONS(501), + [anon_sym_int] = ACTIONS(501), + [anon_sym_boolean] = ACTIONS(501), + [anon_sym_char] = ACTIONS(501), + [anon_sym_short] = ACTIONS(501), + [anon_sym_long] = ACTIONS(501), + [anon_sym_float] = ACTIONS(501), + [anon_sym_double] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_public] = ACTIONS(501), + [anon_sym_protected] = ACTIONS(501), + [anon_sym_private] = ACTIONS(501), + [anon_sym_static] = ACTIONS(501), + [anon_sym_final] = ACTIONS(501), + [anon_sym_synchronized] = ACTIONS(501), + [anon_sym_TILDE] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(501), + [anon_sym_new] = ACTIONS(501), + }, + [172] = { + [sym_comment] = STATE(172), + [sym_groovy_doc] = STATE(172), + [sym_identifier] = ACTIONS(505), + [anon_sym_break] = ACTIONS(505), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_DOT_AMP] = ACTIONS(291), + [anon_sym_DOT_AT] = ACTIONS(291), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_STAR_DOT] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_STAR_COLON] = ACTIONS(507), + [anon_sym_import] = ACTIONS(505), + [anon_sym_as] = ACTIONS(295), + [anon_sym_package] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(505), + [anon_sym_assert] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(303), + [anon_sym_GT_GT_GT] = ACTIONS(301), + [anon_sym_DOT_DOT] = ACTIONS(303), + [anon_sym_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(295), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_in] = ACTIONS(295), + [anon_sym_BANGin] = ACTIONS(295), + [anon_sym_instanceof] = ACTIONS(295), + [anon_sym_BANGinstanceof] = ACTIONS(305), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_BANG_EQ] = ACTIONS(307), + [anon_sym_LT_EQ_GT] = ACTIONS(309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(309), + [anon_sym_EQ_TILDE] = ACTIONS(309), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(315), + [anon_sym_AMP_AMP] = ACTIONS(317), + [anon_sym_PIPE_PIPE] = ACTIONS(319), + [anon_sym_QMARK_COLON] = ACTIONS(321), + [anon_sym_STAR_STAR] = ACTIONS(323), + [anon_sym_true] = ACTIONS(505), + [anon_sym_false] = ACTIONS(505), + [anon_sym_ATinterface] = ACTIONS(507), + [anon_sym_interface] = ACTIONS(505), + [anon_sym_class] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(507), + [anon_sym_RBRACE] = ACTIONS(507), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(505), + [anon_sym_this] = ACTIONS(505), + [anon_sym_null] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_do] = ACTIONS(505), + [anon_sym_while] = ACTIONS(505), + [anon_sym_for] = ACTIONS(505), + [anon_sym_if] = ACTIONS(505), + [anon_sym_else] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(507), + [aux_sym_number_literal_token1] = ACTIONS(505), + [aux_sym_number_literal_token2] = ACTIONS(507), + [aux_sym_number_literal_token3] = ACTIONS(507), + [aux_sym_number_literal_token4] = ACTIONS(505), + [aux_sym_number_literal_token5] = ACTIONS(507), + [anon_sym_return] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(507), + [anon_sym_DOLLAR_SLASH] = ACTIONS(507), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_try] = ACTIONS(505), + [anon_sym_catch] = ACTIONS(505), + [anon_sym_finally] = ACTIONS(505), + [anon_sym_int] = ACTIONS(505), + [anon_sym_boolean] = ACTIONS(505), + [anon_sym_char] = ACTIONS(505), + [anon_sym_short] = ACTIONS(505), + [anon_sym_long] = ACTIONS(505), + [anon_sym_float] = ACTIONS(505), + [anon_sym_double] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_public] = ACTIONS(505), + [anon_sym_protected] = ACTIONS(505), + [anon_sym_private] = ACTIONS(505), + [anon_sym_static] = ACTIONS(505), + [anon_sym_final] = ACTIONS(505), + [anon_sym_synchronized] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_new] = ACTIONS(505), + }, + [173] = { + [sym_comment] = STATE(173), + [sym_groovy_doc] = STATE(173), + [sym_identifier] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(511), + [anon_sym_DOT_AMP] = ACTIONS(291), + [anon_sym_DOT_AT] = ACTIONS(291), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_STAR_DOT] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_STAR_COLON] = ACTIONS(511), + [anon_sym_import] = ACTIONS(509), + [anon_sym_as] = ACTIONS(295), + [anon_sym_package] = ACTIONS(509), + [anon_sym_AT] = ACTIONS(509), + [anon_sym_assert] = ACTIONS(509), + [anon_sym_PLUS_PLUS] = ACTIONS(511), + [anon_sym_DASH_DASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(303), + [anon_sym_GT_GT_GT] = ACTIONS(301), + [anon_sym_DOT_DOT] = ACTIONS(303), + [anon_sym_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(295), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_in] = ACTIONS(295), + [anon_sym_BANGin] = ACTIONS(295), + [anon_sym_instanceof] = ACTIONS(295), + [anon_sym_BANGinstanceof] = ACTIONS(305), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_BANG_EQ] = ACTIONS(307), + [anon_sym_LT_EQ_GT] = ACTIONS(309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(309), + [anon_sym_EQ_TILDE] = ACTIONS(309), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(315), + [anon_sym_AMP_AMP] = ACTIONS(317), + [anon_sym_PIPE_PIPE] = ACTIONS(319), + [anon_sym_QMARK_COLON] = ACTIONS(321), + [anon_sym_STAR_STAR] = ACTIONS(323), + [anon_sym_true] = ACTIONS(509), + [anon_sym_false] = ACTIONS(509), + [anon_sym_ATinterface] = ACTIONS(511), + [anon_sym_interface] = ACTIONS(509), + [anon_sym_class] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_RBRACE] = ACTIONS(511), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(509), + [anon_sym_this] = ACTIONS(509), + [anon_sym_null] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(511), + [anon_sym_do] = ACTIONS(509), + [anon_sym_while] = ACTIONS(509), + [anon_sym_for] = ACTIONS(509), + [anon_sym_if] = ACTIONS(509), + [anon_sym_else] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [aux_sym_number_literal_token1] = ACTIONS(509), + [aux_sym_number_literal_token2] = ACTIONS(511), + [aux_sym_number_literal_token3] = ACTIONS(511), + [aux_sym_number_literal_token4] = ACTIONS(509), + [aux_sym_number_literal_token5] = ACTIONS(511), + [anon_sym_return] = ACTIONS(509), + [anon_sym_SQUOTE] = ACTIONS(509), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(511), + [anon_sym_DQUOTE] = ACTIONS(509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_SLASH] = ACTIONS(511), + [anon_sym_switch] = ACTIONS(509), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_try] = ACTIONS(509), + [anon_sym_catch] = ACTIONS(509), + [anon_sym_finally] = ACTIONS(509), + [anon_sym_int] = ACTIONS(509), + [anon_sym_boolean] = ACTIONS(509), + [anon_sym_char] = ACTIONS(509), + [anon_sym_short] = ACTIONS(509), + [anon_sym_long] = ACTIONS(509), + [anon_sym_float] = ACTIONS(509), + [anon_sym_double] = ACTIONS(509), + [anon_sym_void] = ACTIONS(509), + [anon_sym_public] = ACTIONS(509), + [anon_sym_protected] = ACTIONS(509), + [anon_sym_private] = ACTIONS(509), + [anon_sym_static] = ACTIONS(509), + [anon_sym_final] = ACTIONS(509), + [anon_sym_synchronized] = ACTIONS(509), + [anon_sym_TILDE] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_new] = ACTIONS(509), + }, + [174] = { + [sym_comment] = STATE(174), + [sym_groovy_doc] = STATE(174), + [sym_identifier] = ACTIONS(513), + [anon_sym_break] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(515), + [anon_sym_DOT_AMP] = ACTIONS(291), + [anon_sym_DOT_AT] = ACTIONS(291), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_STAR_DOT] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_STAR_COLON] = ACTIONS(515), + [anon_sym_import] = ACTIONS(513), + [anon_sym_as] = ACTIONS(295), + [anon_sym_package] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(513), + [anon_sym_assert] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(303), + [anon_sym_GT_GT_GT] = ACTIONS(301), + [anon_sym_DOT_DOT] = ACTIONS(303), + [anon_sym_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(295), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_in] = ACTIONS(295), + [anon_sym_BANGin] = ACTIONS(295), + [anon_sym_instanceof] = ACTIONS(295), + [anon_sym_BANGinstanceof] = ACTIONS(305), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_BANG_EQ] = ACTIONS(307), + [anon_sym_LT_EQ_GT] = ACTIONS(309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(309), + [anon_sym_EQ_TILDE] = ACTIONS(309), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(315), + [anon_sym_AMP_AMP] = ACTIONS(317), + [anon_sym_PIPE_PIPE] = ACTIONS(319), + [anon_sym_QMARK_COLON] = ACTIONS(321), + [anon_sym_STAR_STAR] = ACTIONS(323), + [anon_sym_true] = ACTIONS(513), + [anon_sym_false] = ACTIONS(513), + [anon_sym_ATinterface] = ACTIONS(515), + [anon_sym_interface] = ACTIONS(513), + [anon_sym_class] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_RBRACE] = ACTIONS(515), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(513), + [anon_sym_this] = ACTIONS(513), + [anon_sym_null] = ACTIONS(513), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_do] = ACTIONS(513), + [anon_sym_while] = ACTIONS(513), + [anon_sym_for] = ACTIONS(513), + [anon_sym_if] = ACTIONS(513), + [anon_sym_else] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(515), + [aux_sym_number_literal_token1] = ACTIONS(513), + [aux_sym_number_literal_token2] = ACTIONS(515), + [aux_sym_number_literal_token3] = ACTIONS(515), + [aux_sym_number_literal_token4] = ACTIONS(513), + [aux_sym_number_literal_token5] = ACTIONS(515), + [anon_sym_return] = ACTIONS(513), + [anon_sym_SQUOTE] = ACTIONS(513), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(513), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_SLASH] = ACTIONS(515), + [anon_sym_switch] = ACTIONS(513), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_try] = ACTIONS(513), + [anon_sym_catch] = ACTIONS(513), + [anon_sym_finally] = ACTIONS(513), + [anon_sym_int] = ACTIONS(513), + [anon_sym_boolean] = ACTIONS(513), + [anon_sym_char] = ACTIONS(513), + [anon_sym_short] = ACTIONS(513), + [anon_sym_long] = ACTIONS(513), + [anon_sym_float] = ACTIONS(513), + [anon_sym_double] = ACTIONS(513), + [anon_sym_void] = ACTIONS(513), + [anon_sym_public] = ACTIONS(513), + [anon_sym_protected] = ACTIONS(513), + [anon_sym_private] = ACTIONS(513), + [anon_sym_static] = ACTIONS(513), + [anon_sym_final] = ACTIONS(513), + [anon_sym_synchronized] = ACTIONS(513), + [anon_sym_TILDE] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(513), + [anon_sym_new] = ACTIONS(513), + }, + [175] = { + [sym_comment] = STATE(175), + [sym_groovy_doc] = STATE(175), + [sym_identifier] = ACTIONS(517), + [anon_sym_break] = ACTIONS(517), + [anon_sym_continue] = ACTIONS(517), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_DOT_AMP] = ACTIONS(291), + [anon_sym_DOT_AT] = ACTIONS(291), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_STAR_DOT] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_STAR_COLON] = ACTIONS(519), + [anon_sym_import] = ACTIONS(517), + [anon_sym_as] = ACTIONS(295), + [anon_sym_package] = ACTIONS(517), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_assert] = ACTIONS(517), + [anon_sym_PLUS_PLUS] = ACTIONS(519), + [anon_sym_DASH_DASH] = ACTIONS(519), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(303), + [anon_sym_GT_GT_GT] = ACTIONS(301), + [anon_sym_DOT_DOT] = ACTIONS(303), + [anon_sym_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_LT_DOT_DOT] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(295), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_in] = ACTIONS(295), + [anon_sym_BANGin] = ACTIONS(295), + [anon_sym_instanceof] = ACTIONS(295), + [anon_sym_BANGinstanceof] = ACTIONS(305), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_BANG_EQ] = ACTIONS(307), + [anon_sym_LT_EQ_GT] = ACTIONS(309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(309), + [anon_sym_EQ_TILDE] = ACTIONS(309), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(315), + [anon_sym_AMP_AMP] = ACTIONS(317), + [anon_sym_PIPE_PIPE] = ACTIONS(319), + [anon_sym_QMARK_COLON] = ACTIONS(321), + [anon_sym_STAR_STAR] = ACTIONS(323), + [anon_sym_true] = ACTIONS(517), + [anon_sym_false] = ACTIONS(517), + [anon_sym_ATinterface] = ACTIONS(519), + [anon_sym_interface] = ACTIONS(517), + [anon_sym_class] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_RBRACE] = ACTIONS(519), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(517), + [anon_sym_this] = ACTIONS(517), + [anon_sym_null] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(519), + [anon_sym_do] = ACTIONS(517), + [anon_sym_while] = ACTIONS(517), + [anon_sym_for] = ACTIONS(517), + [anon_sym_if] = ACTIONS(517), + [anon_sym_else] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [aux_sym_number_literal_token1] = ACTIONS(517), + [aux_sym_number_literal_token2] = ACTIONS(519), + [aux_sym_number_literal_token3] = ACTIONS(519), + [aux_sym_number_literal_token4] = ACTIONS(517), + [aux_sym_number_literal_token5] = ACTIONS(519), + [anon_sym_return] = ACTIONS(517), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE] = ACTIONS(517), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(519), + [anon_sym_DOLLAR_SLASH] = ACTIONS(519), + [anon_sym_switch] = ACTIONS(517), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_try] = ACTIONS(517), + [anon_sym_catch] = ACTIONS(517), + [anon_sym_finally] = ACTIONS(517), + [anon_sym_int] = ACTIONS(517), + [anon_sym_boolean] = ACTIONS(517), + [anon_sym_char] = ACTIONS(517), + [anon_sym_short] = ACTIONS(517), + [anon_sym_long] = ACTIONS(517), + [anon_sym_float] = ACTIONS(517), + [anon_sym_double] = ACTIONS(517), + [anon_sym_void] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_protected] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_synchronized] = ACTIONS(517), + [anon_sym_TILDE] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_new] = ACTIONS(517), + }, + [176] = { + [sym_comment] = STATE(176), + [sym_groovy_doc] = STATE(176), + [sym_identifier] = ACTIONS(413), + [anon_sym_break] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_DOT_AMP] = ACTIONS(415), + [anon_sym_DOT_AT] = ACTIONS(415), + [anon_sym_QMARK_DOT] = ACTIONS(415), + [anon_sym_STAR_DOT] = ACTIONS(415), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_STAR_COLON] = ACTIONS(415), + [anon_sym_import] = ACTIONS(413), + [anon_sym_as] = ACTIONS(413), + [anon_sym_package] = ACTIONS(413), + [anon_sym_AT] = ACTIONS(413), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_PLUS_PLUS] = ACTIONS(415), + [anon_sym_DASH_DASH] = ACTIONS(415), + [anon_sym_PERCENT] = ACTIONS(415), + [anon_sym_SLASH] = ACTIONS(413), + [anon_sym_PLUS] = ACTIONS(413), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(415), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_GT_GT_GT] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(413), + [anon_sym_DOT_DOT_LT] = ACTIONS(415), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(415), + [anon_sym_LT_DOT_DOT] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_EQ] = ACTIONS(413), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_in] = ACTIONS(413), + [anon_sym_BANGin] = ACTIONS(413), + [anon_sym_instanceof] = ACTIONS(413), + [anon_sym_BANGinstanceof] = ACTIONS(415), + [anon_sym_EQ_EQ] = ACTIONS(413), + [anon_sym_BANG_EQ] = ACTIONS(413), + [anon_sym_LT_EQ_GT] = ACTIONS(415), + [anon_sym_EQ_EQ_EQ] = ACTIONS(415), + [anon_sym_BANG_EQ_EQ] = ACTIONS(415), + [anon_sym_EQ_TILDE] = ACTIONS(415), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_QMARK_COLON] = ACTIONS(415), + [anon_sym_STAR_STAR] = ACTIONS(415), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_ATinterface] = ACTIONS(415), + [anon_sym_interface] = ACTIONS(413), + [anon_sym_class] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(413), + [anon_sym_this] = ACTIONS(413), + [anon_sym_null] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_do] = ACTIONS(413), + [anon_sym_while] = ACTIONS(413), + [anon_sym_for] = ACTIONS(413), + [anon_sym_if] = ACTIONS(413), + [anon_sym_else] = ACTIONS(413), + [anon_sym_LBRACK] = ACTIONS(415), + [aux_sym_number_literal_token1] = ACTIONS(413), + [aux_sym_number_literal_token2] = ACTIONS(415), + [aux_sym_number_literal_token3] = ACTIONS(415), + [aux_sym_number_literal_token4] = ACTIONS(413), + [aux_sym_number_literal_token5] = ACTIONS(415), + [anon_sym_return] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(415), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_DOLLAR_SLASH] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(413), + [anon_sym_try] = ACTIONS(413), + [anon_sym_int] = ACTIONS(413), + [anon_sym_boolean] = ACTIONS(413), + [anon_sym_char] = ACTIONS(413), + [anon_sym_short] = ACTIONS(413), + [anon_sym_long] = ACTIONS(413), + [anon_sym_float] = ACTIONS(413), + [anon_sym_double] = ACTIONS(413), + [anon_sym_void] = ACTIONS(413), + [anon_sym_public] = ACTIONS(413), + [anon_sym_protected] = ACTIONS(413), + [anon_sym_private] = ACTIONS(413), + [anon_sym_static] = ACTIONS(413), + [anon_sym_final] = ACTIONS(413), + [anon_sym_synchronized] = ACTIONS(413), + [anon_sym_TILDE] = ACTIONS(415), + [anon_sym_BANG] = ACTIONS(413), + [anon_sym_new] = ACTIONS(413), + }, + [177] = { + [sym_comment] = STATE(177), + [sym_groovy_doc] = STATE(177), + [sym_identifier] = ACTIONS(99), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_DOT_AMP] = ACTIONS(93), + [anon_sym_DOT_AT] = ACTIONS(93), + [anon_sym_QMARK_DOT] = ACTIONS(93), + [anon_sym_STAR_DOT] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_STAR_COLON] = ACTIONS(93), + [anon_sym_import] = ACTIONS(99), + [anon_sym_as] = ACTIONS(99), + [anon_sym_package] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(93), + [anon_sym_SLASH] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(99), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_LT_LT] = ACTIONS(93), + [anon_sym_GT_GT] = ACTIONS(99), + [anon_sym_GT_GT_GT] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(99), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_in] = ACTIONS(99), + [anon_sym_BANGin] = ACTIONS(99), + [anon_sym_instanceof] = ACTIONS(99), + [anon_sym_BANGinstanceof] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_LT_EQ_GT] = ACTIONS(93), + [anon_sym_EQ_EQ_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ_EQ] = ACTIONS(93), + [anon_sym_EQ_TILDE] = ACTIONS(93), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(99), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(93), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_ATinterface] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(99), + [anon_sym_class] = ACTIONS(99), + [anon_sym_COMMA] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_RBRACE] = ACTIONS(93), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(99), + [anon_sym_this] = ACTIONS(99), + [anon_sym_null] = ACTIONS(99), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_do] = ACTIONS(99), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(99), + [anon_sym_if] = ACTIONS(99), + [anon_sym_else] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(383), + [aux_sym_number_literal_token1] = ACTIONS(99), + [aux_sym_number_literal_token2] = ACTIONS(93), + [aux_sym_number_literal_token3] = ACTIONS(93), + [aux_sym_number_literal_token4] = ACTIONS(99), + [aux_sym_number_literal_token5] = ACTIONS(93), + [anon_sym_return] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_SLASH] = ACTIONS(93), + [anon_sym_switch] = ACTIONS(99), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_int] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_char] = ACTIONS(99), + [anon_sym_short] = ACTIONS(99), + [anon_sym_long] = ACTIONS(99), + [anon_sym_float] = ACTIONS(99), + [anon_sym_double] = ACTIONS(99), + [anon_sym_void] = ACTIONS(99), + [anon_sym_public] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_static] = ACTIONS(99), + [anon_sym_final] = ACTIONS(99), + [anon_sym_synchronized] = ACTIONS(99), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_new] = ACTIONS(99), + }, + [178] = { + [sym_comment] = STATE(178), + [sym_groovy_doc] = STATE(178), + [sym_identifier] = ACTIONS(421), + [anon_sym_break] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_SEMI] = ACTIONS(423), + [anon_sym_DOT_AMP] = ACTIONS(423), + [anon_sym_DOT_AT] = ACTIONS(423), + [anon_sym_QMARK_DOT] = ACTIONS(423), + [anon_sym_STAR_DOT] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(421), + [anon_sym_STAR_COLON] = ACTIONS(423), + [anon_sym_import] = ACTIONS(421), + [anon_sym_as] = ACTIONS(421), + [anon_sym_package] = ACTIONS(421), + [anon_sym_AT] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_PLUS_PLUS] = ACTIONS(423), + [anon_sym_DASH_DASH] = ACTIONS(423), + [anon_sym_PERCENT] = ACTIONS(423), + [anon_sym_SLASH] = ACTIONS(421), + [anon_sym_PLUS] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(421), + [anon_sym_LT_LT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(421), + [anon_sym_GT_GT_GT] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(421), + [anon_sym_DOT_DOT_LT] = ACTIONS(423), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(423), + [anon_sym_LT_DOT_DOT] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_LT_EQ] = ACTIONS(421), + [anon_sym_GT] = ACTIONS(421), + [anon_sym_GT_EQ] = ACTIONS(423), + [anon_sym_in] = ACTIONS(421), + [anon_sym_BANGin] = ACTIONS(421), + [anon_sym_instanceof] = ACTIONS(421), + [anon_sym_BANGinstanceof] = ACTIONS(423), + [anon_sym_EQ_EQ] = ACTIONS(421), + [anon_sym_BANG_EQ] = ACTIONS(421), + [anon_sym_LT_EQ_GT] = ACTIONS(423), + [anon_sym_EQ_EQ_EQ] = ACTIONS(423), + [anon_sym_BANG_EQ_EQ] = ACTIONS(423), + [anon_sym_EQ_TILDE] = ACTIONS(423), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(421), + [anon_sym_CARET] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_AMP_AMP] = ACTIONS(423), + [anon_sym_PIPE_PIPE] = ACTIONS(423), + [anon_sym_QMARK_COLON] = ACTIONS(423), + [anon_sym_STAR_STAR] = ACTIONS(423), + [anon_sym_true] = ACTIONS(421), + [anon_sym_false] = ACTIONS(421), + [anon_sym_ATinterface] = ACTIONS(423), + [anon_sym_interface] = ACTIONS(421), + [anon_sym_class] = ACTIONS(421), + [anon_sym_COMMA] = ACTIONS(423), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_DASH_GT] = ACTIONS(423), + [anon_sym_RBRACE] = ACTIONS(423), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(421), + [anon_sym_this] = ACTIONS(421), + [anon_sym_null] = ACTIONS(421), + [anon_sym_LPAREN] = ACTIONS(423), + [anon_sym_do] = ACTIONS(421), + [anon_sym_while] = ACTIONS(421), + [anon_sym_for] = ACTIONS(421), + [anon_sym_if] = ACTIONS(421), + [anon_sym_else] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(423), + [aux_sym_number_literal_token1] = ACTIONS(421), + [aux_sym_number_literal_token2] = ACTIONS(423), + [aux_sym_number_literal_token3] = ACTIONS(423), + [aux_sym_number_literal_token4] = ACTIONS(421), + [aux_sym_number_literal_token5] = ACTIONS(423), + [anon_sym_return] = ACTIONS(421), + [anon_sym_SQUOTE] = ACTIONS(421), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(423), + [anon_sym_DQUOTE] = ACTIONS(421), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(423), + [anon_sym_DOLLAR_SLASH] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(421), + [anon_sym_QMARK] = ACTIONS(421), + [anon_sym_try] = ACTIONS(421), + [anon_sym_int] = ACTIONS(421), + [anon_sym_boolean] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_short] = ACTIONS(421), + [anon_sym_long] = ACTIONS(421), + [anon_sym_float] = ACTIONS(421), + [anon_sym_double] = ACTIONS(421), + [anon_sym_void] = ACTIONS(421), + [anon_sym_public] = ACTIONS(421), + [anon_sym_protected] = ACTIONS(421), + [anon_sym_private] = ACTIONS(421), + [anon_sym_static] = ACTIONS(421), + [anon_sym_final] = ACTIONS(421), + [anon_sym_synchronized] = ACTIONS(421), + [anon_sym_TILDE] = ACTIONS(423), + [anon_sym_BANG] = ACTIONS(421), + [anon_sym_new] = ACTIONS(421), + }, + [179] = { + [sym_comment] = STATE(179), + [sym_groovy_doc] = STATE(179), + [sym_identifier] = ACTIONS(393), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_DOT_AMP] = ACTIONS(395), + [anon_sym_DOT_AT] = ACTIONS(395), + [anon_sym_QMARK_DOT] = ACTIONS(395), + [anon_sym_STAR_DOT] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_STAR_COLON] = ACTIONS(395), + [anon_sym_import] = ACTIONS(393), + [anon_sym_as] = ACTIONS(393), + [anon_sym_package] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(393), + [anon_sym_assert] = ACTIONS(393), + [anon_sym_PLUS_PLUS] = ACTIONS(395), + [anon_sym_DASH_DASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_GT_GT_GT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_LT] = ACTIONS(395), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(395), + [anon_sym_LT_DOT_DOT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(395), + [anon_sym_in] = ACTIONS(393), + [anon_sym_BANGin] = ACTIONS(393), + [anon_sym_instanceof] = ACTIONS(393), + [anon_sym_BANGinstanceof] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_LT_EQ_GT] = ACTIONS(395), + [anon_sym_EQ_EQ_EQ] = ACTIONS(395), + [anon_sym_BANG_EQ_EQ] = ACTIONS(395), + [anon_sym_EQ_TILDE] = ACTIONS(395), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_AMP_AMP] = ACTIONS(395), + [anon_sym_PIPE_PIPE] = ACTIONS(395), + [anon_sym_QMARK_COLON] = ACTIONS(395), + [anon_sym_STAR_STAR] = ACTIONS(395), + [anon_sym_true] = ACTIONS(393), + [anon_sym_false] = ACTIONS(393), + [anon_sym_ATinterface] = ACTIONS(395), + [anon_sym_interface] = ACTIONS(393), + [anon_sym_class] = ACTIONS(393), + [anon_sym_COMMA] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_DASH_GT] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(393), + [anon_sym_this] = ACTIONS(393), + [anon_sym_null] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_do] = ACTIONS(393), + [anon_sym_while] = ACTIONS(393), + [anon_sym_for] = ACTIONS(393), + [anon_sym_if] = ACTIONS(393), + [anon_sym_else] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [aux_sym_number_literal_token1] = ACTIONS(393), + [aux_sym_number_literal_token2] = ACTIONS(395), + [aux_sym_number_literal_token3] = ACTIONS(395), + [aux_sym_number_literal_token4] = ACTIONS(393), + [aux_sym_number_literal_token5] = ACTIONS(395), + [anon_sym_return] = ACTIONS(393), + [anon_sym_SQUOTE] = ACTIONS(393), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(395), + [anon_sym_DQUOTE] = ACTIONS(393), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(395), + [anon_sym_DOLLAR_SLASH] = ACTIONS(395), + [anon_sym_switch] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_try] = ACTIONS(393), + [anon_sym_int] = ACTIONS(393), + [anon_sym_boolean] = ACTIONS(393), + [anon_sym_char] = ACTIONS(393), + [anon_sym_short] = ACTIONS(393), + [anon_sym_long] = ACTIONS(393), + [anon_sym_float] = ACTIONS(393), + [anon_sym_double] = ACTIONS(393), + [anon_sym_void] = ACTIONS(393), + [anon_sym_public] = ACTIONS(393), + [anon_sym_protected] = ACTIONS(393), + [anon_sym_private] = ACTIONS(393), + [anon_sym_static] = ACTIONS(393), + [anon_sym_final] = ACTIONS(393), + [anon_sym_synchronized] = ACTIONS(393), + [anon_sym_TILDE] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_new] = ACTIONS(393), + }, + [180] = { + [sym_comment] = STATE(180), + [sym_groovy_doc] = STATE(180), + [sym_identifier] = ACTIONS(413), + [anon_sym_break] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_STAR_COLON] = ACTIONS(415), + [anon_sym_import] = ACTIONS(413), + [anon_sym_as] = ACTIONS(413), + [anon_sym_package] = ACTIONS(413), + [anon_sym_AT] = ACTIONS(413), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_PLUS_PLUS] = ACTIONS(415), + [anon_sym_DASH_DASH] = ACTIONS(415), + [anon_sym_PERCENT] = ACTIONS(415), + [anon_sym_SLASH] = ACTIONS(413), + [anon_sym_PLUS] = ACTIONS(413), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(415), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_GT_GT_GT] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(413), + [anon_sym_DOT_DOT_LT] = ACTIONS(415), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(415), + [anon_sym_LT_DOT_DOT] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_EQ] = ACTIONS(413), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_in] = ACTIONS(413), + [anon_sym_BANGin] = ACTIONS(413), + [anon_sym_instanceof] = ACTIONS(413), + [anon_sym_BANGinstanceof] = ACTIONS(415), + [anon_sym_EQ_EQ] = ACTIONS(413), + [anon_sym_BANG_EQ] = ACTIONS(413), + [anon_sym_LT_EQ_GT] = ACTIONS(415), + [anon_sym_EQ_EQ_EQ] = ACTIONS(415), + [anon_sym_BANG_EQ_EQ] = ACTIONS(415), + [anon_sym_EQ_TILDE] = ACTIONS(415), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_QMARK_COLON] = ACTIONS(415), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_ATinterface] = ACTIONS(415), + [anon_sym_interface] = ACTIONS(413), + [anon_sym_class] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(413), + [anon_sym_this] = ACTIONS(413), + [anon_sym_null] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_do] = ACTIONS(413), + [anon_sym_while] = ACTIONS(413), + [anon_sym_for] = ACTIONS(413), + [anon_sym_if] = ACTIONS(413), + [anon_sym_else] = ACTIONS(413), + [anon_sym_LBRACK] = ACTIONS(415), + [aux_sym_number_literal_token1] = ACTIONS(413), + [aux_sym_number_literal_token2] = ACTIONS(415), + [aux_sym_number_literal_token3] = ACTIONS(415), + [aux_sym_number_literal_token4] = ACTIONS(413), + [aux_sym_number_literal_token5] = ACTIONS(415), + [anon_sym_return] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(415), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_DOLLAR_SLASH] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(413), + [anon_sym_try] = ACTIONS(413), + [anon_sym_int] = ACTIONS(413), + [anon_sym_boolean] = ACTIONS(413), + [anon_sym_char] = ACTIONS(413), + [anon_sym_short] = ACTIONS(413), + [anon_sym_long] = ACTIONS(413), + [anon_sym_float] = ACTIONS(413), + [anon_sym_double] = ACTIONS(413), + [anon_sym_void] = ACTIONS(413), + [anon_sym_public] = ACTIONS(413), + [anon_sym_protected] = ACTIONS(413), + [anon_sym_private] = ACTIONS(413), + [anon_sym_static] = ACTIONS(413), + [anon_sym_final] = ACTIONS(413), + [anon_sym_synchronized] = ACTIONS(413), + [anon_sym_TILDE] = ACTIONS(415), + [anon_sym_BANG] = ACTIONS(413), + [anon_sym_new] = ACTIONS(413), + }, + [181] = { + [sym_comment] = STATE(181), + [sym_groovy_doc] = STATE(181), + [sym_identifier] = ACTIONS(433), + [anon_sym_break] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_DOT_AMP] = ACTIONS(435), + [anon_sym_DOT_AT] = ACTIONS(435), + [anon_sym_QMARK_DOT] = ACTIONS(435), + [anon_sym_STAR_DOT] = ACTIONS(435), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_STAR_COLON] = ACTIONS(435), + [anon_sym_import] = ACTIONS(433), + [anon_sym_as] = ACTIONS(433), + [anon_sym_package] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_assert] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PERCENT] = ACTIONS(435), + [anon_sym_SLASH] = ACTIONS(433), + [anon_sym_PLUS] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_LT_LT] = ACTIONS(435), + [anon_sym_GT_GT] = ACTIONS(433), + [anon_sym_GT_GT_GT] = ACTIONS(435), + [anon_sym_DOT_DOT] = ACTIONS(433), + [anon_sym_DOT_DOT_LT] = ACTIONS(435), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(435), + [anon_sym_LT_DOT_DOT] = ACTIONS(433), + [anon_sym_LT] = ACTIONS(433), + [anon_sym_LT_EQ] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(433), + [anon_sym_GT_EQ] = ACTIONS(435), + [anon_sym_in] = ACTIONS(433), + [anon_sym_BANGin] = ACTIONS(433), + [anon_sym_instanceof] = ACTIONS(433), + [anon_sym_BANGinstanceof] = ACTIONS(435), + [anon_sym_EQ_EQ] = ACTIONS(433), + [anon_sym_BANG_EQ] = ACTIONS(433), + [anon_sym_LT_EQ_GT] = ACTIONS(435), + [anon_sym_EQ_EQ_EQ] = ACTIONS(435), + [anon_sym_BANG_EQ_EQ] = ACTIONS(435), + [anon_sym_EQ_TILDE] = ACTIONS(435), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(435), + [anon_sym_AMP] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(433), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_QMARK_COLON] = ACTIONS(435), + [anon_sym_STAR_STAR] = ACTIONS(435), + [anon_sym_true] = ACTIONS(433), + [anon_sym_false] = ACTIONS(433), + [anon_sym_ATinterface] = ACTIONS(435), + [anon_sym_interface] = ACTIONS(433), + [anon_sym_class] = ACTIONS(433), + [anon_sym_COMMA] = ACTIONS(435), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_DASH_GT] = ACTIONS(435), + [anon_sym_RBRACE] = ACTIONS(435), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(433), + [anon_sym_this] = ACTIONS(433), + [anon_sym_null] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_do] = ACTIONS(433), + [anon_sym_while] = ACTIONS(433), + [anon_sym_for] = ACTIONS(433), + [anon_sym_if] = ACTIONS(433), + [anon_sym_else] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [aux_sym_number_literal_token1] = ACTIONS(433), + [aux_sym_number_literal_token2] = ACTIONS(435), + [aux_sym_number_literal_token3] = ACTIONS(435), + [aux_sym_number_literal_token4] = ACTIONS(433), + [aux_sym_number_literal_token5] = ACTIONS(435), + [anon_sym_return] = ACTIONS(433), + [anon_sym_SQUOTE] = ACTIONS(433), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(433), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(435), + [anon_sym_DOLLAR_SLASH] = ACTIONS(435), + [anon_sym_switch] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [anon_sym_try] = ACTIONS(433), + [anon_sym_int] = ACTIONS(433), + [anon_sym_boolean] = ACTIONS(433), + [anon_sym_char] = ACTIONS(433), + [anon_sym_short] = ACTIONS(433), + [anon_sym_long] = ACTIONS(433), + [anon_sym_float] = ACTIONS(433), + [anon_sym_double] = ACTIONS(433), + [anon_sym_void] = ACTIONS(433), + [anon_sym_public] = ACTIONS(433), + [anon_sym_protected] = ACTIONS(433), + [anon_sym_private] = ACTIONS(433), + [anon_sym_static] = ACTIONS(433), + [anon_sym_final] = ACTIONS(433), + [anon_sym_synchronized] = ACTIONS(433), + [anon_sym_TILDE] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_new] = ACTIONS(433), + }, + [182] = { + [sym_comment] = STATE(182), + [sym_groovy_doc] = STATE(182), + [sym_identifier] = ACTIONS(375), + [anon_sym_break] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(377), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_STAR_COLON] = ACTIONS(377), + [anon_sym_import] = ACTIONS(375), + [anon_sym_as] = ACTIONS(447), + [anon_sym_package] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(375), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_PLUS_PLUS] = ACTIONS(377), + [anon_sym_DASH_DASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_GT_GT_GT] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_in] = ACTIONS(447), + [anon_sym_BANGin] = ACTIONS(447), + [anon_sym_instanceof] = ACTIONS(447), + [anon_sym_BANGinstanceof] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(455), + [anon_sym_BANG_EQ] = ACTIONS(455), + [anon_sym_LT_EQ_GT] = ACTIONS(457), + [anon_sym_EQ_EQ_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ_EQ] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(457), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_AMP_AMP] = ACTIONS(465), + [anon_sym_PIPE_PIPE] = ACTIONS(467), + [anon_sym_QMARK_COLON] = ACTIONS(469), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_ATinterface] = ACTIONS(377), + [anon_sym_interface] = ACTIONS(375), + [anon_sym_class] = ACTIONS(375), + [anon_sym_COMMA] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_RBRACE] = ACTIONS(377), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(375), + [anon_sym_this] = ACTIONS(375), + [anon_sym_null] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_do] = ACTIONS(375), + [anon_sym_while] = ACTIONS(375), + [anon_sym_for] = ACTIONS(375), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(377), + [aux_sym_number_literal_token1] = ACTIONS(375), + [aux_sym_number_literal_token2] = ACTIONS(377), + [aux_sym_number_literal_token3] = ACTIONS(377), + [aux_sym_number_literal_token4] = ACTIONS(375), + [aux_sym_number_literal_token5] = ACTIONS(377), + [anon_sym_return] = ACTIONS(375), + [anon_sym_SQUOTE] = ACTIONS(375), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_DOLLAR_SLASH] = ACTIONS(377), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_try] = ACTIONS(375), + [anon_sym_int] = ACTIONS(375), + [anon_sym_boolean] = ACTIONS(375), + [anon_sym_char] = ACTIONS(375), + [anon_sym_short] = ACTIONS(375), + [anon_sym_long] = ACTIONS(375), + [anon_sym_float] = ACTIONS(375), + [anon_sym_double] = ACTIONS(375), + [anon_sym_void] = ACTIONS(375), + [anon_sym_public] = ACTIONS(375), + [anon_sym_protected] = ACTIONS(375), + [anon_sym_private] = ACTIONS(375), + [anon_sym_static] = ACTIONS(375), + [anon_sym_final] = ACTIONS(375), + [anon_sym_synchronized] = ACTIONS(375), + [anon_sym_TILDE] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_new] = ACTIONS(375), + }, + [183] = { + [sym_comment] = STATE(183), + [sym_groovy_doc] = STATE(183), + [sym_identifier] = ACTIONS(371), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(371), + [anon_sym_SEMI] = ACTIONS(373), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_STAR_COLON] = ACTIONS(373), + [anon_sym_import] = ACTIONS(371), + [anon_sym_as] = ACTIONS(447), + [anon_sym_package] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_PLUS_PLUS] = ACTIONS(373), + [anon_sym_DASH_DASH] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_GT_GT_GT] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_in] = ACTIONS(447), + [anon_sym_BANGin] = ACTIONS(447), + [anon_sym_instanceof] = ACTIONS(447), + [anon_sym_BANGinstanceof] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(455), + [anon_sym_BANG_EQ] = ACTIONS(455), + [anon_sym_LT_EQ_GT] = ACTIONS(457), + [anon_sym_EQ_EQ_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ_EQ] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(457), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_AMP_AMP] = ACTIONS(465), + [anon_sym_PIPE_PIPE] = ACTIONS(467), + [anon_sym_QMARK_COLON] = ACTIONS(469), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_ATinterface] = ACTIONS(373), + [anon_sym_interface] = ACTIONS(371), + [anon_sym_class] = ACTIONS(371), + [anon_sym_COMMA] = ACTIONS(373), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_RBRACE] = ACTIONS(373), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(371), + [anon_sym_this] = ACTIONS(371), + [anon_sym_null] = ACTIONS(371), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_do] = ACTIONS(371), + [anon_sym_while] = ACTIONS(371), + [anon_sym_for] = ACTIONS(371), + [anon_sym_if] = ACTIONS(371), + [anon_sym_else] = ACTIONS(371), + [anon_sym_LBRACK] = ACTIONS(373), + [aux_sym_number_literal_token1] = ACTIONS(371), + [aux_sym_number_literal_token2] = ACTIONS(373), + [aux_sym_number_literal_token3] = ACTIONS(373), + [aux_sym_number_literal_token4] = ACTIONS(371), + [aux_sym_number_literal_token5] = ACTIONS(373), + [anon_sym_return] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_SLASH] = ACTIONS(373), + [anon_sym_switch] = ACTIONS(371), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_try] = ACTIONS(371), + [anon_sym_int] = ACTIONS(371), + [anon_sym_boolean] = ACTIONS(371), + [anon_sym_char] = ACTIONS(371), + [anon_sym_short] = ACTIONS(371), + [anon_sym_long] = ACTIONS(371), + [anon_sym_float] = ACTIONS(371), + [anon_sym_double] = ACTIONS(371), + [anon_sym_void] = ACTIONS(371), + [anon_sym_public] = ACTIONS(371), + [anon_sym_protected] = ACTIONS(371), + [anon_sym_private] = ACTIONS(371), + [anon_sym_static] = ACTIONS(371), + [anon_sym_final] = ACTIONS(371), + [anon_sym_synchronized] = ACTIONS(371), + [anon_sym_TILDE] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(371), + [anon_sym_new] = ACTIONS(371), + }, + [184] = { + [sym_comment] = STATE(184), + [sym_groovy_doc] = STATE(184), + [sym_identifier] = ACTIONS(367), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(369), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_STAR_COLON] = ACTIONS(369), + [anon_sym_import] = ACTIONS(367), + [anon_sym_as] = ACTIONS(447), + [anon_sym_package] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(367), + [anon_sym_assert] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_GT_GT_GT] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_in] = ACTIONS(447), + [anon_sym_BANGin] = ACTIONS(447), + [anon_sym_instanceof] = ACTIONS(447), + [anon_sym_BANGinstanceof] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(455), + [anon_sym_BANG_EQ] = ACTIONS(455), + [anon_sym_LT_EQ_GT] = ACTIONS(457), + [anon_sym_EQ_EQ_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ_EQ] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(457), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_AMP_AMP] = ACTIONS(465), + [anon_sym_PIPE_PIPE] = ACTIONS(467), + [anon_sym_QMARK_COLON] = ACTIONS(469), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_ATinterface] = ACTIONS(369), + [anon_sym_interface] = ACTIONS(367), + [anon_sym_class] = ACTIONS(367), + [anon_sym_COMMA] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(369), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(367), + [anon_sym_this] = ACTIONS(367), + [anon_sym_null] = ACTIONS(367), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_do] = ACTIONS(367), + [anon_sym_while] = ACTIONS(367), + [anon_sym_for] = ACTIONS(367), + [anon_sym_if] = ACTIONS(367), + [anon_sym_else] = ACTIONS(367), + [anon_sym_LBRACK] = ACTIONS(369), + [aux_sym_number_literal_token1] = ACTIONS(367), + [aux_sym_number_literal_token2] = ACTIONS(369), + [aux_sym_number_literal_token3] = ACTIONS(369), + [aux_sym_number_literal_token4] = ACTIONS(367), + [aux_sym_number_literal_token5] = ACTIONS(369), + [anon_sym_return] = ACTIONS(367), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR_SLASH] = ACTIONS(369), + [anon_sym_switch] = ACTIONS(367), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_try] = ACTIONS(367), + [anon_sym_int] = ACTIONS(367), + [anon_sym_boolean] = ACTIONS(367), + [anon_sym_char] = ACTIONS(367), + [anon_sym_short] = ACTIONS(367), + [anon_sym_long] = ACTIONS(367), + [anon_sym_float] = ACTIONS(367), + [anon_sym_double] = ACTIONS(367), + [anon_sym_void] = ACTIONS(367), + [anon_sym_public] = ACTIONS(367), + [anon_sym_protected] = ACTIONS(367), + [anon_sym_private] = ACTIONS(367), + [anon_sym_static] = ACTIONS(367), + [anon_sym_final] = ACTIONS(367), + [anon_sym_synchronized] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_new] = ACTIONS(367), + }, + [185] = { + [sym_comment] = STATE(185), + [sym_groovy_doc] = STATE(185), + [sym_identifier] = ACTIONS(491), + [anon_sym_break] = ACTIONS(491), + [anon_sym_continue] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(493), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_STAR_COLON] = ACTIONS(493), + [anon_sym_import] = ACTIONS(491), + [anon_sym_as] = ACTIONS(447), + [anon_sym_package] = ACTIONS(491), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_assert] = ACTIONS(491), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_GT_GT_GT] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_in] = ACTIONS(447), + [anon_sym_BANGin] = ACTIONS(447), + [anon_sym_instanceof] = ACTIONS(447), + [anon_sym_BANGinstanceof] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(455), + [anon_sym_BANG_EQ] = ACTIONS(455), + [anon_sym_LT_EQ_GT] = ACTIONS(457), + [anon_sym_EQ_EQ_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ_EQ] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(457), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_AMP_AMP] = ACTIONS(465), + [anon_sym_PIPE_PIPE] = ACTIONS(467), + [anon_sym_QMARK_COLON] = ACTIONS(469), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(491), + [anon_sym_false] = ACTIONS(491), + [anon_sym_ATinterface] = ACTIONS(493), + [anon_sym_interface] = ACTIONS(491), + [anon_sym_class] = ACTIONS(491), + [anon_sym_COMMA] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DASH_GT] = ACTIONS(521), + [anon_sym_RBRACE] = ACTIONS(493), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(491), + [anon_sym_this] = ACTIONS(491), + [anon_sym_null] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_do] = ACTIONS(491), + [anon_sym_while] = ACTIONS(491), + [anon_sym_for] = ACTIONS(491), + [anon_sym_if] = ACTIONS(491), + [anon_sym_LBRACK] = ACTIONS(493), + [aux_sym_number_literal_token1] = ACTIONS(491), + [aux_sym_number_literal_token2] = ACTIONS(493), + [aux_sym_number_literal_token3] = ACTIONS(493), + [aux_sym_number_literal_token4] = ACTIONS(491), + [aux_sym_number_literal_token5] = ACTIONS(493), + [anon_sym_return] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(491), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(491), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(493), + [anon_sym_DOLLAR_SLASH] = ACTIONS(493), + [anon_sym_switch] = ACTIONS(491), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_try] = ACTIONS(491), + [anon_sym_int] = ACTIONS(491), + [anon_sym_boolean] = ACTIONS(491), + [anon_sym_char] = ACTIONS(491), + [anon_sym_short] = ACTIONS(491), + [anon_sym_long] = ACTIONS(491), + [anon_sym_float] = ACTIONS(491), + [anon_sym_double] = ACTIONS(491), + [anon_sym_void] = ACTIONS(491), + [anon_sym_public] = ACTIONS(491), + [anon_sym_protected] = ACTIONS(491), + [anon_sym_private] = ACTIONS(491), + [anon_sym_static] = ACTIONS(491), + [anon_sym_final] = ACTIONS(491), + [anon_sym_synchronized] = ACTIONS(491), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_BANG] = ACTIONS(491), + [anon_sym_new] = ACTIONS(491), + }, + [186] = { + [sym_comment] = STATE(186), + [sym_groovy_doc] = STATE(186), + [sym_identifier] = ACTIONS(487), + [anon_sym_break] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_SEMI] = ACTIONS(489), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_STAR_COLON] = ACTIONS(489), + [anon_sym_import] = ACTIONS(487), + [anon_sym_as] = ACTIONS(447), + [anon_sym_package] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(487), + [anon_sym_assert] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(489), + [anon_sym_DASH_DASH] = ACTIONS(489), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_GT_GT_GT] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_in] = ACTIONS(447), + [anon_sym_BANGin] = ACTIONS(447), + [anon_sym_instanceof] = ACTIONS(447), + [anon_sym_BANGinstanceof] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(455), + [anon_sym_BANG_EQ] = ACTIONS(455), + [anon_sym_LT_EQ_GT] = ACTIONS(457), + [anon_sym_EQ_EQ_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ_EQ] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(457), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_AMP_AMP] = ACTIONS(465), + [anon_sym_PIPE_PIPE] = ACTIONS(467), + [anon_sym_QMARK_COLON] = ACTIONS(469), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_ATinterface] = ACTIONS(489), + [anon_sym_interface] = ACTIONS(487), + [anon_sym_class] = ACTIONS(487), + [anon_sym_LBRACE] = ACTIONS(489), + [anon_sym_RBRACE] = ACTIONS(489), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(487), + [anon_sym_this] = ACTIONS(487), + [anon_sym_null] = ACTIONS(487), + [anon_sym_LPAREN] = ACTIONS(489), + [anon_sym_do] = ACTIONS(487), + [anon_sym_while] = ACTIONS(487), + [anon_sym_for] = ACTIONS(487), + [anon_sym_if] = ACTIONS(487), + [anon_sym_else] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(489), + [aux_sym_number_literal_token1] = ACTIONS(487), + [aux_sym_number_literal_token2] = ACTIONS(489), + [aux_sym_number_literal_token3] = ACTIONS(489), + [aux_sym_number_literal_token4] = ACTIONS(487), + [aux_sym_number_literal_token5] = ACTIONS(489), + [anon_sym_return] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(487), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(489), + [anon_sym_DQUOTE] = ACTIONS(487), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(489), + [anon_sym_DOLLAR_SLASH] = ACTIONS(489), + [anon_sym_switch] = ACTIONS(487), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_try] = ACTIONS(487), + [anon_sym_int] = ACTIONS(487), + [anon_sym_boolean] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_short] = ACTIONS(487), + [anon_sym_long] = ACTIONS(487), + [anon_sym_float] = ACTIONS(487), + [anon_sym_double] = ACTIONS(487), + [anon_sym_void] = ACTIONS(487), + [anon_sym_public] = ACTIONS(487), + [anon_sym_protected] = ACTIONS(487), + [anon_sym_private] = ACTIONS(487), + [anon_sym_static] = ACTIONS(487), + [anon_sym_final] = ACTIONS(487), + [anon_sym_synchronized] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_new] = ACTIONS(487), + }, + [187] = { + [sym_comment] = STATE(187), + [sym_groovy_doc] = STATE(187), + [sym_identifier] = ACTIONS(495), + [anon_sym_break] = ACTIONS(495), + [anon_sym_continue] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(497), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_STAR_COLON] = ACTIONS(497), + [anon_sym_import] = ACTIONS(495), + [anon_sym_as] = ACTIONS(447), + [anon_sym_package] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(495), + [anon_sym_assert] = ACTIONS(495), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_GT_GT_GT] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_in] = ACTIONS(447), + [anon_sym_BANGin] = ACTIONS(447), + [anon_sym_instanceof] = ACTIONS(447), + [anon_sym_BANGinstanceof] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(455), + [anon_sym_BANG_EQ] = ACTIONS(455), + [anon_sym_LT_EQ_GT] = ACTIONS(457), + [anon_sym_EQ_EQ_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ_EQ] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(457), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_AMP_AMP] = ACTIONS(465), + [anon_sym_PIPE_PIPE] = ACTIONS(467), + [anon_sym_QMARK_COLON] = ACTIONS(469), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_ATinterface] = ACTIONS(497), + [anon_sym_interface] = ACTIONS(495), + [anon_sym_class] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(497), + [anon_sym_RBRACE] = ACTIONS(497), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(495), + [anon_sym_this] = ACTIONS(495), + [anon_sym_null] = ACTIONS(495), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_do] = ACTIONS(495), + [anon_sym_while] = ACTIONS(495), + [anon_sym_for] = ACTIONS(495), + [anon_sym_if] = ACTIONS(495), + [anon_sym_else] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [aux_sym_number_literal_token1] = ACTIONS(495), + [aux_sym_number_literal_token2] = ACTIONS(497), + [aux_sym_number_literal_token3] = ACTIONS(497), + [aux_sym_number_literal_token4] = ACTIONS(495), + [aux_sym_number_literal_token5] = ACTIONS(497), + [anon_sym_return] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(495), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(495), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(497), + [anon_sym_DOLLAR_SLASH] = ACTIONS(497), + [anon_sym_switch] = ACTIONS(495), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_try] = ACTIONS(495), + [anon_sym_int] = ACTIONS(495), + [anon_sym_boolean] = ACTIONS(495), + [anon_sym_char] = ACTIONS(495), + [anon_sym_short] = ACTIONS(495), + [anon_sym_long] = ACTIONS(495), + [anon_sym_float] = ACTIONS(495), + [anon_sym_double] = ACTIONS(495), + [anon_sym_void] = ACTIONS(495), + [anon_sym_public] = ACTIONS(495), + [anon_sym_protected] = ACTIONS(495), + [anon_sym_private] = ACTIONS(495), + [anon_sym_static] = ACTIONS(495), + [anon_sym_final] = ACTIONS(495), + [anon_sym_synchronized] = ACTIONS(495), + [anon_sym_TILDE] = ACTIONS(497), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_new] = ACTIONS(495), + }, + [188] = { + [sym_comment] = STATE(188), + [sym_groovy_doc] = STATE(188), + [sym_identifier] = ACTIONS(473), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_STAR_COLON] = ACTIONS(475), + [anon_sym_import] = ACTIONS(473), + [anon_sym_as] = ACTIONS(447), + [anon_sym_package] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(473), + [anon_sym_assert] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_GT_GT_GT] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_in] = ACTIONS(447), + [anon_sym_BANGin] = ACTIONS(447), + [anon_sym_instanceof] = ACTIONS(447), + [anon_sym_BANGinstanceof] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(455), + [anon_sym_BANG_EQ] = ACTIONS(455), + [anon_sym_LT_EQ_GT] = ACTIONS(457), + [anon_sym_EQ_EQ_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ_EQ] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(457), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_AMP_AMP] = ACTIONS(465), + [anon_sym_PIPE_PIPE] = ACTIONS(467), + [anon_sym_QMARK_COLON] = ACTIONS(469), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(473), + [anon_sym_false] = ACTIONS(473), + [anon_sym_ATinterface] = ACTIONS(475), + [anon_sym_interface] = ACTIONS(473), + [anon_sym_class] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_RBRACE] = ACTIONS(475), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(473), + [anon_sym_this] = ACTIONS(473), + [anon_sym_null] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_do] = ACTIONS(473), + [anon_sym_while] = ACTIONS(473), + [anon_sym_for] = ACTIONS(473), + [anon_sym_if] = ACTIONS(473), + [anon_sym_else] = ACTIONS(473), + [anon_sym_LBRACK] = ACTIONS(475), + [aux_sym_number_literal_token1] = ACTIONS(473), + [aux_sym_number_literal_token2] = ACTIONS(475), + [aux_sym_number_literal_token3] = ACTIONS(475), + [aux_sym_number_literal_token4] = ACTIONS(473), + [aux_sym_number_literal_token5] = ACTIONS(475), + [anon_sym_return] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_SLASH] = ACTIONS(475), + [anon_sym_switch] = ACTIONS(473), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_try] = ACTIONS(473), + [anon_sym_int] = ACTIONS(473), + [anon_sym_boolean] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_short] = ACTIONS(473), + [anon_sym_long] = ACTIONS(473), + [anon_sym_float] = ACTIONS(473), + [anon_sym_double] = ACTIONS(473), + [anon_sym_void] = ACTIONS(473), + [anon_sym_public] = ACTIONS(473), + [anon_sym_protected] = ACTIONS(473), + [anon_sym_private] = ACTIONS(473), + [anon_sym_static] = ACTIONS(473), + [anon_sym_final] = ACTIONS(473), + [anon_sym_synchronized] = ACTIONS(473), + [anon_sym_TILDE] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_new] = ACTIONS(473), + }, + [189] = { + [sym_comment] = STATE(189), + [sym_groovy_doc] = STATE(189), + [sym_identifier] = ACTIONS(501), + [anon_sym_break] = ACTIONS(501), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_SEMI] = ACTIONS(503), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_STAR_COLON] = ACTIONS(503), + [anon_sym_import] = ACTIONS(501), + [anon_sym_as] = ACTIONS(447), + [anon_sym_package] = ACTIONS(501), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_assert] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(503), + [anon_sym_DASH_DASH] = ACTIONS(503), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_GT_GT_GT] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_in] = ACTIONS(447), + [anon_sym_BANGin] = ACTIONS(447), + [anon_sym_instanceof] = ACTIONS(447), + [anon_sym_BANGinstanceof] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(455), + [anon_sym_BANG_EQ] = ACTIONS(455), + [anon_sym_LT_EQ_GT] = ACTIONS(457), + [anon_sym_EQ_EQ_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ_EQ] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(457), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_AMP_AMP] = ACTIONS(465), + [anon_sym_PIPE_PIPE] = ACTIONS(467), + [anon_sym_QMARK_COLON] = ACTIONS(469), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(501), + [anon_sym_false] = ACTIONS(501), + [anon_sym_ATinterface] = ACTIONS(503), + [anon_sym_interface] = ACTIONS(501), + [anon_sym_class] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(503), + [anon_sym_RBRACE] = ACTIONS(503), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(501), + [anon_sym_this] = ACTIONS(501), + [anon_sym_null] = ACTIONS(501), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_do] = ACTIONS(501), + [anon_sym_while] = ACTIONS(501), + [anon_sym_for] = ACTIONS(501), + [anon_sym_if] = ACTIONS(501), + [anon_sym_else] = ACTIONS(501), + [anon_sym_LBRACK] = ACTIONS(503), + [aux_sym_number_literal_token1] = ACTIONS(501), + [aux_sym_number_literal_token2] = ACTIONS(503), + [aux_sym_number_literal_token3] = ACTIONS(503), + [aux_sym_number_literal_token4] = ACTIONS(501), + [aux_sym_number_literal_token5] = ACTIONS(503), + [anon_sym_return] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(503), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(503), + [anon_sym_DOLLAR_SLASH] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(501), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_try] = ACTIONS(501), + [anon_sym_int] = ACTIONS(501), + [anon_sym_boolean] = ACTIONS(501), + [anon_sym_char] = ACTIONS(501), + [anon_sym_short] = ACTIONS(501), + [anon_sym_long] = ACTIONS(501), + [anon_sym_float] = ACTIONS(501), + [anon_sym_double] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_public] = ACTIONS(501), + [anon_sym_protected] = ACTIONS(501), + [anon_sym_private] = ACTIONS(501), + [anon_sym_static] = ACTIONS(501), + [anon_sym_final] = ACTIONS(501), + [anon_sym_synchronized] = ACTIONS(501), + [anon_sym_TILDE] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(501), + [anon_sym_new] = ACTIONS(501), + }, + [190] = { + [sym_comment] = STATE(190), + [sym_groovy_doc] = STATE(190), + [sym_identifier] = ACTIONS(513), + [anon_sym_break] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(515), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_STAR_COLON] = ACTIONS(515), + [anon_sym_import] = ACTIONS(513), + [anon_sym_as] = ACTIONS(447), + [anon_sym_package] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(513), + [anon_sym_assert] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_GT_GT_GT] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_in] = ACTIONS(447), + [anon_sym_BANGin] = ACTIONS(447), + [anon_sym_instanceof] = ACTIONS(447), + [anon_sym_BANGinstanceof] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(455), + [anon_sym_BANG_EQ] = ACTIONS(455), + [anon_sym_LT_EQ_GT] = ACTIONS(457), + [anon_sym_EQ_EQ_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ_EQ] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(457), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_AMP_AMP] = ACTIONS(465), + [anon_sym_PIPE_PIPE] = ACTIONS(467), + [anon_sym_QMARK_COLON] = ACTIONS(469), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(513), + [anon_sym_false] = ACTIONS(513), + [anon_sym_ATinterface] = ACTIONS(515), + [anon_sym_interface] = ACTIONS(513), + [anon_sym_class] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_RBRACE] = ACTIONS(515), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(513), + [anon_sym_this] = ACTIONS(513), + [anon_sym_null] = ACTIONS(513), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_do] = ACTIONS(513), + [anon_sym_while] = ACTIONS(513), + [anon_sym_for] = ACTIONS(513), + [anon_sym_if] = ACTIONS(513), + [anon_sym_else] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(515), + [aux_sym_number_literal_token1] = ACTIONS(513), + [aux_sym_number_literal_token2] = ACTIONS(515), + [aux_sym_number_literal_token3] = ACTIONS(515), + [aux_sym_number_literal_token4] = ACTIONS(513), + [aux_sym_number_literal_token5] = ACTIONS(515), + [anon_sym_return] = ACTIONS(513), + [anon_sym_SQUOTE] = ACTIONS(513), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(513), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_SLASH] = ACTIONS(515), + [anon_sym_switch] = ACTIONS(513), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_try] = ACTIONS(513), + [anon_sym_int] = ACTIONS(513), + [anon_sym_boolean] = ACTIONS(513), + [anon_sym_char] = ACTIONS(513), + [anon_sym_short] = ACTIONS(513), + [anon_sym_long] = ACTIONS(513), + [anon_sym_float] = ACTIONS(513), + [anon_sym_double] = ACTIONS(513), + [anon_sym_void] = ACTIONS(513), + [anon_sym_public] = ACTIONS(513), + [anon_sym_protected] = ACTIONS(513), + [anon_sym_private] = ACTIONS(513), + [anon_sym_static] = ACTIONS(513), + [anon_sym_final] = ACTIONS(513), + [anon_sym_synchronized] = ACTIONS(513), + [anon_sym_TILDE] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(513), + [anon_sym_new] = ACTIONS(513), + }, + [191] = { + [sym_comment] = STATE(191), + [sym_groovy_doc] = STATE(191), + [sym_identifier] = ACTIONS(517), + [anon_sym_break] = ACTIONS(517), + [anon_sym_continue] = ACTIONS(517), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_STAR_COLON] = ACTIONS(519), + [anon_sym_import] = ACTIONS(517), + [anon_sym_as] = ACTIONS(447), + [anon_sym_package] = ACTIONS(517), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_assert] = ACTIONS(517), + [anon_sym_PLUS_PLUS] = ACTIONS(519), + [anon_sym_DASH_DASH] = ACTIONS(519), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_GT_GT_GT] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_in] = ACTIONS(447), + [anon_sym_BANGin] = ACTIONS(447), + [anon_sym_instanceof] = ACTIONS(447), + [anon_sym_BANGinstanceof] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(455), + [anon_sym_BANG_EQ] = ACTIONS(455), + [anon_sym_LT_EQ_GT] = ACTIONS(457), + [anon_sym_EQ_EQ_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ_EQ] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(457), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_AMP_AMP] = ACTIONS(465), + [anon_sym_PIPE_PIPE] = ACTIONS(467), + [anon_sym_QMARK_COLON] = ACTIONS(469), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(517), + [anon_sym_false] = ACTIONS(517), + [anon_sym_ATinterface] = ACTIONS(519), + [anon_sym_interface] = ACTIONS(517), + [anon_sym_class] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_RBRACE] = ACTIONS(519), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(517), + [anon_sym_this] = ACTIONS(517), + [anon_sym_null] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(519), + [anon_sym_do] = ACTIONS(517), + [anon_sym_while] = ACTIONS(517), + [anon_sym_for] = ACTIONS(517), + [anon_sym_if] = ACTIONS(517), + [anon_sym_else] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [aux_sym_number_literal_token1] = ACTIONS(517), + [aux_sym_number_literal_token2] = ACTIONS(519), + [aux_sym_number_literal_token3] = ACTIONS(519), + [aux_sym_number_literal_token4] = ACTIONS(517), + [aux_sym_number_literal_token5] = ACTIONS(519), + [anon_sym_return] = ACTIONS(517), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE] = ACTIONS(517), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(519), + [anon_sym_DOLLAR_SLASH] = ACTIONS(519), + [anon_sym_switch] = ACTIONS(517), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_try] = ACTIONS(517), + [anon_sym_int] = ACTIONS(517), + [anon_sym_boolean] = ACTIONS(517), + [anon_sym_char] = ACTIONS(517), + [anon_sym_short] = ACTIONS(517), + [anon_sym_long] = ACTIONS(517), + [anon_sym_float] = ACTIONS(517), + [anon_sym_double] = ACTIONS(517), + [anon_sym_void] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_protected] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_synchronized] = ACTIONS(517), + [anon_sym_TILDE] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_new] = ACTIONS(517), + }, + [192] = { + [sym_comment] = STATE(192), + [sym_groovy_doc] = STATE(192), + [sym_identifier] = ACTIONS(483), + [anon_sym_break] = ACTIONS(483), + [anon_sym_continue] = ACTIONS(483), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_STAR_COLON] = ACTIONS(485), + [anon_sym_import] = ACTIONS(483), + [anon_sym_as] = ACTIONS(447), + [anon_sym_package] = ACTIONS(483), + [anon_sym_AT] = ACTIONS(483), + [anon_sym_assert] = ACTIONS(483), + [anon_sym_PLUS_PLUS] = ACTIONS(485), + [anon_sym_DASH_DASH] = ACTIONS(485), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_GT_GT_GT] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_in] = ACTIONS(447), + [anon_sym_BANGin] = ACTIONS(447), + [anon_sym_instanceof] = ACTIONS(447), + [anon_sym_BANGinstanceof] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(455), + [anon_sym_BANG_EQ] = ACTIONS(455), + [anon_sym_LT_EQ_GT] = ACTIONS(457), + [anon_sym_EQ_EQ_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ_EQ] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(457), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_AMP_AMP] = ACTIONS(465), + [anon_sym_PIPE_PIPE] = ACTIONS(467), + [anon_sym_QMARK_COLON] = ACTIONS(469), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(483), + [anon_sym_false] = ACTIONS(483), + [anon_sym_ATinterface] = ACTIONS(485), + [anon_sym_interface] = ACTIONS(483), + [anon_sym_class] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_RBRACE] = ACTIONS(485), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(483), + [anon_sym_this] = ACTIONS(483), + [anon_sym_null] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_do] = ACTIONS(483), + [anon_sym_while] = ACTIONS(483), + [anon_sym_for] = ACTIONS(483), + [anon_sym_if] = ACTIONS(483), + [anon_sym_else] = ACTIONS(483), + [anon_sym_LBRACK] = ACTIONS(485), + [aux_sym_number_literal_token1] = ACTIONS(483), + [aux_sym_number_literal_token2] = ACTIONS(485), + [aux_sym_number_literal_token3] = ACTIONS(485), + [aux_sym_number_literal_token4] = ACTIONS(483), + [aux_sym_number_literal_token5] = ACTIONS(485), + [anon_sym_return] = ACTIONS(483), + [anon_sym_SQUOTE] = ACTIONS(483), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(485), + [anon_sym_DQUOTE] = ACTIONS(483), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(485), + [anon_sym_DOLLAR_SLASH] = ACTIONS(485), + [anon_sym_switch] = ACTIONS(483), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_try] = ACTIONS(483), + [anon_sym_int] = ACTIONS(483), + [anon_sym_boolean] = ACTIONS(483), + [anon_sym_char] = ACTIONS(483), + [anon_sym_short] = ACTIONS(483), + [anon_sym_long] = ACTIONS(483), + [anon_sym_float] = ACTIONS(483), + [anon_sym_double] = ACTIONS(483), + [anon_sym_void] = ACTIONS(483), + [anon_sym_public] = ACTIONS(483), + [anon_sym_protected] = ACTIONS(483), + [anon_sym_private] = ACTIONS(483), + [anon_sym_static] = ACTIONS(483), + [anon_sym_final] = ACTIONS(483), + [anon_sym_synchronized] = ACTIONS(483), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(483), + [anon_sym_new] = ACTIONS(483), + }, + [193] = { + [sym_comment] = STATE(193), + [sym_groovy_doc] = STATE(193), + [sym_identifier] = ACTIONS(491), + [anon_sym_break] = ACTIONS(491), + [anon_sym_continue] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(493), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_STAR_COLON] = ACTIONS(493), + [anon_sym_import] = ACTIONS(491), + [anon_sym_as] = ACTIONS(447), + [anon_sym_package] = ACTIONS(491), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_assert] = ACTIONS(491), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_GT_GT_GT] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_in] = ACTIONS(447), + [anon_sym_BANGin] = ACTIONS(447), + [anon_sym_instanceof] = ACTIONS(447), + [anon_sym_BANGinstanceof] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(455), + [anon_sym_BANG_EQ] = ACTIONS(455), + [anon_sym_LT_EQ_GT] = ACTIONS(457), + [anon_sym_EQ_EQ_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ_EQ] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(457), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_AMP_AMP] = ACTIONS(465), + [anon_sym_PIPE_PIPE] = ACTIONS(467), + [anon_sym_QMARK_COLON] = ACTIONS(469), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(491), + [anon_sym_false] = ACTIONS(491), + [anon_sym_ATinterface] = ACTIONS(493), + [anon_sym_interface] = ACTIONS(491), + [anon_sym_class] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_RBRACE] = ACTIONS(493), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(491), + [anon_sym_this] = ACTIONS(491), + [anon_sym_null] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_do] = ACTIONS(491), + [anon_sym_while] = ACTIONS(491), + [anon_sym_for] = ACTIONS(491), + [anon_sym_if] = ACTIONS(491), + [anon_sym_else] = ACTIONS(491), + [anon_sym_LBRACK] = ACTIONS(493), + [aux_sym_number_literal_token1] = ACTIONS(491), + [aux_sym_number_literal_token2] = ACTIONS(493), + [aux_sym_number_literal_token3] = ACTIONS(493), + [aux_sym_number_literal_token4] = ACTIONS(491), + [aux_sym_number_literal_token5] = ACTIONS(493), + [anon_sym_return] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(491), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(491), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(493), + [anon_sym_DOLLAR_SLASH] = ACTIONS(493), + [anon_sym_switch] = ACTIONS(491), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_try] = ACTIONS(491), + [anon_sym_int] = ACTIONS(491), + [anon_sym_boolean] = ACTIONS(491), + [anon_sym_char] = ACTIONS(491), + [anon_sym_short] = ACTIONS(491), + [anon_sym_long] = ACTIONS(491), + [anon_sym_float] = ACTIONS(491), + [anon_sym_double] = ACTIONS(491), + [anon_sym_void] = ACTIONS(491), + [anon_sym_public] = ACTIONS(491), + [anon_sym_protected] = ACTIONS(491), + [anon_sym_private] = ACTIONS(491), + [anon_sym_static] = ACTIONS(491), + [anon_sym_final] = ACTIONS(491), + [anon_sym_synchronized] = ACTIONS(491), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_BANG] = ACTIONS(491), + [anon_sym_new] = ACTIONS(491), + }, + [194] = { + [sym_comment] = STATE(194), + [sym_groovy_doc] = STATE(194), + [sym_identifier] = ACTIONS(505), + [anon_sym_break] = ACTIONS(505), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_STAR_COLON] = ACTIONS(507), + [anon_sym_import] = ACTIONS(505), + [anon_sym_as] = ACTIONS(447), + [anon_sym_package] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(505), + [anon_sym_assert] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_GT_GT_GT] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_in] = ACTIONS(447), + [anon_sym_BANGin] = ACTIONS(447), + [anon_sym_instanceof] = ACTIONS(447), + [anon_sym_BANGinstanceof] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(455), + [anon_sym_BANG_EQ] = ACTIONS(455), + [anon_sym_LT_EQ_GT] = ACTIONS(457), + [anon_sym_EQ_EQ_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ_EQ] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(457), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_AMP_AMP] = ACTIONS(465), + [anon_sym_PIPE_PIPE] = ACTIONS(467), + [anon_sym_QMARK_COLON] = ACTIONS(469), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(505), + [anon_sym_false] = ACTIONS(505), + [anon_sym_ATinterface] = ACTIONS(507), + [anon_sym_interface] = ACTIONS(505), + [anon_sym_class] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(507), + [anon_sym_RBRACE] = ACTIONS(507), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(505), + [anon_sym_this] = ACTIONS(505), + [anon_sym_null] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_do] = ACTIONS(505), + [anon_sym_while] = ACTIONS(505), + [anon_sym_for] = ACTIONS(505), + [anon_sym_if] = ACTIONS(505), + [anon_sym_else] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(507), + [aux_sym_number_literal_token1] = ACTIONS(505), + [aux_sym_number_literal_token2] = ACTIONS(507), + [aux_sym_number_literal_token3] = ACTIONS(507), + [aux_sym_number_literal_token4] = ACTIONS(505), + [aux_sym_number_literal_token5] = ACTIONS(507), + [anon_sym_return] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(507), + [anon_sym_DOLLAR_SLASH] = ACTIONS(507), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_try] = ACTIONS(505), + [anon_sym_int] = ACTIONS(505), + [anon_sym_boolean] = ACTIONS(505), + [anon_sym_char] = ACTIONS(505), + [anon_sym_short] = ACTIONS(505), + [anon_sym_long] = ACTIONS(505), + [anon_sym_float] = ACTIONS(505), + [anon_sym_double] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_public] = ACTIONS(505), + [anon_sym_protected] = ACTIONS(505), + [anon_sym_private] = ACTIONS(505), + [anon_sym_static] = ACTIONS(505), + [anon_sym_final] = ACTIONS(505), + [anon_sym_synchronized] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_new] = ACTIONS(505), + }, + [195] = { + [sym_comment] = STATE(195), + [sym_groovy_doc] = STATE(195), + [sym_identifier] = ACTIONS(479), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(481), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_STAR_COLON] = ACTIONS(481), + [anon_sym_import] = ACTIONS(479), + [anon_sym_as] = ACTIONS(447), + [anon_sym_package] = ACTIONS(479), + [anon_sym_AT] = ACTIONS(479), + [anon_sym_assert] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_GT_GT_GT] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_in] = ACTIONS(447), + [anon_sym_BANGin] = ACTIONS(447), + [anon_sym_instanceof] = ACTIONS(447), + [anon_sym_BANGinstanceof] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(455), + [anon_sym_BANG_EQ] = ACTIONS(455), + [anon_sym_LT_EQ_GT] = ACTIONS(457), + [anon_sym_EQ_EQ_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ_EQ] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(457), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_AMP_AMP] = ACTIONS(465), + [anon_sym_PIPE_PIPE] = ACTIONS(467), + [anon_sym_QMARK_COLON] = ACTIONS(469), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(479), + [anon_sym_false] = ACTIONS(479), + [anon_sym_ATinterface] = ACTIONS(481), + [anon_sym_interface] = ACTIONS(479), + [anon_sym_class] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(481), + [anon_sym_RBRACE] = ACTIONS(481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(479), + [anon_sym_this] = ACTIONS(479), + [anon_sym_null] = ACTIONS(479), + [anon_sym_LPAREN] = ACTIONS(481), + [anon_sym_do] = ACTIONS(479), + [anon_sym_while] = ACTIONS(479), + [anon_sym_for] = ACTIONS(479), + [anon_sym_if] = ACTIONS(479), + [anon_sym_else] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(481), + [aux_sym_number_literal_token1] = ACTIONS(479), + [aux_sym_number_literal_token2] = ACTIONS(481), + [aux_sym_number_literal_token3] = ACTIONS(481), + [aux_sym_number_literal_token4] = ACTIONS(479), + [aux_sym_number_literal_token5] = ACTIONS(481), + [anon_sym_return] = ACTIONS(479), + [anon_sym_SQUOTE] = ACTIONS(479), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(481), + [anon_sym_DQUOTE] = ACTIONS(479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(481), + [anon_sym_DOLLAR_SLASH] = ACTIONS(481), + [anon_sym_switch] = ACTIONS(479), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_try] = ACTIONS(479), + [anon_sym_int] = ACTIONS(479), + [anon_sym_boolean] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_short] = ACTIONS(479), + [anon_sym_long] = ACTIONS(479), + [anon_sym_float] = ACTIONS(479), + [anon_sym_double] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_public] = ACTIONS(479), + [anon_sym_protected] = ACTIONS(479), + [anon_sym_private] = ACTIONS(479), + [anon_sym_static] = ACTIONS(479), + [anon_sym_final] = ACTIONS(479), + [anon_sym_synchronized] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_new] = ACTIONS(479), + }, + [196] = { + [sym_comment] = STATE(196), + [sym_groovy_doc] = STATE(196), + [sym_identifier] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(511), + [anon_sym_DOT_AMP] = ACTIONS(437), + [anon_sym_DOT_AT] = ACTIONS(437), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_STAR_DOT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_STAR_COLON] = ACTIONS(511), + [anon_sym_import] = ACTIONS(509), + [anon_sym_as] = ACTIONS(447), + [anon_sym_package] = ACTIONS(509), + [anon_sym_AT] = ACTIONS(509), + [anon_sym_assert] = ACTIONS(509), + [anon_sym_PLUS_PLUS] = ACTIONS(511), + [anon_sym_DASH_DASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_GT_GT_GT] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(449), + [anon_sym_LT_DOT_DOT] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_in] = ACTIONS(447), + [anon_sym_BANGin] = ACTIONS(447), + [anon_sym_instanceof] = ACTIONS(447), + [anon_sym_BANGinstanceof] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(455), + [anon_sym_BANG_EQ] = ACTIONS(455), + [anon_sym_LT_EQ_GT] = ACTIONS(457), + [anon_sym_EQ_EQ_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ_EQ] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(457), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_AMP_AMP] = ACTIONS(465), + [anon_sym_PIPE_PIPE] = ACTIONS(467), + [anon_sym_QMARK_COLON] = ACTIONS(469), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_true] = ACTIONS(509), + [anon_sym_false] = ACTIONS(509), + [anon_sym_ATinterface] = ACTIONS(511), + [anon_sym_interface] = ACTIONS(509), + [anon_sym_class] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_RBRACE] = ACTIONS(511), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(509), + [anon_sym_this] = ACTIONS(509), + [anon_sym_null] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(511), + [anon_sym_do] = ACTIONS(509), + [anon_sym_while] = ACTIONS(509), + [anon_sym_for] = ACTIONS(509), + [anon_sym_if] = ACTIONS(509), + [anon_sym_else] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [aux_sym_number_literal_token1] = ACTIONS(509), + [aux_sym_number_literal_token2] = ACTIONS(511), + [aux_sym_number_literal_token3] = ACTIONS(511), + [aux_sym_number_literal_token4] = ACTIONS(509), + [aux_sym_number_literal_token5] = ACTIONS(511), + [anon_sym_return] = ACTIONS(509), + [anon_sym_SQUOTE] = ACTIONS(509), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(511), + [anon_sym_DQUOTE] = ACTIONS(509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_SLASH] = ACTIONS(511), + [anon_sym_switch] = ACTIONS(509), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_try] = ACTIONS(509), + [anon_sym_int] = ACTIONS(509), + [anon_sym_boolean] = ACTIONS(509), + [anon_sym_char] = ACTIONS(509), + [anon_sym_short] = ACTIONS(509), + [anon_sym_long] = ACTIONS(509), + [anon_sym_float] = ACTIONS(509), + [anon_sym_double] = ACTIONS(509), + [anon_sym_void] = ACTIONS(509), + [anon_sym_public] = ACTIONS(509), + [anon_sym_protected] = ACTIONS(509), + [anon_sym_private] = ACTIONS(509), + [anon_sym_static] = ACTIONS(509), + [anon_sym_final] = ACTIONS(509), + [anon_sym_synchronized] = ACTIONS(509), + [anon_sym_TILDE] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_new] = ACTIONS(509), + }, + [197] = { + [sym_comment] = STATE(197), + [sym_groovy_doc] = STATE(197), + [sym_identifier] = ACTIONS(89), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(91), + [anon_sym_DOT_AMP] = ACTIONS(93), + [anon_sym_DOT_AT] = ACTIONS(93), + [anon_sym_QMARK_DOT] = ACTIONS(93), + [anon_sym_STAR_DOT] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_STAR_COLON] = ACTIONS(95), + [anon_sym_import] = ACTIONS(89), + [anon_sym_as] = ACTIONS(99), + [anon_sym_package] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(93), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_LT_LT] = ACTIONS(93), + [anon_sym_GT_GT] = ACTIONS(99), + [anon_sym_GT_GT_GT] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(99), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_in] = ACTIONS(99), + [anon_sym_BANGin] = ACTIONS(99), + [anon_sym_instanceof] = ACTIONS(99), + [anon_sym_BANGinstanceof] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_LT_EQ_GT] = ACTIONS(93), + [anon_sym_EQ_EQ_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ_EQ] = ACTIONS(93), + [anon_sym_EQ_TILDE] = ACTIONS(93), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(99), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(93), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [anon_sym_ATinterface] = ACTIONS(95), + [anon_sym_interface] = ACTIONS(89), + [anon_sym_class] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_null] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_do] = ACTIONS(89), + [anon_sym_while] = ACTIONS(89), + [anon_sym_for] = ACTIONS(89), + [anon_sym_if] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(95), + [aux_sym_number_literal_token1] = ACTIONS(89), + [aux_sym_number_literal_token2] = ACTIONS(95), + [aux_sym_number_literal_token3] = ACTIONS(95), + [aux_sym_number_literal_token4] = ACTIONS(89), + [aux_sym_number_literal_token5] = ACTIONS(95), + [anon_sym_return] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SLASH] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(89), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_try] = ACTIONS(89), + [anon_sym_int] = ACTIONS(89), + [anon_sym_boolean] = ACTIONS(89), + [anon_sym_char] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_float] = ACTIONS(89), + [anon_sym_double] = ACTIONS(89), + [anon_sym_void] = ACTIONS(89), + [anon_sym_public] = ACTIONS(89), + [anon_sym_protected] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_static] = ACTIONS(89), + [anon_sym_final] = ACTIONS(89), + [anon_sym_synchronized] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_new] = ACTIONS(89), + }, + [198] = { + [sym__statement] = STATE(833), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1331), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(790), + [sym_comment] = STATE(198), + [sym_groovy_doc] = STATE(198), + [sym_declaration] = STATE(790), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(526), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1074), + [sym_return] = STATE(790), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(790), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(523), + [anon_sym_break] = ACTIONS(526), + [anon_sym_continue] = ACTIONS(526), + [anon_sym_STAR] = ACTIONS(529), + [anon_sym_STAR_COLON] = ACTIONS(531), + [anon_sym_import] = ACTIONS(533), + [anon_sym_package] = ACTIONS(536), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_assert] = ACTIONS(542), + [anon_sym_PLUS_PLUS] = ACTIONS(545), + [anon_sym_DASH_DASH] = ACTIONS(545), + [anon_sym_SLASH] = ACTIONS(548), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_true] = ACTIONS(529), + [anon_sym_false] = ACTIONS(529), + [anon_sym_ATinterface] = ACTIONS(551), + [anon_sym_interface] = ACTIONS(554), + [anon_sym_class] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(557), + [anon_sym_RBRACE] = ACTIONS(531), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(560), + [anon_sym_this] = ACTIONS(529), + [anon_sym_null] = ACTIONS(529), + [anon_sym_LPAREN] = ACTIONS(531), + [anon_sym_do] = ACTIONS(563), + [anon_sym_while] = ACTIONS(566), + [anon_sym_for] = ACTIONS(569), + [anon_sym_if] = ACTIONS(572), + [anon_sym_LBRACK] = ACTIONS(531), + [aux_sym_number_literal_token1] = ACTIONS(529), + [aux_sym_number_literal_token2] = ACTIONS(531), + [aux_sym_number_literal_token3] = ACTIONS(531), + [aux_sym_number_literal_token4] = ACTIONS(529), + [aux_sym_number_literal_token5] = ACTIONS(531), + [anon_sym_return] = ACTIONS(575), + [anon_sym_SQUOTE] = ACTIONS(578), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(581), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), + [anon_sym_DOLLAR_SLASH] = ACTIONS(590), + [anon_sym_switch] = ACTIONS(593), + [anon_sym_try] = ACTIONS(596), + [anon_sym_int] = ACTIONS(599), + [anon_sym_boolean] = ACTIONS(599), + [anon_sym_char] = ACTIONS(599), + [anon_sym_short] = ACTIONS(599), + [anon_sym_long] = ACTIONS(599), + [anon_sym_float] = ACTIONS(599), + [anon_sym_double] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_public] = ACTIONS(602), + [anon_sym_protected] = ACTIONS(602), + [anon_sym_private] = ACTIONS(602), + [anon_sym_static] = ACTIONS(605), + [anon_sym_final] = ACTIONS(605), + [anon_sym_synchronized] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(531), + [anon_sym_new] = ACTIONS(529), + }, + [199] = { + [sym_comment] = STATE(199), + [sym_groovy_doc] = STATE(199), + [sym_identifier] = ACTIONS(608), + [anon_sym_break] = ACTIONS(608), + [anon_sym_continue] = ACTIONS(608), + [anon_sym_SEMI] = ACTIONS(610), + [anon_sym_DOT_AMP] = ACTIONS(93), + [anon_sym_DOT_AT] = ACTIONS(93), + [anon_sym_QMARK_DOT] = ACTIONS(93), + [anon_sym_STAR_DOT] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_STAR_COLON] = ACTIONS(610), + [anon_sym_import] = ACTIONS(608), + [anon_sym_as] = ACTIONS(99), + [anon_sym_package] = ACTIONS(608), + [anon_sym_AT] = ACTIONS(608), + [anon_sym_assert] = ACTIONS(608), + [anon_sym_PLUS_PLUS] = ACTIONS(610), + [anon_sym_DASH_DASH] = ACTIONS(610), + [anon_sym_PERCENT] = ACTIONS(93), + [anon_sym_SLASH] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(99), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_LT_LT] = ACTIONS(93), + [anon_sym_GT_GT] = ACTIONS(99), + [anon_sym_GT_GT_GT] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(99), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_in] = ACTIONS(99), + [anon_sym_BANGin] = ACTIONS(99), + [anon_sym_instanceof] = ACTIONS(99), + [anon_sym_BANGinstanceof] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_LT_EQ_GT] = ACTIONS(93), + [anon_sym_EQ_EQ_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ_EQ] = ACTIONS(93), + [anon_sym_EQ_TILDE] = ACTIONS(93), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(99), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(93), + [anon_sym_true] = ACTIONS(608), + [anon_sym_false] = ACTIONS(608), + [anon_sym_ATinterface] = ACTIONS(610), + [anon_sym_interface] = ACTIONS(608), + [anon_sym_class] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_RBRACE] = ACTIONS(93), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(608), + [anon_sym_this] = ACTIONS(608), + [anon_sym_null] = ACTIONS(608), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_do] = ACTIONS(608), + [anon_sym_while] = ACTIONS(608), + [anon_sym_for] = ACTIONS(608), + [anon_sym_if] = ACTIONS(608), + [anon_sym_LBRACK] = ACTIONS(610), + [aux_sym_number_literal_token1] = ACTIONS(608), + [aux_sym_number_literal_token2] = ACTIONS(610), + [aux_sym_number_literal_token3] = ACTIONS(610), + [aux_sym_number_literal_token4] = ACTIONS(608), + [aux_sym_number_literal_token5] = ACTIONS(610), + [anon_sym_return] = ACTIONS(608), + [anon_sym_SQUOTE] = ACTIONS(608), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(610), + [anon_sym_DQUOTE] = ACTIONS(608), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(610), + [anon_sym_DOLLAR_SLASH] = ACTIONS(610), + [anon_sym_switch] = ACTIONS(608), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_try] = ACTIONS(608), + [anon_sym_int] = ACTIONS(608), + [anon_sym_boolean] = ACTIONS(608), + [anon_sym_char] = ACTIONS(608), + [anon_sym_short] = ACTIONS(608), + [anon_sym_long] = ACTIONS(608), + [anon_sym_float] = ACTIONS(608), + [anon_sym_double] = ACTIONS(608), + [anon_sym_void] = ACTIONS(608), + [anon_sym_public] = ACTIONS(608), + [anon_sym_protected] = ACTIONS(608), + [anon_sym_private] = ACTIONS(608), + [anon_sym_static] = ACTIONS(608), + [anon_sym_final] = ACTIONS(608), + [anon_sym_synchronized] = ACTIONS(608), + [anon_sym_TILDE] = ACTIONS(610), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_new] = ACTIONS(608), + }, + [200] = { + [sym_comment] = STATE(200), + [sym_groovy_doc] = STATE(200), + [sym_identifier] = ACTIONS(283), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOT_AMP] = ACTIONS(285), + [anon_sym_DOT_AT] = ACTIONS(285), + [anon_sym_QMARK_DOT] = ACTIONS(285), + [anon_sym_STAR_DOT] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(283), + [anon_sym_DOT] = ACTIONS(283), + [anon_sym_import] = ACTIONS(283), + [anon_sym_DOT_STAR] = ACTIONS(285), + [anon_sym_as] = ACTIONS(283), + [anon_sym_package] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [anon_sym_assert] = ACTIONS(283), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_PERCENT] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(283), + [anon_sym_DASH] = ACTIONS(283), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(283), + [anon_sym_GT_GT_GT] = ACTIONS(285), + [anon_sym_DOT_DOT] = ACTIONS(283), + [anon_sym_DOT_DOT_LT] = ACTIONS(285), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(285), + [anon_sym_LT_DOT_DOT] = ACTIONS(283), + [anon_sym_LT] = ACTIONS(283), + [anon_sym_LT_EQ] = ACTIONS(283), + [anon_sym_GT] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_in] = ACTIONS(283), + [anon_sym_BANGin] = ACTIONS(283), + [anon_sym_instanceof] = ACTIONS(283), + [anon_sym_BANGinstanceof] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(283), + [anon_sym_BANG_EQ] = ACTIONS(283), + [anon_sym_LT_EQ_GT] = ACTIONS(285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(283), + [anon_sym_CARET] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_QMARK_COLON] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(285), + [anon_sym_ATinterface] = ACTIONS(285), + [anon_sym_interface] = ACTIONS(283), + [anon_sym_class] = ACTIONS(283), + [anon_sym_COMMA] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(285), + [anon_sym_RBRACE] = ACTIONS(285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_do] = ACTIONS(283), + [anon_sym_while] = ACTIONS(283), + [anon_sym_for] = ACTIONS(283), + [anon_sym_if] = ACTIONS(283), + [anon_sym_else] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_return] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(283), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_SLASH] = ACTIONS(285), + [anon_sym_switch] = ACTIONS(283), + [anon_sym_case] = ACTIONS(283), + [anon_sym_default] = ACTIONS(283), + [anon_sym_QMARK] = ACTIONS(283), + [anon_sym_try] = ACTIONS(283), + [anon_sym_catch] = ACTIONS(283), + [anon_sym_finally] = ACTIONS(283), + [anon_sym_int] = ACTIONS(283), + [anon_sym_boolean] = ACTIONS(283), + [anon_sym_char] = ACTIONS(283), + [anon_sym_short] = ACTIONS(283), + [anon_sym_long] = ACTIONS(283), + [anon_sym_float] = ACTIONS(283), + [anon_sym_double] = ACTIONS(283), + [anon_sym_void] = ACTIONS(283), + [anon_sym_public] = ACTIONS(283), + [anon_sym_protected] = ACTIONS(283), + [anon_sym_private] = ACTIONS(283), + [anon_sym_static] = ACTIONS(283), + [anon_sym_final] = ACTIONS(283), + [anon_sym_synchronized] = ACTIONS(283), + }, + [201] = { + [sym_comment] = STATE(201), + [sym_groovy_doc] = STATE(201), + [sym_identifier] = ACTIONS(99), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_DOT_AMP] = ACTIONS(93), + [anon_sym_DOT_AT] = ACTIONS(93), + [anon_sym_QMARK_DOT] = ACTIONS(93), + [anon_sym_STAR_DOT] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(97), + [anon_sym_import] = ACTIONS(99), + [anon_sym_as] = ACTIONS(99), + [anon_sym_package] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(93), + [anon_sym_SLASH] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(99), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_LT_LT] = ACTIONS(93), + [anon_sym_GT_GT] = ACTIONS(99), + [anon_sym_GT_GT_GT] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(99), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_in] = ACTIONS(99), + [anon_sym_BANGin] = ACTIONS(99), + [anon_sym_instanceof] = ACTIONS(99), + [anon_sym_BANGinstanceof] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_LT_EQ_GT] = ACTIONS(93), + [anon_sym_EQ_EQ_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ_EQ] = ACTIONS(93), + [anon_sym_EQ_TILDE] = ACTIONS(93), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(99), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(93), + [anon_sym_ATinterface] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(99), + [anon_sym_class] = ACTIONS(99), + [anon_sym_COMMA] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_RBRACE] = ACTIONS(93), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(99), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(99), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(99), + [anon_sym_if] = ACTIONS(99), + [anon_sym_else] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(101), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_return] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_SLASH] = ACTIONS(93), + [anon_sym_switch] = ACTIONS(99), + [anon_sym_case] = ACTIONS(99), + [anon_sym_default] = ACTIONS(99), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(99), + [anon_sym_finally] = ACTIONS(99), + [anon_sym_int] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_char] = ACTIONS(99), + [anon_sym_short] = ACTIONS(99), + [anon_sym_long] = ACTIONS(99), + [anon_sym_float] = ACTIONS(99), + [anon_sym_double] = ACTIONS(99), + [anon_sym_void] = ACTIONS(99), + [anon_sym_public] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_static] = ACTIONS(99), + [anon_sym_final] = ACTIONS(99), + [anon_sym_synchronized] = ACTIONS(99), + }, + [202] = { + [sym_comment] = STATE(202), + [sym_groovy_doc] = STATE(202), + [sym_argument_list] = STATE(203), + [sym_identifier] = ACTIONS(259), + [anon_sym_break] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(259), + [anon_sym_SEMI] = ACTIONS(261), + [anon_sym_DOT_AMP] = ACTIONS(261), + [anon_sym_DOT_AT] = ACTIONS(261), + [anon_sym_QMARK_DOT] = ACTIONS(261), + [anon_sym_STAR_DOT] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(259), + [anon_sym_DOT] = ACTIONS(614), + [anon_sym_import] = ACTIONS(259), + [anon_sym_as] = ACTIONS(259), + [anon_sym_package] = ACTIONS(259), + [anon_sym_AT] = ACTIONS(259), + [anon_sym_assert] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(261), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_GT_GT_GT] = ACTIONS(261), + [anon_sym_DOT_DOT] = ACTIONS(259), + [anon_sym_DOT_DOT_LT] = ACTIONS(261), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(261), + [anon_sym_LT_DOT_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(259), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_GT_EQ] = ACTIONS(261), + [anon_sym_in] = ACTIONS(259), + [anon_sym_BANGin] = ACTIONS(259), + [anon_sym_instanceof] = ACTIONS(259), + [anon_sym_BANGinstanceof] = ACTIONS(261), + [anon_sym_EQ_EQ] = ACTIONS(259), + [anon_sym_BANG_EQ] = ACTIONS(259), + [anon_sym_LT_EQ_GT] = ACTIONS(261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(261), + [anon_sym_BANG_EQ_EQ] = ACTIONS(261), + [anon_sym_EQ_TILDE] = ACTIONS(261), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_CARET] = ACTIONS(261), + [anon_sym_PIPE] = ACTIONS(259), + [anon_sym_AMP_AMP] = ACTIONS(261), + [anon_sym_PIPE_PIPE] = ACTIONS(261), + [anon_sym_QMARK_COLON] = ACTIONS(261), + [anon_sym_STAR_STAR] = ACTIONS(261), + [anon_sym_ATinterface] = ACTIONS(261), + [anon_sym_interface] = ACTIONS(259), + [anon_sym_class] = ACTIONS(259), + [anon_sym_COMMA] = ACTIONS(261), + [anon_sym_LBRACE] = ACTIONS(261), + [anon_sym_RBRACE] = ACTIONS(261), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(259), + [anon_sym_LPAREN] = ACTIONS(616), + [anon_sym_do] = ACTIONS(259), + [anon_sym_while] = ACTIONS(259), + [anon_sym_for] = ACTIONS(259), + [anon_sym_if] = ACTIONS(259), + [anon_sym_else] = ACTIONS(259), + [anon_sym_LBRACK] = ACTIONS(618), + [anon_sym_return] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(261), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_SLASH] = ACTIONS(261), + [anon_sym_switch] = ACTIONS(259), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(259), + [anon_sym_QMARK] = ACTIONS(259), + [anon_sym_try] = ACTIONS(259), + [anon_sym_catch] = ACTIONS(259), + [anon_sym_finally] = ACTIONS(259), + [anon_sym_int] = ACTIONS(259), + [anon_sym_boolean] = ACTIONS(259), + [anon_sym_char] = ACTIONS(259), + [anon_sym_short] = ACTIONS(259), + [anon_sym_long] = ACTIONS(259), + [anon_sym_float] = ACTIONS(259), + [anon_sym_double] = ACTIONS(259), + [anon_sym_void] = ACTIONS(259), + [anon_sym_public] = ACTIONS(259), + [anon_sym_protected] = ACTIONS(259), + [anon_sym_private] = ACTIONS(259), + [anon_sym_static] = ACTIONS(259), + [anon_sym_final] = ACTIONS(259), + [anon_sym_synchronized] = ACTIONS(259), + }, + [203] = { + [sym_comment] = STATE(203), + [sym_groovy_doc] = STATE(203), + [sym_identifier] = ACTIONS(73), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_DOT_AMP] = ACTIONS(75), + [anon_sym_DOT_AT] = ACTIONS(75), + [anon_sym_QMARK_DOT] = ACTIONS(75), + [anon_sym_STAR_DOT] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(73), + [anon_sym_DOT] = ACTIONS(73), + [anon_sym_import] = ACTIONS(73), + [anon_sym_as] = ACTIONS(73), + [anon_sym_package] = ACTIONS(73), + [anon_sym_AT] = ACTIONS(73), + [anon_sym_assert] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_LT_LT] = ACTIONS(75), + [anon_sym_GT_GT] = ACTIONS(73), + [anon_sym_GT_GT_GT] = ACTIONS(75), + [anon_sym_DOT_DOT] = ACTIONS(73), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(75), + [anon_sym_LT_DOT_DOT] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(73), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(73), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_in] = ACTIONS(73), + [anon_sym_BANGin] = ACTIONS(73), + [anon_sym_instanceof] = ACTIONS(73), + [anon_sym_BANGinstanceof] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT_EQ_GT] = ACTIONS(75), + [anon_sym_EQ_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ_EQ] = ACTIONS(75), + [anon_sym_EQ_TILDE] = ACTIONS(75), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(73), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(73), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_QMARK_COLON] = ACTIONS(75), + [anon_sym_STAR_STAR] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_class] = ACTIONS(73), + [anon_sym_COMMA] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_RBRACE] = ACTIONS(75), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_do] = ACTIONS(73), + [anon_sym_while] = ACTIONS(73), + [anon_sym_for] = ACTIONS(73), + [anon_sym_if] = ACTIONS(73), + [anon_sym_else] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_return] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(75), + [anon_sym_DOLLAR_SLASH] = ACTIONS(75), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(73), + [anon_sym_default] = ACTIONS(73), + [anon_sym_QMARK] = ACTIONS(73), + [anon_sym_try] = ACTIONS(73), + [anon_sym_catch] = ACTIONS(73), + [anon_sym_finally] = ACTIONS(73), + [anon_sym_int] = ACTIONS(73), + [anon_sym_boolean] = ACTIONS(73), + [anon_sym_char] = ACTIONS(73), + [anon_sym_short] = ACTIONS(73), + [anon_sym_long] = ACTIONS(73), + [anon_sym_float] = ACTIONS(73), + [anon_sym_double] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_public] = ACTIONS(73), + [anon_sym_protected] = ACTIONS(73), + [anon_sym_private] = ACTIONS(73), + [anon_sym_static] = ACTIONS(73), + [anon_sym_final] = ACTIONS(73), + [anon_sym_synchronized] = ACTIONS(73), + }, + [204] = { + [sym_comment] = STATE(204), + [sym_groovy_doc] = STATE(204), + [sym_identifier] = ACTIONS(77), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_DOT_AMP] = ACTIONS(79), + [anon_sym_DOT_AT] = ACTIONS(79), + [anon_sym_QMARK_DOT] = ACTIONS(79), + [anon_sym_STAR_DOT] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_import] = ACTIONS(77), + [anon_sym_as] = ACTIONS(77), + [anon_sym_package] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_assert] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_LT_LT] = ACTIONS(79), + [anon_sym_GT_GT] = ACTIONS(77), + [anon_sym_GT_GT_GT] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(77), + [anon_sym_DOT_DOT_LT] = ACTIONS(79), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(79), + [anon_sym_LT_DOT_DOT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(79), + [anon_sym_in] = ACTIONS(77), + [anon_sym_BANGin] = ACTIONS(77), + [anon_sym_instanceof] = ACTIONS(77), + [anon_sym_BANGinstanceof] = ACTIONS(79), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_LT_EQ_GT] = ACTIONS(79), + [anon_sym_EQ_EQ_EQ] = ACTIONS(79), + [anon_sym_BANG_EQ_EQ] = ACTIONS(79), + [anon_sym_EQ_TILDE] = ACTIONS(79), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_CARET] = ACTIONS(79), + [anon_sym_PIPE] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(79), + [anon_sym_PIPE_PIPE] = ACTIONS(79), + [anon_sym_QMARK_COLON] = ACTIONS(79), + [anon_sym_STAR_STAR] = ACTIONS(79), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_class] = ACTIONS(77), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_RBRACE] = ACTIONS(79), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(77), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_do] = ACTIONS(77), + [anon_sym_while] = ACTIONS(77), + [anon_sym_for] = ACTIONS(77), + [anon_sym_if] = ACTIONS(77), + [anon_sym_else] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(79), + [anon_sym_return] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(77), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR_SLASH] = ACTIONS(79), + [anon_sym_switch] = ACTIONS(77), + [anon_sym_case] = ACTIONS(77), + [anon_sym_default] = ACTIONS(77), + [anon_sym_QMARK] = ACTIONS(77), + [anon_sym_try] = ACTIONS(77), + [anon_sym_catch] = ACTIONS(77), + [anon_sym_finally] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_boolean] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [anon_sym_void] = ACTIONS(77), + [anon_sym_public] = ACTIONS(77), + [anon_sym_protected] = ACTIONS(77), + [anon_sym_private] = ACTIONS(77), + [anon_sym_static] = ACTIONS(77), + [anon_sym_final] = ACTIONS(77), + [anon_sym_synchronized] = ACTIONS(77), + }, + [205] = { + [sym_comment] = STATE(205), + [sym_groovy_doc] = STATE(205), + [sym_identifier] = ACTIONS(335), + [anon_sym_break] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(335), + [anon_sym_SEMI] = ACTIONS(337), + [anon_sym_DOT_AMP] = ACTIONS(337), + [anon_sym_DOT_AT] = ACTIONS(337), + [anon_sym_QMARK_DOT] = ACTIONS(337), + [anon_sym_STAR_DOT] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(335), + [anon_sym_DOT] = ACTIONS(335), + [anon_sym_import] = ACTIONS(335), + [anon_sym_as] = ACTIONS(335), + [anon_sym_package] = ACTIONS(335), + [anon_sym_AT] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(337), + [anon_sym_DASH_DASH] = ACTIONS(337), + [anon_sym_PERCENT] = ACTIONS(337), + [anon_sym_SLASH] = ACTIONS(335), + [anon_sym_PLUS] = ACTIONS(335), + [anon_sym_DASH] = ACTIONS(335), + [anon_sym_LT_LT] = ACTIONS(337), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_GT_GT_GT] = ACTIONS(337), + [anon_sym_DOT_DOT] = ACTIONS(335), + [anon_sym_DOT_DOT_LT] = ACTIONS(337), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(337), + [anon_sym_LT_DOT_DOT] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_LT_EQ] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(335), + [anon_sym_GT_EQ] = ACTIONS(337), + [anon_sym_in] = ACTIONS(335), + [anon_sym_BANGin] = ACTIONS(335), + [anon_sym_instanceof] = ACTIONS(335), + [anon_sym_BANGinstanceof] = ACTIONS(337), + [anon_sym_EQ_EQ] = ACTIONS(335), + [anon_sym_BANG_EQ] = ACTIONS(335), + [anon_sym_LT_EQ_GT] = ACTIONS(337), + [anon_sym_EQ_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ_EQ] = ACTIONS(337), + [anon_sym_EQ_TILDE] = ACTIONS(337), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(335), + [anon_sym_CARET] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(335), + [anon_sym_AMP_AMP] = ACTIONS(337), + [anon_sym_PIPE_PIPE] = ACTIONS(337), + [anon_sym_QMARK_COLON] = ACTIONS(337), + [anon_sym_STAR_STAR] = ACTIONS(337), + [anon_sym_ATinterface] = ACTIONS(337), + [anon_sym_interface] = ACTIONS(335), + [anon_sym_class] = ACTIONS(335), + [anon_sym_COMMA] = ACTIONS(337), + [anon_sym_LBRACE] = ACTIONS(337), + [anon_sym_RBRACE] = ACTIONS(337), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_do] = ACTIONS(335), + [anon_sym_while] = ACTIONS(335), + [anon_sym_for] = ACTIONS(335), + [anon_sym_if] = ACTIONS(335), + [anon_sym_else] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_return] = ACTIONS(335), + [anon_sym_SQUOTE] = ACTIONS(335), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(337), + [anon_sym_DQUOTE] = ACTIONS(335), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(337), + [anon_sym_DOLLAR_SLASH] = ACTIONS(337), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(335), + [anon_sym_default] = ACTIONS(335), + [anon_sym_QMARK] = ACTIONS(335), + [anon_sym_try] = ACTIONS(335), + [anon_sym_catch] = ACTIONS(335), + [anon_sym_finally] = ACTIONS(335), + [anon_sym_int] = ACTIONS(335), + [anon_sym_boolean] = ACTIONS(335), + [anon_sym_char] = ACTIONS(335), + [anon_sym_short] = ACTIONS(335), + [anon_sym_long] = ACTIONS(335), + [anon_sym_float] = ACTIONS(335), + [anon_sym_double] = ACTIONS(335), + [anon_sym_void] = ACTIONS(335), + [anon_sym_public] = ACTIONS(335), + [anon_sym_protected] = ACTIONS(335), + [anon_sym_private] = ACTIONS(335), + [anon_sym_static] = ACTIONS(335), + [anon_sym_final] = ACTIONS(335), + [anon_sym_synchronized] = ACTIONS(335), + }, + [206] = { + [sym_comment] = STATE(206), + [sym_groovy_doc] = STATE(206), + [sym_identifier] = ACTIONS(99), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_DOT_AMP] = ACTIONS(93), + [anon_sym_DOT_AT] = ACTIONS(93), + [anon_sym_QMARK_DOT] = ACTIONS(93), + [anon_sym_STAR_DOT] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(97), + [anon_sym_import] = ACTIONS(99), + [anon_sym_as] = ACTIONS(99), + [anon_sym_package] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(93), + [anon_sym_SLASH] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(99), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_LT_LT] = ACTIONS(93), + [anon_sym_GT_GT] = ACTIONS(99), + [anon_sym_GT_GT_GT] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(99), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_in] = ACTIONS(99), + [anon_sym_BANGin] = ACTIONS(99), + [anon_sym_instanceof] = ACTIONS(99), + [anon_sym_BANGinstanceof] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_LT_EQ_GT] = ACTIONS(93), + [anon_sym_EQ_EQ_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ_EQ] = ACTIONS(93), + [anon_sym_EQ_TILDE] = ACTIONS(93), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(99), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(93), + [anon_sym_ATinterface] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(99), + [anon_sym_class] = ACTIONS(99), + [anon_sym_COMMA] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_RBRACE] = ACTIONS(93), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(99), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(99), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(99), + [anon_sym_if] = ACTIONS(99), + [anon_sym_else] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(101), + [anon_sym_return] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_SLASH] = ACTIONS(93), + [anon_sym_switch] = ACTIONS(99), + [anon_sym_case] = ACTIONS(99), + [anon_sym_default] = ACTIONS(99), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(99), + [anon_sym_finally] = ACTIONS(99), + [anon_sym_int] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_char] = ACTIONS(99), + [anon_sym_short] = ACTIONS(99), + [anon_sym_long] = ACTIONS(99), + [anon_sym_float] = ACTIONS(99), + [anon_sym_double] = ACTIONS(99), + [anon_sym_void] = ACTIONS(99), + [anon_sym_public] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_static] = ACTIONS(99), + [anon_sym_final] = ACTIONS(99), + [anon_sym_synchronized] = ACTIONS(99), + }, + [207] = { + [sym_comment] = STATE(207), + [sym_groovy_doc] = STATE(207), + [sym_identifier] = ACTIONS(343), + [anon_sym_break] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_DOT_AMP] = ACTIONS(345), + [anon_sym_DOT_AT] = ACTIONS(345), + [anon_sym_QMARK_DOT] = ACTIONS(345), + [anon_sym_STAR_DOT] = ACTIONS(345), + [anon_sym_STAR] = ACTIONS(343), + [anon_sym_DOT] = ACTIONS(343), + [anon_sym_import] = ACTIONS(343), + [anon_sym_as] = ACTIONS(343), + [anon_sym_package] = ACTIONS(343), + [anon_sym_AT] = ACTIONS(343), + [anon_sym_assert] = ACTIONS(343), + [anon_sym_PLUS_PLUS] = ACTIONS(345), + [anon_sym_DASH_DASH] = ACTIONS(345), + [anon_sym_PERCENT] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(343), + [anon_sym_DASH] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_GT_GT_GT] = ACTIONS(345), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_DOT_DOT_LT] = ACTIONS(345), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(345), + [anon_sym_LT_DOT_DOT] = ACTIONS(343), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_EQ] = ACTIONS(345), + [anon_sym_in] = ACTIONS(343), + [anon_sym_BANGin] = ACTIONS(343), + [anon_sym_instanceof] = ACTIONS(343), + [anon_sym_BANGinstanceof] = ACTIONS(345), + [anon_sym_EQ_EQ] = ACTIONS(343), + [anon_sym_BANG_EQ] = ACTIONS(343), + [anon_sym_LT_EQ_GT] = ACTIONS(345), + [anon_sym_EQ_EQ_EQ] = ACTIONS(345), + [anon_sym_BANG_EQ_EQ] = ACTIONS(345), + [anon_sym_EQ_TILDE] = ACTIONS(345), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(345), + [anon_sym_AMP] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(345), + [anon_sym_PIPE] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(345), + [anon_sym_PIPE_PIPE] = ACTIONS(345), + [anon_sym_QMARK_COLON] = ACTIONS(345), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_ATinterface] = ACTIONS(345), + [anon_sym_interface] = ACTIONS(343), + [anon_sym_class] = ACTIONS(343), + [anon_sym_COMMA] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(345), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_do] = ACTIONS(343), + [anon_sym_while] = ACTIONS(343), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(343), + [anon_sym_else] = ACTIONS(343), + [anon_sym_LBRACK] = ACTIONS(345), + [anon_sym_return] = ACTIONS(343), + [anon_sym_SQUOTE] = ACTIONS(343), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_SLASH] = ACTIONS(345), + [anon_sym_switch] = ACTIONS(343), + [anon_sym_case] = ACTIONS(343), + [anon_sym_default] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(343), + [anon_sym_try] = ACTIONS(343), + [anon_sym_catch] = ACTIONS(343), + [anon_sym_finally] = ACTIONS(343), + [anon_sym_int] = ACTIONS(343), + [anon_sym_boolean] = ACTIONS(343), + [anon_sym_char] = ACTIONS(343), + [anon_sym_short] = ACTIONS(343), + [anon_sym_long] = ACTIONS(343), + [anon_sym_float] = ACTIONS(343), + [anon_sym_double] = ACTIONS(343), + [anon_sym_void] = ACTIONS(343), + [anon_sym_public] = ACTIONS(343), + [anon_sym_protected] = ACTIONS(343), + [anon_sym_private] = ACTIONS(343), + [anon_sym_static] = ACTIONS(343), + [anon_sym_final] = ACTIONS(343), + [anon_sym_synchronized] = ACTIONS(343), + }, + [208] = { + [sym_comment] = STATE(208), + [sym_groovy_doc] = STATE(208), + [sym_identifier] = ACTIONS(271), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_SEMI] = ACTIONS(273), + [anon_sym_DOT_AMP] = ACTIONS(273), + [anon_sym_DOT_AT] = ACTIONS(273), + [anon_sym_QMARK_DOT] = ACTIONS(273), + [anon_sym_STAR_DOT] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_import] = ACTIONS(271), + [anon_sym_as] = ACTIONS(271), + [anon_sym_package] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_assert] = ACTIONS(271), + [anon_sym_PLUS_PLUS] = ACTIONS(273), + [anon_sym_DASH_DASH] = ACTIONS(273), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_LT_LT] = ACTIONS(273), + [anon_sym_GT_GT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(273), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_DOT_DOT_LT] = ACTIONS(273), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(273), + [anon_sym_LT_DOT_DOT] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(273), + [anon_sym_in] = ACTIONS(271), + [anon_sym_BANGin] = ACTIONS(271), + [anon_sym_instanceof] = ACTIONS(271), + [anon_sym_BANGinstanceof] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_LT_EQ_GT] = ACTIONS(273), + [anon_sym_EQ_EQ_EQ] = ACTIONS(273), + [anon_sym_BANG_EQ_EQ] = ACTIONS(273), + [anon_sym_EQ_TILDE] = ACTIONS(273), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(273), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(273), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(273), + [anon_sym_PIPE_PIPE] = ACTIONS(273), + [anon_sym_QMARK_COLON] = ACTIONS(273), + [anon_sym_STAR_STAR] = ACTIONS(273), + [anon_sym_ATinterface] = ACTIONS(273), + [anon_sym_interface] = ACTIONS(271), + [anon_sym_class] = ACTIONS(271), + [anon_sym_COMMA] = ACTIONS(273), + [anon_sym_LBRACE] = ACTIONS(273), + [anon_sym_RBRACE] = ACTIONS(273), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(273), + [anon_sym_do] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_return] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(273), + [anon_sym_DQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(273), + [anon_sym_DOLLAR_SLASH] = ACTIONS(273), + [anon_sym_switch] = ACTIONS(271), + [anon_sym_case] = ACTIONS(271), + [anon_sym_default] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), + [anon_sym_int] = ACTIONS(271), + [anon_sym_boolean] = ACTIONS(271), + [anon_sym_char] = ACTIONS(271), + [anon_sym_short] = ACTIONS(271), + [anon_sym_long] = ACTIONS(271), + [anon_sym_float] = ACTIONS(271), + [anon_sym_double] = ACTIONS(271), + [anon_sym_void] = ACTIONS(271), + [anon_sym_public] = ACTIONS(271), + [anon_sym_protected] = ACTIONS(271), + [anon_sym_private] = ACTIONS(271), + [anon_sym_static] = ACTIONS(271), + [anon_sym_final] = ACTIONS(271), + [anon_sym_synchronized] = ACTIONS(271), + }, + [209] = { + [sym_comment] = STATE(209), + [sym_groovy_doc] = STATE(209), + [sym_identifier] = ACTIONS(85), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(87), + [anon_sym_DOT_AMP] = ACTIONS(87), + [anon_sym_DOT_AT] = ACTIONS(87), + [anon_sym_QMARK_DOT] = ACTIONS(87), + [anon_sym_STAR_DOT] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_import] = ACTIONS(85), + [anon_sym_as] = ACTIONS(85), + [anon_sym_package] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_assert] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(87), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(87), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(87), + [anon_sym_LT_DOT_DOT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(87), + [anon_sym_in] = ACTIONS(85), + [anon_sym_BANGin] = ACTIONS(85), + [anon_sym_instanceof] = ACTIONS(85), + [anon_sym_BANGinstanceof] = ACTIONS(87), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_LT_EQ_GT] = ACTIONS(87), + [anon_sym_EQ_EQ_EQ] = ACTIONS(87), + [anon_sym_BANG_EQ_EQ] = ACTIONS(87), + [anon_sym_EQ_TILDE] = ACTIONS(87), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_CARET] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(87), + [anon_sym_PIPE_PIPE] = ACTIONS(87), + [anon_sym_QMARK_COLON] = ACTIONS(87), + [anon_sym_STAR_STAR] = ACTIONS(87), + [anon_sym_ATinterface] = ACTIONS(87), + [anon_sym_interface] = ACTIONS(85), + [anon_sym_class] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(87), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_RBRACE] = ACTIONS(87), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_do] = ACTIONS(85), + [anon_sym_while] = ACTIONS(85), + [anon_sym_for] = ACTIONS(85), + [anon_sym_if] = ACTIONS(85), + [anon_sym_else] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_return] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_DOLLAR_SLASH] = ACTIONS(87), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(85), + [anon_sym_default] = ACTIONS(85), + [anon_sym_QMARK] = ACTIONS(85), + [anon_sym_try] = ACTIONS(85), + [anon_sym_catch] = ACTIONS(85), + [anon_sym_finally] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_boolean] = ACTIONS(85), + [anon_sym_char] = ACTIONS(85), + [anon_sym_short] = ACTIONS(85), + [anon_sym_long] = ACTIONS(85), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [anon_sym_void] = ACTIONS(85), + [anon_sym_public] = ACTIONS(85), + [anon_sym_protected] = ACTIONS(85), + [anon_sym_private] = ACTIONS(85), + [anon_sym_static] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_synchronized] = ACTIONS(85), + }, + [210] = { + [sym_comment] = STATE(210), + [sym_groovy_doc] = STATE(210), + [sym_identifier] = ACTIONS(279), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(281), + [anon_sym_DOT_AMP] = ACTIONS(281), + [anon_sym_DOT_AT] = ACTIONS(281), + [anon_sym_QMARK_DOT] = ACTIONS(281), + [anon_sym_STAR_DOT] = ACTIONS(281), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_DOT] = ACTIONS(279), + [anon_sym_import] = ACTIONS(279), + [anon_sym_as] = ACTIONS(279), + [anon_sym_package] = ACTIONS(279), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(279), + [anon_sym_PLUS_PLUS] = ACTIONS(281), + [anon_sym_DASH_DASH] = ACTIONS(281), + [anon_sym_PERCENT] = ACTIONS(281), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_LT_LT] = ACTIONS(281), + [anon_sym_GT_GT] = ACTIONS(279), + [anon_sym_GT_GT_GT] = ACTIONS(281), + [anon_sym_DOT_DOT] = ACTIONS(279), + [anon_sym_DOT_DOT_LT] = ACTIONS(281), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(281), + [anon_sym_LT_DOT_DOT] = ACTIONS(279), + [anon_sym_LT] = ACTIONS(279), + [anon_sym_LT_EQ] = ACTIONS(279), + [anon_sym_GT] = ACTIONS(279), + [anon_sym_GT_EQ] = ACTIONS(281), + [anon_sym_in] = ACTIONS(279), + [anon_sym_BANGin] = ACTIONS(279), + [anon_sym_instanceof] = ACTIONS(279), + [anon_sym_BANGinstanceof] = ACTIONS(281), + [anon_sym_EQ_EQ] = ACTIONS(279), + [anon_sym_BANG_EQ] = ACTIONS(279), + [anon_sym_LT_EQ_GT] = ACTIONS(281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(281), + [anon_sym_EQ_TILDE] = ACTIONS(281), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(279), + [anon_sym_CARET] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(279), + [anon_sym_AMP_AMP] = ACTIONS(281), + [anon_sym_PIPE_PIPE] = ACTIONS(281), + [anon_sym_QMARK_COLON] = ACTIONS(281), + [anon_sym_STAR_STAR] = ACTIONS(281), + [anon_sym_ATinterface] = ACTIONS(281), + [anon_sym_interface] = ACTIONS(279), + [anon_sym_class] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(281), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(281), + [anon_sym_do] = ACTIONS(279), + [anon_sym_while] = ACTIONS(279), + [anon_sym_for] = ACTIONS(279), + [anon_sym_if] = ACTIONS(279), + [anon_sym_else] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(281), + [anon_sym_return] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(279), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(281), + [anon_sym_DQUOTE] = ACTIONS(279), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [anon_sym_DOLLAR_SLASH] = ACTIONS(281), + [anon_sym_switch] = ACTIONS(279), + [anon_sym_case] = ACTIONS(279), + [anon_sym_default] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(279), + [anon_sym_try] = ACTIONS(279), + [anon_sym_catch] = ACTIONS(279), + [anon_sym_finally] = ACTIONS(279), + [anon_sym_int] = ACTIONS(279), + [anon_sym_boolean] = ACTIONS(279), + [anon_sym_char] = ACTIONS(279), + [anon_sym_short] = ACTIONS(279), + [anon_sym_long] = ACTIONS(279), + [anon_sym_float] = ACTIONS(279), + [anon_sym_double] = ACTIONS(279), + [anon_sym_void] = ACTIONS(279), + [anon_sym_public] = ACTIONS(279), + [anon_sym_protected] = ACTIONS(279), + [anon_sym_private] = ACTIONS(279), + [anon_sym_static] = ACTIONS(279), + [anon_sym_final] = ACTIONS(279), + [anon_sym_synchronized] = ACTIONS(279), + }, + [211] = { + [sym_comment] = STATE(211), + [sym_groovy_doc] = STATE(211), + [sym_identifier] = ACTIONS(339), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(341), + [anon_sym_DOT_AMP] = ACTIONS(341), + [anon_sym_DOT_AT] = ACTIONS(341), + [anon_sym_QMARK_DOT] = ACTIONS(341), + [anon_sym_STAR_DOT] = ACTIONS(341), + [anon_sym_STAR] = ACTIONS(339), + [anon_sym_DOT] = ACTIONS(339), + [anon_sym_import] = ACTIONS(339), + [anon_sym_as] = ACTIONS(339), + [anon_sym_package] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(339), + [anon_sym_assert] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_PERCENT] = ACTIONS(341), + [anon_sym_SLASH] = ACTIONS(339), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_GT_GT_GT] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(339), + [anon_sym_DOT_DOT_LT] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(341), + [anon_sym_LT_DOT_DOT] = ACTIONS(339), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_in] = ACTIONS(339), + [anon_sym_BANGin] = ACTIONS(339), + [anon_sym_instanceof] = ACTIONS(339), + [anon_sym_BANGinstanceof] = ACTIONS(341), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_LT_EQ_GT] = ACTIONS(341), + [anon_sym_EQ_EQ_EQ] = ACTIONS(341), + [anon_sym_BANG_EQ_EQ] = ACTIONS(341), + [anon_sym_EQ_TILDE] = ACTIONS(341), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(339), + [anon_sym_CARET] = ACTIONS(341), + [anon_sym_PIPE] = ACTIONS(339), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_QMARK_COLON] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(341), + [anon_sym_ATinterface] = ACTIONS(341), + [anon_sym_interface] = ACTIONS(339), + [anon_sym_class] = ACTIONS(339), + [anon_sym_COMMA] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(341), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_do] = ACTIONS(339), + [anon_sym_while] = ACTIONS(339), + [anon_sym_for] = ACTIONS(339), + [anon_sym_if] = ACTIONS(339), + [anon_sym_else] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_return] = ACTIONS(339), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(341), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(341), + [anon_sym_DOLLAR_SLASH] = ACTIONS(341), + [anon_sym_switch] = ACTIONS(339), + [anon_sym_case] = ACTIONS(339), + [anon_sym_default] = ACTIONS(339), + [anon_sym_QMARK] = ACTIONS(339), + [anon_sym_try] = ACTIONS(339), + [anon_sym_catch] = ACTIONS(339), + [anon_sym_finally] = ACTIONS(339), + [anon_sym_int] = ACTIONS(339), + [anon_sym_boolean] = ACTIONS(339), + [anon_sym_char] = ACTIONS(339), + [anon_sym_short] = ACTIONS(339), + [anon_sym_long] = ACTIONS(339), + [anon_sym_float] = ACTIONS(339), + [anon_sym_double] = ACTIONS(339), + [anon_sym_void] = ACTIONS(339), + [anon_sym_public] = ACTIONS(339), + [anon_sym_protected] = ACTIONS(339), + [anon_sym_private] = ACTIONS(339), + [anon_sym_static] = ACTIONS(339), + [anon_sym_final] = ACTIONS(339), + [anon_sym_synchronized] = ACTIONS(339), + }, + [212] = { + [sym_comment] = STATE(212), + [sym_groovy_doc] = STATE(212), + [ts_builtin_sym_end] = ACTIONS(93), + [sym_identifier] = ACTIONS(99), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_DOT_AMP] = ACTIONS(93), + [anon_sym_DOT_AT] = ACTIONS(93), + [anon_sym_QMARK_DOT] = ACTIONS(93), + [anon_sym_STAR_DOT] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(97), + [anon_sym_import] = ACTIONS(99), + [anon_sym_as] = ACTIONS(99), + [anon_sym_package] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(93), + [anon_sym_SLASH] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(99), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_LT_LT] = ACTIONS(93), + [anon_sym_GT_GT] = ACTIONS(99), + [anon_sym_GT_GT_GT] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(99), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_in] = ACTIONS(99), + [anon_sym_BANGin] = ACTIONS(99), + [anon_sym_instanceof] = ACTIONS(99), + [anon_sym_BANGinstanceof] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_LT_EQ_GT] = ACTIONS(93), + [anon_sym_EQ_EQ_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ_EQ] = ACTIONS(93), + [anon_sym_EQ_TILDE] = ACTIONS(93), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(99), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(93), + [anon_sym_ATinterface] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(99), + [anon_sym_class] = ACTIONS(99), + [anon_sym_COMMA] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(93), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(99), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(99), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(99), + [anon_sym_if] = ACTIONS(99), + [anon_sym_else] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(101), + [anon_sym_COLON] = ACTIONS(620), + [anon_sym_pipeline] = ACTIONS(99), + [anon_sym_return] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_SLASH] = ACTIONS(93), + [anon_sym_switch] = ACTIONS(99), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(99), + [anon_sym_finally] = ACTIONS(99), + [anon_sym_int] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_char] = ACTIONS(99), + [anon_sym_short] = ACTIONS(99), + [anon_sym_long] = ACTIONS(99), + [anon_sym_float] = ACTIONS(99), + [anon_sym_double] = ACTIONS(99), + [anon_sym_void] = ACTIONS(99), + [anon_sym_public] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_static] = ACTIONS(99), + [anon_sym_final] = ACTIONS(99), + [anon_sym_synchronized] = ACTIONS(99), + }, + [213] = { + [sym_comment] = STATE(213), + [sym_groovy_doc] = STATE(213), + [sym_identifier] = ACTIONS(69), + [anon_sym_break] = ACTIONS(69), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_SEMI] = ACTIONS(71), + [anon_sym_DOT_AMP] = ACTIONS(71), + [anon_sym_DOT_AT] = ACTIONS(71), + [anon_sym_QMARK_DOT] = ACTIONS(71), + [anon_sym_STAR_DOT] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(69), + [anon_sym_DOT] = ACTIONS(69), + [anon_sym_import] = ACTIONS(69), + [anon_sym_as] = ACTIONS(69), + [anon_sym_package] = ACTIONS(69), + [anon_sym_AT] = ACTIONS(69), + [anon_sym_assert] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_LT_LT] = ACTIONS(71), + [anon_sym_GT_GT] = ACTIONS(69), + [anon_sym_GT_GT_GT] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_DOT_DOT_LT] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(71), + [anon_sym_LT_DOT_DOT] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(69), + [anon_sym_LT_EQ] = ACTIONS(69), + [anon_sym_GT] = ACTIONS(69), + [anon_sym_GT_EQ] = ACTIONS(71), + [anon_sym_in] = ACTIONS(69), + [anon_sym_BANGin] = ACTIONS(69), + [anon_sym_instanceof] = ACTIONS(69), + [anon_sym_BANGinstanceof] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(69), + [anon_sym_BANG_EQ] = ACTIONS(69), + [anon_sym_LT_EQ_GT] = ACTIONS(71), + [anon_sym_EQ_EQ_EQ] = ACTIONS(71), + [anon_sym_BANG_EQ_EQ] = ACTIONS(71), + [anon_sym_EQ_TILDE] = ACTIONS(71), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(69), + [anon_sym_CARET] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(69), + [anon_sym_AMP_AMP] = ACTIONS(71), + [anon_sym_PIPE_PIPE] = ACTIONS(71), + [anon_sym_QMARK_COLON] = ACTIONS(71), + [anon_sym_STAR_STAR] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(69), + [anon_sym_class] = ACTIONS(69), + [anon_sym_COMMA] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(71), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(69), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_do] = ACTIONS(69), + [anon_sym_while] = ACTIONS(69), + [anon_sym_for] = ACTIONS(69), + [anon_sym_if] = ACTIONS(69), + [anon_sym_else] = ACTIONS(69), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_return] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_SLASH] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_case] = ACTIONS(69), + [anon_sym_default] = ACTIONS(69), + [anon_sym_QMARK] = ACTIONS(69), + [anon_sym_try] = ACTIONS(69), + [anon_sym_catch] = ACTIONS(69), + [anon_sym_finally] = ACTIONS(69), + [anon_sym_int] = ACTIONS(69), + [anon_sym_boolean] = ACTIONS(69), + [anon_sym_char] = ACTIONS(69), + [anon_sym_short] = ACTIONS(69), + [anon_sym_long] = ACTIONS(69), + [anon_sym_float] = ACTIONS(69), + [anon_sym_double] = ACTIONS(69), + [anon_sym_void] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_protected] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_final] = ACTIONS(69), + [anon_sym_synchronized] = ACTIONS(69), + }, + [214] = { + [sym_comment] = STATE(214), + [sym_groovy_doc] = STATE(214), + [sym_identifier] = ACTIONS(275), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_DOT_AMP] = ACTIONS(277), + [anon_sym_DOT_AT] = ACTIONS(277), + [anon_sym_QMARK_DOT] = ACTIONS(277), + [anon_sym_STAR_DOT] = ACTIONS(277), + [anon_sym_STAR] = ACTIONS(275), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_import] = ACTIONS(275), + [anon_sym_as] = ACTIONS(275), + [anon_sym_package] = ACTIONS(275), + [anon_sym_AT] = ACTIONS(275), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_PLUS_PLUS] = ACTIONS(277), + [anon_sym_DASH_DASH] = ACTIONS(277), + [anon_sym_PERCENT] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_PLUS] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_GT_GT] = ACTIONS(275), + [anon_sym_GT_GT_GT] = ACTIONS(277), + [anon_sym_DOT_DOT] = ACTIONS(275), + [anon_sym_DOT_DOT_LT] = ACTIONS(277), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(277), + [anon_sym_LT_DOT_DOT] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_LT_EQ] = ACTIONS(275), + [anon_sym_GT] = ACTIONS(275), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_in] = ACTIONS(275), + [anon_sym_BANGin] = ACTIONS(275), + [anon_sym_instanceof] = ACTIONS(275), + [anon_sym_BANGinstanceof] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_LT_EQ_GT] = ACTIONS(277), + [anon_sym_EQ_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ_EQ] = ACTIONS(277), + [anon_sym_EQ_TILDE] = ACTIONS(277), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(277), + [anon_sym_AMP] = ACTIONS(275), + [anon_sym_CARET] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(275), + [anon_sym_AMP_AMP] = ACTIONS(277), + [anon_sym_PIPE_PIPE] = ACTIONS(277), + [anon_sym_QMARK_COLON] = ACTIONS(277), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_ATinterface] = ACTIONS(277), + [anon_sym_interface] = ACTIONS(275), + [anon_sym_class] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(277), + [anon_sym_RBRACE] = ACTIONS(277), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(277), + [anon_sym_do] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(275), + [anon_sym_else] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_return] = ACTIONS(275), + [anon_sym_SQUOTE] = ACTIONS(275), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(277), + [anon_sym_DQUOTE] = ACTIONS(275), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(277), + [anon_sym_DOLLAR_SLASH] = ACTIONS(277), + [anon_sym_switch] = ACTIONS(275), + [anon_sym_case] = ACTIONS(275), + [anon_sym_default] = ACTIONS(275), + [anon_sym_QMARK] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_int] = ACTIONS(275), + [anon_sym_boolean] = ACTIONS(275), + [anon_sym_char] = ACTIONS(275), + [anon_sym_short] = ACTIONS(275), + [anon_sym_long] = ACTIONS(275), + [anon_sym_float] = ACTIONS(275), + [anon_sym_double] = ACTIONS(275), + [anon_sym_void] = ACTIONS(275), + [anon_sym_public] = ACTIONS(275), + [anon_sym_protected] = ACTIONS(275), + [anon_sym_private] = ACTIONS(275), + [anon_sym_static] = ACTIONS(275), + [anon_sym_final] = ACTIONS(275), + [anon_sym_synchronized] = ACTIONS(275), + }, + [215] = { + [sym_comment] = STATE(215), + [sym_groovy_doc] = STATE(215), + [sym_argument_list] = STATE(228), + [ts_builtin_sym_end] = ACTIONS(261), + [sym_identifier] = ACTIONS(259), + [anon_sym_break] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(259), + [anon_sym_SEMI] = ACTIONS(261), + [anon_sym_DOT_AMP] = ACTIONS(261), + [anon_sym_DOT_AT] = ACTIONS(261), + [anon_sym_QMARK_DOT] = ACTIONS(261), + [anon_sym_STAR_DOT] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(259), + [anon_sym_DOT] = ACTIONS(622), + [anon_sym_import] = ACTIONS(259), + [anon_sym_as] = ACTIONS(259), + [anon_sym_package] = ACTIONS(259), + [anon_sym_AT] = ACTIONS(259), + [anon_sym_assert] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(261), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_GT_GT_GT] = ACTIONS(261), + [anon_sym_DOT_DOT] = ACTIONS(259), + [anon_sym_DOT_DOT_LT] = ACTIONS(261), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(261), + [anon_sym_LT_DOT_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(259), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_GT_EQ] = ACTIONS(261), + [anon_sym_in] = ACTIONS(259), + [anon_sym_BANGin] = ACTIONS(259), + [anon_sym_instanceof] = ACTIONS(259), + [anon_sym_BANGinstanceof] = ACTIONS(261), + [anon_sym_EQ_EQ] = ACTIONS(259), + [anon_sym_BANG_EQ] = ACTIONS(259), + [anon_sym_LT_EQ_GT] = ACTIONS(261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(261), + [anon_sym_BANG_EQ_EQ] = ACTIONS(261), + [anon_sym_EQ_TILDE] = ACTIONS(261), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_CARET] = ACTIONS(261), + [anon_sym_PIPE] = ACTIONS(259), + [anon_sym_AMP_AMP] = ACTIONS(261), + [anon_sym_PIPE_PIPE] = ACTIONS(261), + [anon_sym_QMARK_COLON] = ACTIONS(261), + [anon_sym_STAR_STAR] = ACTIONS(261), + [anon_sym_ATinterface] = ACTIONS(261), + [anon_sym_interface] = ACTIONS(259), + [anon_sym_class] = ACTIONS(259), + [anon_sym_COMMA] = ACTIONS(261), + [anon_sym_LBRACE] = ACTIONS(261), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(259), + [anon_sym_LPAREN] = ACTIONS(624), + [anon_sym_do] = ACTIONS(259), + [anon_sym_while] = ACTIONS(259), + [anon_sym_for] = ACTIONS(259), + [anon_sym_if] = ACTIONS(259), + [anon_sym_else] = ACTIONS(259), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_pipeline] = ACTIONS(259), + [anon_sym_return] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(261), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_SLASH] = ACTIONS(261), + [anon_sym_switch] = ACTIONS(259), + [anon_sym_QMARK] = ACTIONS(259), + [anon_sym_try] = ACTIONS(259), + [anon_sym_catch] = ACTIONS(259), + [anon_sym_finally] = ACTIONS(259), + [anon_sym_int] = ACTIONS(259), + [anon_sym_boolean] = ACTIONS(259), + [anon_sym_char] = ACTIONS(259), + [anon_sym_short] = ACTIONS(259), + [anon_sym_long] = ACTIONS(259), + [anon_sym_float] = ACTIONS(259), + [anon_sym_double] = ACTIONS(259), + [anon_sym_void] = ACTIONS(259), + [anon_sym_public] = ACTIONS(259), + [anon_sym_protected] = ACTIONS(259), + [anon_sym_private] = ACTIONS(259), + [anon_sym_static] = ACTIONS(259), + [anon_sym_final] = ACTIONS(259), + [anon_sym_synchronized] = ACTIONS(259), + }, + [216] = { + [sym_comment] = STATE(216), + [sym_groovy_doc] = STATE(216), + [sym_identifier] = ACTIONS(97), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(101), + [anon_sym_DOT_AMP] = ACTIONS(101), + [anon_sym_DOT_AT] = ACTIONS(101), + [anon_sym_QMARK_DOT] = ACTIONS(101), + [anon_sym_STAR_DOT] = ACTIONS(101), + [anon_sym_STAR] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(97), + [anon_sym_import] = ACTIONS(97), + [anon_sym_as] = ACTIONS(97), + [anon_sym_package] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_assert] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(97), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(97), + [anon_sym_GT_GT_GT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(97), + [anon_sym_DOT_DOT_LT] = ACTIONS(101), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(101), + [anon_sym_LT_DOT_DOT] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(97), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(101), + [anon_sym_in] = ACTIONS(97), + [anon_sym_BANGin] = ACTIONS(97), + [anon_sym_instanceof] = ACTIONS(97), + [anon_sym_BANGinstanceof] = ACTIONS(101), + [anon_sym_EQ_EQ] = ACTIONS(97), + [anon_sym_BANG_EQ] = ACTIONS(97), + [anon_sym_LT_EQ_GT] = ACTIONS(101), + [anon_sym_EQ_EQ_EQ] = ACTIONS(101), + [anon_sym_BANG_EQ_EQ] = ACTIONS(101), + [anon_sym_EQ_TILDE] = ACTIONS(101), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(97), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_PIPE] = ACTIONS(97), + [anon_sym_AMP_AMP] = ACTIONS(101), + [anon_sym_PIPE_PIPE] = ACTIONS(101), + [anon_sym_QMARK_COLON] = ACTIONS(101), + [anon_sym_STAR_STAR] = ACTIONS(101), + [anon_sym_ATinterface] = ACTIONS(101), + [anon_sym_interface] = ACTIONS(97), + [anon_sym_class] = ACTIONS(97), + [anon_sym_COMMA] = ACTIONS(101), + [anon_sym_LBRACE] = ACTIONS(101), + [anon_sym_RBRACE] = ACTIONS(101), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(97), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(97), + [anon_sym_while] = ACTIONS(97), + [anon_sym_for] = ACTIONS(97), + [anon_sym_if] = ACTIONS(97), + [anon_sym_else] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(101), + [anon_sym_return] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(101), + [anon_sym_DOLLAR_SLASH] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(97), + [anon_sym_case] = ACTIONS(97), + [anon_sym_default] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(97), + [anon_sym_try] = ACTIONS(97), + [anon_sym_catch] = ACTIONS(97), + [anon_sym_finally] = ACTIONS(97), + [anon_sym_int] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_char] = ACTIONS(97), + [anon_sym_short] = ACTIONS(97), + [anon_sym_long] = ACTIONS(97), + [anon_sym_float] = ACTIONS(97), + [anon_sym_double] = ACTIONS(97), + [anon_sym_void] = ACTIONS(97), + [anon_sym_public] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_static] = ACTIONS(97), + [anon_sym_final] = ACTIONS(97), + [anon_sym_synchronized] = ACTIONS(97), + }, + [217] = { + [sym_comment] = STATE(217), + [sym_groovy_doc] = STATE(217), + [sym_identifier] = ACTIONS(81), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_DOT_AMP] = ACTIONS(83), + [anon_sym_DOT_AT] = ACTIONS(83), + [anon_sym_QMARK_DOT] = ACTIONS(83), + [anon_sym_STAR_DOT] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_import] = ACTIONS(81), + [anon_sym_as] = ACTIONS(81), + [anon_sym_package] = ACTIONS(81), + [anon_sym_AT] = ACTIONS(81), + [anon_sym_assert] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(83), + [anon_sym_GT_GT] = ACTIONS(81), + [anon_sym_GT_GT_GT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DOT_DOT_LT] = ACTIONS(83), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(83), + [anon_sym_LT_DOT_DOT] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_GT_EQ] = ACTIONS(83), + [anon_sym_in] = ACTIONS(81), + [anon_sym_BANGin] = ACTIONS(81), + [anon_sym_instanceof] = ACTIONS(81), + [anon_sym_BANGinstanceof] = ACTIONS(83), + [anon_sym_EQ_EQ] = ACTIONS(81), + [anon_sym_BANG_EQ] = ACTIONS(81), + [anon_sym_LT_EQ_GT] = ACTIONS(83), + [anon_sym_EQ_EQ_EQ] = ACTIONS(83), + [anon_sym_BANG_EQ_EQ] = ACTIONS(83), + [anon_sym_EQ_TILDE] = ACTIONS(83), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(83), + [anon_sym_PIPE] = ACTIONS(81), + [anon_sym_AMP_AMP] = ACTIONS(83), + [anon_sym_PIPE_PIPE] = ACTIONS(83), + [anon_sym_QMARK_COLON] = ACTIONS(83), + [anon_sym_STAR_STAR] = ACTIONS(83), + [anon_sym_ATinterface] = ACTIONS(83), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_RBRACE] = ACTIONS(83), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_do] = ACTIONS(81), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(81), + [anon_sym_if] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_return] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_SLASH] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(81), + [anon_sym_default] = ACTIONS(81), + [anon_sym_QMARK] = ACTIONS(81), + [anon_sym_try] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_finally] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_boolean] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_float] = ACTIONS(81), + [anon_sym_double] = ACTIONS(81), + [anon_sym_void] = ACTIONS(81), + [anon_sym_public] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_static] = ACTIONS(81), + [anon_sym_final] = ACTIONS(81), + [anon_sym_synchronized] = ACTIONS(81), + }, + [218] = { + [sym_comment] = STATE(218), + [sym_groovy_doc] = STATE(218), + [ts_builtin_sym_end] = ACTIONS(285), + [sym_identifier] = ACTIONS(283), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOT_AMP] = ACTIONS(285), + [anon_sym_DOT_AT] = ACTIONS(285), + [anon_sym_QMARK_DOT] = ACTIONS(285), + [anon_sym_STAR_DOT] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(283), + [anon_sym_DOT] = ACTIONS(283), + [anon_sym_import] = ACTIONS(283), + [anon_sym_DOT_STAR] = ACTIONS(285), + [anon_sym_as] = ACTIONS(283), + [anon_sym_package] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [anon_sym_assert] = ACTIONS(283), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_PERCENT] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(283), + [anon_sym_DASH] = ACTIONS(283), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(283), + [anon_sym_GT_GT_GT] = ACTIONS(285), + [anon_sym_DOT_DOT] = ACTIONS(283), + [anon_sym_DOT_DOT_LT] = ACTIONS(285), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(285), + [anon_sym_LT_DOT_DOT] = ACTIONS(283), + [anon_sym_LT] = ACTIONS(283), + [anon_sym_LT_EQ] = ACTIONS(283), + [anon_sym_GT] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_in] = ACTIONS(283), + [anon_sym_BANGin] = ACTIONS(283), + [anon_sym_instanceof] = ACTIONS(283), + [anon_sym_BANGinstanceof] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(283), + [anon_sym_BANG_EQ] = ACTIONS(283), + [anon_sym_LT_EQ_GT] = ACTIONS(285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(283), + [anon_sym_CARET] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_QMARK_COLON] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(285), + [anon_sym_ATinterface] = ACTIONS(285), + [anon_sym_interface] = ACTIONS(283), + [anon_sym_class] = ACTIONS(283), + [anon_sym_COMMA] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_do] = ACTIONS(283), + [anon_sym_while] = ACTIONS(283), + [anon_sym_for] = ACTIONS(283), + [anon_sym_if] = ACTIONS(283), + [anon_sym_else] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_pipeline] = ACTIONS(283), + [anon_sym_return] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(283), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_SLASH] = ACTIONS(285), + [anon_sym_switch] = ACTIONS(283), + [anon_sym_QMARK] = ACTIONS(283), + [anon_sym_try] = ACTIONS(283), + [anon_sym_catch] = ACTIONS(283), + [anon_sym_finally] = ACTIONS(283), + [anon_sym_int] = ACTIONS(283), + [anon_sym_boolean] = ACTIONS(283), + [anon_sym_char] = ACTIONS(283), + [anon_sym_short] = ACTIONS(283), + [anon_sym_long] = ACTIONS(283), + [anon_sym_float] = ACTIONS(283), + [anon_sym_double] = ACTIONS(283), + [anon_sym_void] = ACTIONS(283), + [anon_sym_public] = ACTIONS(283), + [anon_sym_protected] = ACTIONS(283), + [anon_sym_private] = ACTIONS(283), + [anon_sym_static] = ACTIONS(283), + [anon_sym_final] = ACTIONS(283), + [anon_sym_synchronized] = ACTIONS(283), + }, + [219] = { + [sym_comment] = STATE(219), + [sym_groovy_doc] = STATE(219), + [ts_builtin_sym_end] = ACTIONS(83), + [sym_identifier] = ACTIONS(81), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_DOT_AMP] = ACTIONS(83), + [anon_sym_DOT_AT] = ACTIONS(83), + [anon_sym_QMARK_DOT] = ACTIONS(83), + [anon_sym_STAR_DOT] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_import] = ACTIONS(81), + [anon_sym_as] = ACTIONS(81), + [anon_sym_package] = ACTIONS(81), + [anon_sym_AT] = ACTIONS(81), + [anon_sym_assert] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(83), + [anon_sym_GT_GT] = ACTIONS(81), + [anon_sym_GT_GT_GT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DOT_DOT_LT] = ACTIONS(83), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(83), + [anon_sym_LT_DOT_DOT] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_GT_EQ] = ACTIONS(83), + [anon_sym_in] = ACTIONS(81), + [anon_sym_BANGin] = ACTIONS(81), + [anon_sym_instanceof] = ACTIONS(81), + [anon_sym_BANGinstanceof] = ACTIONS(83), + [anon_sym_EQ_EQ] = ACTIONS(81), + [anon_sym_BANG_EQ] = ACTIONS(81), + [anon_sym_LT_EQ_GT] = ACTIONS(83), + [anon_sym_EQ_EQ_EQ] = ACTIONS(83), + [anon_sym_BANG_EQ_EQ] = ACTIONS(83), + [anon_sym_EQ_TILDE] = ACTIONS(83), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(83), + [anon_sym_PIPE] = ACTIONS(81), + [anon_sym_AMP_AMP] = ACTIONS(83), + [anon_sym_PIPE_PIPE] = ACTIONS(83), + [anon_sym_QMARK_COLON] = ACTIONS(83), + [anon_sym_STAR_STAR] = ACTIONS(83), + [anon_sym_ATinterface] = ACTIONS(83), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(83), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_do] = ACTIONS(81), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(81), + [anon_sym_if] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_pipeline] = ACTIONS(81), + [anon_sym_return] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_SLASH] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_QMARK] = ACTIONS(81), + [anon_sym_try] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_finally] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_boolean] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_float] = ACTIONS(81), + [anon_sym_double] = ACTIONS(81), + [anon_sym_void] = ACTIONS(81), + [anon_sym_public] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_static] = ACTIONS(81), + [anon_sym_final] = ACTIONS(81), + [anon_sym_synchronized] = ACTIONS(81), + }, + [220] = { + [sym_comment] = STATE(220), + [sym_groovy_doc] = STATE(220), + [ts_builtin_sym_end] = ACTIONS(71), + [sym_identifier] = ACTIONS(69), + [anon_sym_break] = ACTIONS(69), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_SEMI] = ACTIONS(71), + [anon_sym_DOT_AMP] = ACTIONS(71), + [anon_sym_DOT_AT] = ACTIONS(71), + [anon_sym_QMARK_DOT] = ACTIONS(71), + [anon_sym_STAR_DOT] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(69), + [anon_sym_DOT] = ACTIONS(69), + [anon_sym_import] = ACTIONS(69), + [anon_sym_as] = ACTIONS(69), + [anon_sym_package] = ACTIONS(69), + [anon_sym_AT] = ACTIONS(69), + [anon_sym_assert] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_LT_LT] = ACTIONS(71), + [anon_sym_GT_GT] = ACTIONS(69), + [anon_sym_GT_GT_GT] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_DOT_DOT_LT] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(71), + [anon_sym_LT_DOT_DOT] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(69), + [anon_sym_LT_EQ] = ACTIONS(69), + [anon_sym_GT] = ACTIONS(69), + [anon_sym_GT_EQ] = ACTIONS(71), + [anon_sym_in] = ACTIONS(69), + [anon_sym_BANGin] = ACTIONS(69), + [anon_sym_instanceof] = ACTIONS(69), + [anon_sym_BANGinstanceof] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(69), + [anon_sym_BANG_EQ] = ACTIONS(69), + [anon_sym_LT_EQ_GT] = ACTIONS(71), + [anon_sym_EQ_EQ_EQ] = ACTIONS(71), + [anon_sym_BANG_EQ_EQ] = ACTIONS(71), + [anon_sym_EQ_TILDE] = ACTIONS(71), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(69), + [anon_sym_CARET] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(69), + [anon_sym_AMP_AMP] = ACTIONS(71), + [anon_sym_PIPE_PIPE] = ACTIONS(71), + [anon_sym_QMARK_COLON] = ACTIONS(71), + [anon_sym_STAR_STAR] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(69), + [anon_sym_class] = ACTIONS(69), + [anon_sym_COMMA] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(71), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(69), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_do] = ACTIONS(69), + [anon_sym_while] = ACTIONS(69), + [anon_sym_for] = ACTIONS(69), + [anon_sym_if] = ACTIONS(69), + [anon_sym_else] = ACTIONS(69), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_pipeline] = ACTIONS(69), + [anon_sym_return] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_SLASH] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_QMARK] = ACTIONS(69), + [anon_sym_try] = ACTIONS(69), + [anon_sym_catch] = ACTIONS(69), + [anon_sym_finally] = ACTIONS(69), + [anon_sym_int] = ACTIONS(69), + [anon_sym_boolean] = ACTIONS(69), + [anon_sym_char] = ACTIONS(69), + [anon_sym_short] = ACTIONS(69), + [anon_sym_long] = ACTIONS(69), + [anon_sym_float] = ACTIONS(69), + [anon_sym_double] = ACTIONS(69), + [anon_sym_void] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_protected] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_final] = ACTIONS(69), + [anon_sym_synchronized] = ACTIONS(69), + }, + [221] = { + [sym_comment] = STATE(221), + [sym_groovy_doc] = STATE(221), + [ts_builtin_sym_end] = ACTIONS(341), + [sym_identifier] = ACTIONS(339), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(341), + [anon_sym_DOT_AMP] = ACTIONS(341), + [anon_sym_DOT_AT] = ACTIONS(341), + [anon_sym_QMARK_DOT] = ACTIONS(341), + [anon_sym_STAR_DOT] = ACTIONS(341), + [anon_sym_STAR] = ACTIONS(339), + [anon_sym_DOT] = ACTIONS(339), + [anon_sym_import] = ACTIONS(339), + [anon_sym_as] = ACTIONS(339), + [anon_sym_package] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(339), + [anon_sym_assert] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_PERCENT] = ACTIONS(341), + [anon_sym_SLASH] = ACTIONS(339), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_GT_GT_GT] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(339), + [anon_sym_DOT_DOT_LT] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(341), + [anon_sym_LT_DOT_DOT] = ACTIONS(339), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_in] = ACTIONS(339), + [anon_sym_BANGin] = ACTIONS(339), + [anon_sym_instanceof] = ACTIONS(339), + [anon_sym_BANGinstanceof] = ACTIONS(341), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_LT_EQ_GT] = ACTIONS(341), + [anon_sym_EQ_EQ_EQ] = ACTIONS(341), + [anon_sym_BANG_EQ_EQ] = ACTIONS(341), + [anon_sym_EQ_TILDE] = ACTIONS(341), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(339), + [anon_sym_CARET] = ACTIONS(341), + [anon_sym_PIPE] = ACTIONS(339), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_QMARK_COLON] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(341), + [anon_sym_ATinterface] = ACTIONS(341), + [anon_sym_interface] = ACTIONS(339), + [anon_sym_class] = ACTIONS(339), + [anon_sym_COMMA] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(341), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_do] = ACTIONS(339), + [anon_sym_while] = ACTIONS(339), + [anon_sym_for] = ACTIONS(339), + [anon_sym_if] = ACTIONS(339), + [anon_sym_else] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_pipeline] = ACTIONS(339), + [anon_sym_return] = ACTIONS(339), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(341), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(341), + [anon_sym_DOLLAR_SLASH] = ACTIONS(341), + [anon_sym_switch] = ACTIONS(339), + [anon_sym_QMARK] = ACTIONS(339), + [anon_sym_try] = ACTIONS(339), + [anon_sym_catch] = ACTIONS(339), + [anon_sym_finally] = ACTIONS(339), + [anon_sym_int] = ACTIONS(339), + [anon_sym_boolean] = ACTIONS(339), + [anon_sym_char] = ACTIONS(339), + [anon_sym_short] = ACTIONS(339), + [anon_sym_long] = ACTIONS(339), + [anon_sym_float] = ACTIONS(339), + [anon_sym_double] = ACTIONS(339), + [anon_sym_void] = ACTIONS(339), + [anon_sym_public] = ACTIONS(339), + [anon_sym_protected] = ACTIONS(339), + [anon_sym_private] = ACTIONS(339), + [anon_sym_static] = ACTIONS(339), + [anon_sym_final] = ACTIONS(339), + [anon_sym_synchronized] = ACTIONS(339), + }, + [222] = { + [sym_comment] = STATE(222), + [sym_groovy_doc] = STATE(222), + [ts_builtin_sym_end] = ACTIONS(273), + [sym_identifier] = ACTIONS(271), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_SEMI] = ACTIONS(273), + [anon_sym_DOT_AMP] = ACTIONS(273), + [anon_sym_DOT_AT] = ACTIONS(273), + [anon_sym_QMARK_DOT] = ACTIONS(273), + [anon_sym_STAR_DOT] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_import] = ACTIONS(271), + [anon_sym_as] = ACTIONS(271), + [anon_sym_package] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_assert] = ACTIONS(271), + [anon_sym_PLUS_PLUS] = ACTIONS(273), + [anon_sym_DASH_DASH] = ACTIONS(273), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_LT_LT] = ACTIONS(273), + [anon_sym_GT_GT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(273), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_DOT_DOT_LT] = ACTIONS(273), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(273), + [anon_sym_LT_DOT_DOT] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(273), + [anon_sym_in] = ACTIONS(271), + [anon_sym_BANGin] = ACTIONS(271), + [anon_sym_instanceof] = ACTIONS(271), + [anon_sym_BANGinstanceof] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_LT_EQ_GT] = ACTIONS(273), + [anon_sym_EQ_EQ_EQ] = ACTIONS(273), + [anon_sym_BANG_EQ_EQ] = ACTIONS(273), + [anon_sym_EQ_TILDE] = ACTIONS(273), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(273), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(273), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(273), + [anon_sym_PIPE_PIPE] = ACTIONS(273), + [anon_sym_QMARK_COLON] = ACTIONS(273), + [anon_sym_STAR_STAR] = ACTIONS(273), + [anon_sym_ATinterface] = ACTIONS(273), + [anon_sym_interface] = ACTIONS(271), + [anon_sym_class] = ACTIONS(271), + [anon_sym_COMMA] = ACTIONS(273), + [anon_sym_LBRACE] = ACTIONS(273), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(273), + [anon_sym_do] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_pipeline] = ACTIONS(271), + [anon_sym_return] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(273), + [anon_sym_DQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(273), + [anon_sym_DOLLAR_SLASH] = ACTIONS(273), + [anon_sym_switch] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), + [anon_sym_int] = ACTIONS(271), + [anon_sym_boolean] = ACTIONS(271), + [anon_sym_char] = ACTIONS(271), + [anon_sym_short] = ACTIONS(271), + [anon_sym_long] = ACTIONS(271), + [anon_sym_float] = ACTIONS(271), + [anon_sym_double] = ACTIONS(271), + [anon_sym_void] = ACTIONS(271), + [anon_sym_public] = ACTIONS(271), + [anon_sym_protected] = ACTIONS(271), + [anon_sym_private] = ACTIONS(271), + [anon_sym_static] = ACTIONS(271), + [anon_sym_final] = ACTIONS(271), + [anon_sym_synchronized] = ACTIONS(271), + }, + [223] = { + [sym_comment] = STATE(223), + [sym_groovy_doc] = STATE(223), + [sym_argument_list] = STATE(249), + [ts_builtin_sym_end] = ACTIONS(261), + [sym_identifier] = ACTIONS(259), + [anon_sym_break] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(259), + [anon_sym_SEMI] = ACTIONS(261), + [anon_sym_DOT_AMP] = ACTIONS(261), + [anon_sym_DOT_AT] = ACTIONS(261), + [anon_sym_QMARK_DOT] = ACTIONS(261), + [anon_sym_STAR_DOT] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(259), + [anon_sym_DOT] = ACTIONS(628), + [anon_sym_import] = ACTIONS(259), + [anon_sym_as] = ACTIONS(259), + [anon_sym_package] = ACTIONS(259), + [anon_sym_AT] = ACTIONS(259), + [anon_sym_assert] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(261), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_GT_GT_GT] = ACTIONS(261), + [anon_sym_DOT_DOT] = ACTIONS(259), + [anon_sym_DOT_DOT_LT] = ACTIONS(261), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(261), + [anon_sym_LT_DOT_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(259), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_GT_EQ] = ACTIONS(261), + [anon_sym_in] = ACTIONS(259), + [anon_sym_BANGin] = ACTIONS(259), + [anon_sym_instanceof] = ACTIONS(259), + [anon_sym_BANGinstanceof] = ACTIONS(261), + [anon_sym_EQ_EQ] = ACTIONS(259), + [anon_sym_BANG_EQ] = ACTIONS(259), + [anon_sym_LT_EQ_GT] = ACTIONS(261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(261), + [anon_sym_BANG_EQ_EQ] = ACTIONS(261), + [anon_sym_EQ_TILDE] = ACTIONS(261), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_CARET] = ACTIONS(261), + [anon_sym_PIPE] = ACTIONS(259), + [anon_sym_AMP_AMP] = ACTIONS(261), + [anon_sym_PIPE_PIPE] = ACTIONS(261), + [anon_sym_QMARK_COLON] = ACTIONS(261), + [anon_sym_STAR_STAR] = ACTIONS(261), + [anon_sym_ATinterface] = ACTIONS(261), + [anon_sym_interface] = ACTIONS(259), + [anon_sym_class] = ACTIONS(259), + [anon_sym_COMMA] = ACTIONS(261), + [anon_sym_LBRACE] = ACTIONS(261), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(259), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_RPAREN] = ACTIONS(261), + [anon_sym_do] = ACTIONS(259), + [anon_sym_while] = ACTIONS(259), + [anon_sym_for] = ACTIONS(259), + [anon_sym_if] = ACTIONS(259), + [anon_sym_else] = ACTIONS(259), + [anon_sym_LBRACK] = ACTIONS(632), + [anon_sym_pipeline] = ACTIONS(259), + [anon_sym_return] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(261), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_SLASH] = ACTIONS(261), + [anon_sym_switch] = ACTIONS(259), + [anon_sym_QMARK] = ACTIONS(259), + [anon_sym_try] = ACTIONS(259), + [anon_sym_int] = ACTIONS(259), + [anon_sym_boolean] = ACTIONS(259), + [anon_sym_char] = ACTIONS(259), + [anon_sym_short] = ACTIONS(259), + [anon_sym_long] = ACTIONS(259), + [anon_sym_float] = ACTIONS(259), + [anon_sym_double] = ACTIONS(259), + [anon_sym_void] = ACTIONS(259), + [anon_sym_public] = ACTIONS(259), + [anon_sym_protected] = ACTIONS(259), + [anon_sym_private] = ACTIONS(259), + [anon_sym_static] = ACTIONS(259), + [anon_sym_final] = ACTIONS(259), + [anon_sym_synchronized] = ACTIONS(259), + }, + [224] = { + [sym_comment] = STATE(224), + [sym_groovy_doc] = STATE(224), + [ts_builtin_sym_end] = ACTIONS(101), + [sym_identifier] = ACTIONS(97), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(101), + [anon_sym_DOT_AMP] = ACTIONS(101), + [anon_sym_DOT_AT] = ACTIONS(101), + [anon_sym_QMARK_DOT] = ACTIONS(101), + [anon_sym_STAR_DOT] = ACTIONS(101), + [anon_sym_STAR] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(97), + [anon_sym_import] = ACTIONS(97), + [anon_sym_as] = ACTIONS(97), + [anon_sym_package] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_assert] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(97), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(97), + [anon_sym_GT_GT_GT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(97), + [anon_sym_DOT_DOT_LT] = ACTIONS(101), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(101), + [anon_sym_LT_DOT_DOT] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(97), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(101), + [anon_sym_in] = ACTIONS(97), + [anon_sym_BANGin] = ACTIONS(97), + [anon_sym_instanceof] = ACTIONS(97), + [anon_sym_BANGinstanceof] = ACTIONS(101), + [anon_sym_EQ_EQ] = ACTIONS(97), + [anon_sym_BANG_EQ] = ACTIONS(97), + [anon_sym_LT_EQ_GT] = ACTIONS(101), + [anon_sym_EQ_EQ_EQ] = ACTIONS(101), + [anon_sym_BANG_EQ_EQ] = ACTIONS(101), + [anon_sym_EQ_TILDE] = ACTIONS(101), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(97), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_PIPE] = ACTIONS(97), + [anon_sym_AMP_AMP] = ACTIONS(101), + [anon_sym_PIPE_PIPE] = ACTIONS(101), + [anon_sym_QMARK_COLON] = ACTIONS(101), + [anon_sym_STAR_STAR] = ACTIONS(101), + [anon_sym_ATinterface] = ACTIONS(101), + [anon_sym_interface] = ACTIONS(97), + [anon_sym_class] = ACTIONS(97), + [anon_sym_COMMA] = ACTIONS(101), + [anon_sym_LBRACE] = ACTIONS(101), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(97), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(97), + [anon_sym_while] = ACTIONS(97), + [anon_sym_for] = ACTIONS(97), + [anon_sym_if] = ACTIONS(97), + [anon_sym_else] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(101), + [anon_sym_pipeline] = ACTIONS(97), + [anon_sym_return] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(101), + [anon_sym_DOLLAR_SLASH] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(97), + [anon_sym_try] = ACTIONS(97), + [anon_sym_catch] = ACTIONS(97), + [anon_sym_finally] = ACTIONS(97), + [anon_sym_int] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_char] = ACTIONS(97), + [anon_sym_short] = ACTIONS(97), + [anon_sym_long] = ACTIONS(97), + [anon_sym_float] = ACTIONS(97), + [anon_sym_double] = ACTIONS(97), + [anon_sym_void] = ACTIONS(97), + [anon_sym_public] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_static] = ACTIONS(97), + [anon_sym_final] = ACTIONS(97), + [anon_sym_synchronized] = ACTIONS(97), + }, + [225] = { + [sym_comment] = STATE(225), + [sym_groovy_doc] = STATE(225), + [ts_builtin_sym_end] = ACTIONS(345), + [sym_identifier] = ACTIONS(343), + [anon_sym_break] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_DOT_AMP] = ACTIONS(345), + [anon_sym_DOT_AT] = ACTIONS(345), + [anon_sym_QMARK_DOT] = ACTIONS(345), + [anon_sym_STAR_DOT] = ACTIONS(345), + [anon_sym_STAR] = ACTIONS(343), + [anon_sym_DOT] = ACTIONS(343), + [anon_sym_import] = ACTIONS(343), + [anon_sym_as] = ACTIONS(343), + [anon_sym_package] = ACTIONS(343), + [anon_sym_AT] = ACTIONS(343), + [anon_sym_assert] = ACTIONS(343), + [anon_sym_PLUS_PLUS] = ACTIONS(345), + [anon_sym_DASH_DASH] = ACTIONS(345), + [anon_sym_PERCENT] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(343), + [anon_sym_DASH] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_GT_GT_GT] = ACTIONS(345), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_DOT_DOT_LT] = ACTIONS(345), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(345), + [anon_sym_LT_DOT_DOT] = ACTIONS(343), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_EQ] = ACTIONS(345), + [anon_sym_in] = ACTIONS(343), + [anon_sym_BANGin] = ACTIONS(343), + [anon_sym_instanceof] = ACTIONS(343), + [anon_sym_BANGinstanceof] = ACTIONS(345), + [anon_sym_EQ_EQ] = ACTIONS(343), + [anon_sym_BANG_EQ] = ACTIONS(343), + [anon_sym_LT_EQ_GT] = ACTIONS(345), + [anon_sym_EQ_EQ_EQ] = ACTIONS(345), + [anon_sym_BANG_EQ_EQ] = ACTIONS(345), + [anon_sym_EQ_TILDE] = ACTIONS(345), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(345), + [anon_sym_AMP] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(345), + [anon_sym_PIPE] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(345), + [anon_sym_PIPE_PIPE] = ACTIONS(345), + [anon_sym_QMARK_COLON] = ACTIONS(345), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_ATinterface] = ACTIONS(345), + [anon_sym_interface] = ACTIONS(343), + [anon_sym_class] = ACTIONS(343), + [anon_sym_COMMA] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(345), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_do] = ACTIONS(343), + [anon_sym_while] = ACTIONS(343), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(343), + [anon_sym_else] = ACTIONS(343), + [anon_sym_LBRACK] = ACTIONS(345), + [anon_sym_pipeline] = ACTIONS(343), + [anon_sym_return] = ACTIONS(343), + [anon_sym_SQUOTE] = ACTIONS(343), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_SLASH] = ACTIONS(345), + [anon_sym_switch] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(343), + [anon_sym_try] = ACTIONS(343), + [anon_sym_catch] = ACTIONS(343), + [anon_sym_finally] = ACTIONS(343), + [anon_sym_int] = ACTIONS(343), + [anon_sym_boolean] = ACTIONS(343), + [anon_sym_char] = ACTIONS(343), + [anon_sym_short] = ACTIONS(343), + [anon_sym_long] = ACTIONS(343), + [anon_sym_float] = ACTIONS(343), + [anon_sym_double] = ACTIONS(343), + [anon_sym_void] = ACTIONS(343), + [anon_sym_public] = ACTIONS(343), + [anon_sym_protected] = ACTIONS(343), + [anon_sym_private] = ACTIONS(343), + [anon_sym_static] = ACTIONS(343), + [anon_sym_final] = ACTIONS(343), + [anon_sym_synchronized] = ACTIONS(343), + }, + [226] = { + [sym_comment] = STATE(226), + [sym_groovy_doc] = STATE(226), + [sym_identifier] = ACTIONS(283), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOT_AMP] = ACTIONS(285), + [anon_sym_DOT_AT] = ACTIONS(285), + [anon_sym_QMARK_DOT] = ACTIONS(285), + [anon_sym_STAR_DOT] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(283), + [anon_sym_DOT] = ACTIONS(283), + [anon_sym_import] = ACTIONS(283), + [anon_sym_DOT_STAR] = ACTIONS(285), + [anon_sym_as] = ACTIONS(283), + [anon_sym_package] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [anon_sym_assert] = ACTIONS(283), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_PERCENT] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(283), + [anon_sym_DASH] = ACTIONS(283), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(283), + [anon_sym_GT_GT_GT] = ACTIONS(285), + [anon_sym_DOT_DOT] = ACTIONS(283), + [anon_sym_DOT_DOT_LT] = ACTIONS(285), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(285), + [anon_sym_LT_DOT_DOT] = ACTIONS(283), + [anon_sym_LT] = ACTIONS(283), + [anon_sym_LT_EQ] = ACTIONS(283), + [anon_sym_GT] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_in] = ACTIONS(283), + [anon_sym_BANGin] = ACTIONS(283), + [anon_sym_instanceof] = ACTIONS(283), + [anon_sym_BANGinstanceof] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(283), + [anon_sym_BANG_EQ] = ACTIONS(283), + [anon_sym_LT_EQ_GT] = ACTIONS(285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(283), + [anon_sym_CARET] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_QMARK_COLON] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(285), + [anon_sym_ATinterface] = ACTIONS(285), + [anon_sym_interface] = ACTIONS(283), + [anon_sym_class] = ACTIONS(283), + [anon_sym_COMMA] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(285), + [anon_sym_RBRACE] = ACTIONS(285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_do] = ACTIONS(283), + [anon_sym_while] = ACTIONS(283), + [anon_sym_for] = ACTIONS(283), + [anon_sym_if] = ACTIONS(283), + [anon_sym_else] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_return] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(283), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_SLASH] = ACTIONS(285), + [anon_sym_switch] = ACTIONS(283), + [anon_sym_case] = ACTIONS(283), + [anon_sym_default] = ACTIONS(283), + [anon_sym_QMARK] = ACTIONS(283), + [anon_sym_try] = ACTIONS(283), + [anon_sym_int] = ACTIONS(283), + [anon_sym_boolean] = ACTIONS(283), + [anon_sym_char] = ACTIONS(283), + [anon_sym_short] = ACTIONS(283), + [anon_sym_long] = ACTIONS(283), + [anon_sym_float] = ACTIONS(283), + [anon_sym_double] = ACTIONS(283), + [anon_sym_void] = ACTIONS(283), + [anon_sym_public] = ACTIONS(283), + [anon_sym_protected] = ACTIONS(283), + [anon_sym_private] = ACTIONS(283), + [anon_sym_static] = ACTIONS(283), + [anon_sym_final] = ACTIONS(283), + [anon_sym_synchronized] = ACTIONS(283), + }, + [227] = { + [sym_comment] = STATE(227), + [sym_groovy_doc] = STATE(227), + [ts_builtin_sym_end] = ACTIONS(93), + [sym_identifier] = ACTIONS(99), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_DOT_AMP] = ACTIONS(93), + [anon_sym_DOT_AT] = ACTIONS(93), + [anon_sym_QMARK_DOT] = ACTIONS(93), + [anon_sym_STAR_DOT] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(97), + [anon_sym_import] = ACTIONS(99), + [anon_sym_as] = ACTIONS(99), + [anon_sym_package] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(93), + [anon_sym_SLASH] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(99), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_LT_LT] = ACTIONS(93), + [anon_sym_GT_GT] = ACTIONS(99), + [anon_sym_GT_GT_GT] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(99), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_in] = ACTIONS(99), + [anon_sym_BANGin] = ACTIONS(99), + [anon_sym_instanceof] = ACTIONS(99), + [anon_sym_BANGinstanceof] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_LT_EQ_GT] = ACTIONS(93), + [anon_sym_EQ_EQ_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ_EQ] = ACTIONS(93), + [anon_sym_EQ_TILDE] = ACTIONS(93), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(99), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(93), + [anon_sym_ATinterface] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(99), + [anon_sym_class] = ACTIONS(99), + [anon_sym_COMMA] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(93), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(99), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(99), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(99), + [anon_sym_if] = ACTIONS(99), + [anon_sym_else] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(101), + [anon_sym_pipeline] = ACTIONS(99), + [anon_sym_return] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_SLASH] = ACTIONS(93), + [anon_sym_switch] = ACTIONS(99), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(99), + [anon_sym_finally] = ACTIONS(99), + [anon_sym_int] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_char] = ACTIONS(99), + [anon_sym_short] = ACTIONS(99), + [anon_sym_long] = ACTIONS(99), + [anon_sym_float] = ACTIONS(99), + [anon_sym_double] = ACTIONS(99), + [anon_sym_void] = ACTIONS(99), + [anon_sym_public] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_static] = ACTIONS(99), + [anon_sym_final] = ACTIONS(99), + [anon_sym_synchronized] = ACTIONS(99), + }, + [228] = { + [sym_comment] = STATE(228), + [sym_groovy_doc] = STATE(228), + [ts_builtin_sym_end] = ACTIONS(75), + [sym_identifier] = ACTIONS(73), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_DOT_AMP] = ACTIONS(75), + [anon_sym_DOT_AT] = ACTIONS(75), + [anon_sym_QMARK_DOT] = ACTIONS(75), + [anon_sym_STAR_DOT] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(73), + [anon_sym_DOT] = ACTIONS(73), + [anon_sym_import] = ACTIONS(73), + [anon_sym_as] = ACTIONS(73), + [anon_sym_package] = ACTIONS(73), + [anon_sym_AT] = ACTIONS(73), + [anon_sym_assert] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_LT_LT] = ACTIONS(75), + [anon_sym_GT_GT] = ACTIONS(73), + [anon_sym_GT_GT_GT] = ACTIONS(75), + [anon_sym_DOT_DOT] = ACTIONS(73), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(75), + [anon_sym_LT_DOT_DOT] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(73), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(73), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_in] = ACTIONS(73), + [anon_sym_BANGin] = ACTIONS(73), + [anon_sym_instanceof] = ACTIONS(73), + [anon_sym_BANGinstanceof] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT_EQ_GT] = ACTIONS(75), + [anon_sym_EQ_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ_EQ] = ACTIONS(75), + [anon_sym_EQ_TILDE] = ACTIONS(75), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(73), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(73), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_QMARK_COLON] = ACTIONS(75), + [anon_sym_STAR_STAR] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_class] = ACTIONS(73), + [anon_sym_COMMA] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(75), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_do] = ACTIONS(73), + [anon_sym_while] = ACTIONS(73), + [anon_sym_for] = ACTIONS(73), + [anon_sym_if] = ACTIONS(73), + [anon_sym_else] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_pipeline] = ACTIONS(73), + [anon_sym_return] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(75), + [anon_sym_DOLLAR_SLASH] = ACTIONS(75), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_QMARK] = ACTIONS(73), + [anon_sym_try] = ACTIONS(73), + [anon_sym_catch] = ACTIONS(73), + [anon_sym_finally] = ACTIONS(73), + [anon_sym_int] = ACTIONS(73), + [anon_sym_boolean] = ACTIONS(73), + [anon_sym_char] = ACTIONS(73), + [anon_sym_short] = ACTIONS(73), + [anon_sym_long] = ACTIONS(73), + [anon_sym_float] = ACTIONS(73), + [anon_sym_double] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_public] = ACTIONS(73), + [anon_sym_protected] = ACTIONS(73), + [anon_sym_private] = ACTIONS(73), + [anon_sym_static] = ACTIONS(73), + [anon_sym_final] = ACTIONS(73), + [anon_sym_synchronized] = ACTIONS(73), + }, + [229] = { + [sym_comment] = STATE(229), + [sym_groovy_doc] = STATE(229), + [ts_builtin_sym_end] = ACTIONS(285), + [sym_identifier] = ACTIONS(283), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOT_AMP] = ACTIONS(285), + [anon_sym_DOT_AT] = ACTIONS(285), + [anon_sym_QMARK_DOT] = ACTIONS(285), + [anon_sym_STAR_DOT] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(283), + [anon_sym_DOT] = ACTIONS(283), + [anon_sym_import] = ACTIONS(283), + [anon_sym_DOT_STAR] = ACTIONS(285), + [anon_sym_as] = ACTIONS(283), + [anon_sym_package] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [anon_sym_assert] = ACTIONS(283), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_PERCENT] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(283), + [anon_sym_DASH] = ACTIONS(283), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(283), + [anon_sym_GT_GT_GT] = ACTIONS(285), + [anon_sym_DOT_DOT] = ACTIONS(283), + [anon_sym_DOT_DOT_LT] = ACTIONS(285), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(285), + [anon_sym_LT_DOT_DOT] = ACTIONS(283), + [anon_sym_LT] = ACTIONS(283), + [anon_sym_LT_EQ] = ACTIONS(283), + [anon_sym_GT] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_in] = ACTIONS(283), + [anon_sym_BANGin] = ACTIONS(283), + [anon_sym_instanceof] = ACTIONS(283), + [anon_sym_BANGinstanceof] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(283), + [anon_sym_BANG_EQ] = ACTIONS(283), + [anon_sym_LT_EQ_GT] = ACTIONS(285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(283), + [anon_sym_CARET] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_QMARK_COLON] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(285), + [anon_sym_ATinterface] = ACTIONS(285), + [anon_sym_interface] = ACTIONS(283), + [anon_sym_class] = ACTIONS(283), + [anon_sym_COMMA] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_RPAREN] = ACTIONS(285), + [anon_sym_do] = ACTIONS(283), + [anon_sym_while] = ACTIONS(283), + [anon_sym_for] = ACTIONS(283), + [anon_sym_if] = ACTIONS(283), + [anon_sym_else] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_pipeline] = ACTIONS(283), + [anon_sym_return] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(283), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_SLASH] = ACTIONS(285), + [anon_sym_switch] = ACTIONS(283), + [anon_sym_QMARK] = ACTIONS(283), + [anon_sym_try] = ACTIONS(283), + [anon_sym_int] = ACTIONS(283), + [anon_sym_boolean] = ACTIONS(283), + [anon_sym_char] = ACTIONS(283), + [anon_sym_short] = ACTIONS(283), + [anon_sym_long] = ACTIONS(283), + [anon_sym_float] = ACTIONS(283), + [anon_sym_double] = ACTIONS(283), + [anon_sym_void] = ACTIONS(283), + [anon_sym_public] = ACTIONS(283), + [anon_sym_protected] = ACTIONS(283), + [anon_sym_private] = ACTIONS(283), + [anon_sym_static] = ACTIONS(283), + [anon_sym_final] = ACTIONS(283), + [anon_sym_synchronized] = ACTIONS(283), + }, + [230] = { + [sym_comment] = STATE(230), + [sym_groovy_doc] = STATE(230), + [ts_builtin_sym_end] = ACTIONS(277), + [sym_identifier] = ACTIONS(275), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_DOT_AMP] = ACTIONS(277), + [anon_sym_DOT_AT] = ACTIONS(277), + [anon_sym_QMARK_DOT] = ACTIONS(277), + [anon_sym_STAR_DOT] = ACTIONS(277), + [anon_sym_STAR] = ACTIONS(275), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_import] = ACTIONS(275), + [anon_sym_as] = ACTIONS(275), + [anon_sym_package] = ACTIONS(275), + [anon_sym_AT] = ACTIONS(275), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_PLUS_PLUS] = ACTIONS(277), + [anon_sym_DASH_DASH] = ACTIONS(277), + [anon_sym_PERCENT] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_PLUS] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_GT_GT] = ACTIONS(275), + [anon_sym_GT_GT_GT] = ACTIONS(277), + [anon_sym_DOT_DOT] = ACTIONS(275), + [anon_sym_DOT_DOT_LT] = ACTIONS(277), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(277), + [anon_sym_LT_DOT_DOT] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_LT_EQ] = ACTIONS(275), + [anon_sym_GT] = ACTIONS(275), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_in] = ACTIONS(275), + [anon_sym_BANGin] = ACTIONS(275), + [anon_sym_instanceof] = ACTIONS(275), + [anon_sym_BANGinstanceof] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_LT_EQ_GT] = ACTIONS(277), + [anon_sym_EQ_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ_EQ] = ACTIONS(277), + [anon_sym_EQ_TILDE] = ACTIONS(277), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(277), + [anon_sym_AMP] = ACTIONS(275), + [anon_sym_CARET] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(275), + [anon_sym_AMP_AMP] = ACTIONS(277), + [anon_sym_PIPE_PIPE] = ACTIONS(277), + [anon_sym_QMARK_COLON] = ACTIONS(277), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_ATinterface] = ACTIONS(277), + [anon_sym_interface] = ACTIONS(275), + [anon_sym_class] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(277), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(277), + [anon_sym_do] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(275), + [anon_sym_else] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_pipeline] = ACTIONS(275), + [anon_sym_return] = ACTIONS(275), + [anon_sym_SQUOTE] = ACTIONS(275), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(277), + [anon_sym_DQUOTE] = ACTIONS(275), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(277), + [anon_sym_DOLLAR_SLASH] = ACTIONS(277), + [anon_sym_switch] = ACTIONS(275), + [anon_sym_QMARK] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_int] = ACTIONS(275), + [anon_sym_boolean] = ACTIONS(275), + [anon_sym_char] = ACTIONS(275), + [anon_sym_short] = ACTIONS(275), + [anon_sym_long] = ACTIONS(275), + [anon_sym_float] = ACTIONS(275), + [anon_sym_double] = ACTIONS(275), + [anon_sym_void] = ACTIONS(275), + [anon_sym_public] = ACTIONS(275), + [anon_sym_protected] = ACTIONS(275), + [anon_sym_private] = ACTIONS(275), + [anon_sym_static] = ACTIONS(275), + [anon_sym_final] = ACTIONS(275), + [anon_sym_synchronized] = ACTIONS(275), + }, + [231] = { + [sym_comment] = STATE(231), + [sym_groovy_doc] = STATE(231), + [sym_argument_list] = STATE(252), + [sym_identifier] = ACTIONS(259), + [anon_sym_break] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(259), + [anon_sym_SEMI] = ACTIONS(261), + [anon_sym_DOT_AMP] = ACTIONS(261), + [anon_sym_DOT_AT] = ACTIONS(261), + [anon_sym_QMARK_DOT] = ACTIONS(261), + [anon_sym_STAR_DOT] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(259), + [anon_sym_DOT] = ACTIONS(634), + [anon_sym_import] = ACTIONS(259), + [anon_sym_as] = ACTIONS(259), + [anon_sym_package] = ACTIONS(259), + [anon_sym_AT] = ACTIONS(259), + [anon_sym_assert] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(261), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_GT_GT_GT] = ACTIONS(261), + [anon_sym_DOT_DOT] = ACTIONS(259), + [anon_sym_DOT_DOT_LT] = ACTIONS(261), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(261), + [anon_sym_LT_DOT_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(259), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_GT_EQ] = ACTIONS(261), + [anon_sym_in] = ACTIONS(259), + [anon_sym_BANGin] = ACTIONS(259), + [anon_sym_instanceof] = ACTIONS(259), + [anon_sym_BANGinstanceof] = ACTIONS(261), + [anon_sym_EQ_EQ] = ACTIONS(259), + [anon_sym_BANG_EQ] = ACTIONS(259), + [anon_sym_LT_EQ_GT] = ACTIONS(261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(261), + [anon_sym_BANG_EQ_EQ] = ACTIONS(261), + [anon_sym_EQ_TILDE] = ACTIONS(261), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_CARET] = ACTIONS(261), + [anon_sym_PIPE] = ACTIONS(259), + [anon_sym_AMP_AMP] = ACTIONS(261), + [anon_sym_PIPE_PIPE] = ACTIONS(261), + [anon_sym_QMARK_COLON] = ACTIONS(261), + [anon_sym_STAR_STAR] = ACTIONS(261), + [anon_sym_ATinterface] = ACTIONS(261), + [anon_sym_interface] = ACTIONS(259), + [anon_sym_class] = ACTIONS(259), + [anon_sym_COMMA] = ACTIONS(261), + [anon_sym_LBRACE] = ACTIONS(261), + [anon_sym_RBRACE] = ACTIONS(261), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(259), + [anon_sym_LPAREN] = ACTIONS(636), + [anon_sym_do] = ACTIONS(259), + [anon_sym_while] = ACTIONS(259), + [anon_sym_for] = ACTIONS(259), + [anon_sym_if] = ACTIONS(259), + [anon_sym_else] = ACTIONS(259), + [anon_sym_LBRACK] = ACTIONS(638), + [anon_sym_return] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(261), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_SLASH] = ACTIONS(261), + [anon_sym_switch] = ACTIONS(259), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(259), + [anon_sym_QMARK] = ACTIONS(259), + [anon_sym_try] = ACTIONS(259), + [anon_sym_int] = ACTIONS(259), + [anon_sym_boolean] = ACTIONS(259), + [anon_sym_char] = ACTIONS(259), + [anon_sym_short] = ACTIONS(259), + [anon_sym_long] = ACTIONS(259), + [anon_sym_float] = ACTIONS(259), + [anon_sym_double] = ACTIONS(259), + [anon_sym_void] = ACTIONS(259), + [anon_sym_public] = ACTIONS(259), + [anon_sym_protected] = ACTIONS(259), + [anon_sym_private] = ACTIONS(259), + [anon_sym_static] = ACTIONS(259), + [anon_sym_final] = ACTIONS(259), + [anon_sym_synchronized] = ACTIONS(259), + }, + [232] = { + [sym_comment] = STATE(232), + [sym_groovy_doc] = STATE(232), + [ts_builtin_sym_end] = ACTIONS(87), + [sym_identifier] = ACTIONS(85), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(87), + [anon_sym_DOT_AMP] = ACTIONS(87), + [anon_sym_DOT_AT] = ACTIONS(87), + [anon_sym_QMARK_DOT] = ACTIONS(87), + [anon_sym_STAR_DOT] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_import] = ACTIONS(85), + [anon_sym_as] = ACTIONS(85), + [anon_sym_package] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_assert] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(87), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(87), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(87), + [anon_sym_LT_DOT_DOT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(87), + [anon_sym_in] = ACTIONS(85), + [anon_sym_BANGin] = ACTIONS(85), + [anon_sym_instanceof] = ACTIONS(85), + [anon_sym_BANGinstanceof] = ACTIONS(87), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_LT_EQ_GT] = ACTIONS(87), + [anon_sym_EQ_EQ_EQ] = ACTIONS(87), + [anon_sym_BANG_EQ_EQ] = ACTIONS(87), + [anon_sym_EQ_TILDE] = ACTIONS(87), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_CARET] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(87), + [anon_sym_PIPE_PIPE] = ACTIONS(87), + [anon_sym_QMARK_COLON] = ACTIONS(87), + [anon_sym_STAR_STAR] = ACTIONS(87), + [anon_sym_ATinterface] = ACTIONS(87), + [anon_sym_interface] = ACTIONS(85), + [anon_sym_class] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(87), + [anon_sym_LBRACE] = ACTIONS(87), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_do] = ACTIONS(85), + [anon_sym_while] = ACTIONS(85), + [anon_sym_for] = ACTIONS(85), + [anon_sym_if] = ACTIONS(85), + [anon_sym_else] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_pipeline] = ACTIONS(85), + [anon_sym_return] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_DOLLAR_SLASH] = ACTIONS(87), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_QMARK] = ACTIONS(85), + [anon_sym_try] = ACTIONS(85), + [anon_sym_catch] = ACTIONS(85), + [anon_sym_finally] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_boolean] = ACTIONS(85), + [anon_sym_char] = ACTIONS(85), + [anon_sym_short] = ACTIONS(85), + [anon_sym_long] = ACTIONS(85), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [anon_sym_void] = ACTIONS(85), + [anon_sym_public] = ACTIONS(85), + [anon_sym_protected] = ACTIONS(85), + [anon_sym_private] = ACTIONS(85), + [anon_sym_static] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_synchronized] = ACTIONS(85), + }, + [233] = { + [sym_comment] = STATE(233), + [sym_groovy_doc] = STATE(233), + [ts_builtin_sym_end] = ACTIONS(281), + [sym_identifier] = ACTIONS(279), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(281), + [anon_sym_DOT_AMP] = ACTIONS(281), + [anon_sym_DOT_AT] = ACTIONS(281), + [anon_sym_QMARK_DOT] = ACTIONS(281), + [anon_sym_STAR_DOT] = ACTIONS(281), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_DOT] = ACTIONS(279), + [anon_sym_import] = ACTIONS(279), + [anon_sym_as] = ACTIONS(279), + [anon_sym_package] = ACTIONS(279), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(279), + [anon_sym_PLUS_PLUS] = ACTIONS(281), + [anon_sym_DASH_DASH] = ACTIONS(281), + [anon_sym_PERCENT] = ACTIONS(281), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_LT_LT] = ACTIONS(281), + [anon_sym_GT_GT] = ACTIONS(279), + [anon_sym_GT_GT_GT] = ACTIONS(281), + [anon_sym_DOT_DOT] = ACTIONS(279), + [anon_sym_DOT_DOT_LT] = ACTIONS(281), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(281), + [anon_sym_LT_DOT_DOT] = ACTIONS(279), + [anon_sym_LT] = ACTIONS(279), + [anon_sym_LT_EQ] = ACTIONS(279), + [anon_sym_GT] = ACTIONS(279), + [anon_sym_GT_EQ] = ACTIONS(281), + [anon_sym_in] = ACTIONS(279), + [anon_sym_BANGin] = ACTIONS(279), + [anon_sym_instanceof] = ACTIONS(279), + [anon_sym_BANGinstanceof] = ACTIONS(281), + [anon_sym_EQ_EQ] = ACTIONS(279), + [anon_sym_BANG_EQ] = ACTIONS(279), + [anon_sym_LT_EQ_GT] = ACTIONS(281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(281), + [anon_sym_EQ_TILDE] = ACTIONS(281), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(279), + [anon_sym_CARET] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(279), + [anon_sym_AMP_AMP] = ACTIONS(281), + [anon_sym_PIPE_PIPE] = ACTIONS(281), + [anon_sym_QMARK_COLON] = ACTIONS(281), + [anon_sym_STAR_STAR] = ACTIONS(281), + [anon_sym_ATinterface] = ACTIONS(281), + [anon_sym_interface] = ACTIONS(279), + [anon_sym_class] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(281), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(281), + [anon_sym_do] = ACTIONS(279), + [anon_sym_while] = ACTIONS(279), + [anon_sym_for] = ACTIONS(279), + [anon_sym_if] = ACTIONS(279), + [anon_sym_else] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(281), + [anon_sym_pipeline] = ACTIONS(279), + [anon_sym_return] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(279), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(281), + [anon_sym_DQUOTE] = ACTIONS(279), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [anon_sym_DOLLAR_SLASH] = ACTIONS(281), + [anon_sym_switch] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(279), + [anon_sym_try] = ACTIONS(279), + [anon_sym_catch] = ACTIONS(279), + [anon_sym_finally] = ACTIONS(279), + [anon_sym_int] = ACTIONS(279), + [anon_sym_boolean] = ACTIONS(279), + [anon_sym_char] = ACTIONS(279), + [anon_sym_short] = ACTIONS(279), + [anon_sym_long] = ACTIONS(279), + [anon_sym_float] = ACTIONS(279), + [anon_sym_double] = ACTIONS(279), + [anon_sym_void] = ACTIONS(279), + [anon_sym_public] = ACTIONS(279), + [anon_sym_protected] = ACTIONS(279), + [anon_sym_private] = ACTIONS(279), + [anon_sym_static] = ACTIONS(279), + [anon_sym_final] = ACTIONS(279), + [anon_sym_synchronized] = ACTIONS(279), + }, + [234] = { + [sym_comment] = STATE(234), + [sym_groovy_doc] = STATE(234), + [ts_builtin_sym_end] = ACTIONS(337), + [sym_identifier] = ACTIONS(335), + [anon_sym_break] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(335), + [anon_sym_SEMI] = ACTIONS(337), + [anon_sym_DOT_AMP] = ACTIONS(337), + [anon_sym_DOT_AT] = ACTIONS(337), + [anon_sym_QMARK_DOT] = ACTIONS(337), + [anon_sym_STAR_DOT] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(335), + [anon_sym_DOT] = ACTIONS(335), + [anon_sym_import] = ACTIONS(335), + [anon_sym_as] = ACTIONS(335), + [anon_sym_package] = ACTIONS(335), + [anon_sym_AT] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(337), + [anon_sym_DASH_DASH] = ACTIONS(337), + [anon_sym_PERCENT] = ACTIONS(337), + [anon_sym_SLASH] = ACTIONS(335), + [anon_sym_PLUS] = ACTIONS(335), + [anon_sym_DASH] = ACTIONS(335), + [anon_sym_LT_LT] = ACTIONS(337), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_GT_GT_GT] = ACTIONS(337), + [anon_sym_DOT_DOT] = ACTIONS(335), + [anon_sym_DOT_DOT_LT] = ACTIONS(337), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(337), + [anon_sym_LT_DOT_DOT] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_LT_EQ] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(335), + [anon_sym_GT_EQ] = ACTIONS(337), + [anon_sym_in] = ACTIONS(335), + [anon_sym_BANGin] = ACTIONS(335), + [anon_sym_instanceof] = ACTIONS(335), + [anon_sym_BANGinstanceof] = ACTIONS(337), + [anon_sym_EQ_EQ] = ACTIONS(335), + [anon_sym_BANG_EQ] = ACTIONS(335), + [anon_sym_LT_EQ_GT] = ACTIONS(337), + [anon_sym_EQ_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ_EQ] = ACTIONS(337), + [anon_sym_EQ_TILDE] = ACTIONS(337), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(335), + [anon_sym_CARET] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(335), + [anon_sym_AMP_AMP] = ACTIONS(337), + [anon_sym_PIPE_PIPE] = ACTIONS(337), + [anon_sym_QMARK_COLON] = ACTIONS(337), + [anon_sym_STAR_STAR] = ACTIONS(337), + [anon_sym_ATinterface] = ACTIONS(337), + [anon_sym_interface] = ACTIONS(335), + [anon_sym_class] = ACTIONS(335), + [anon_sym_COMMA] = ACTIONS(337), + [anon_sym_LBRACE] = ACTIONS(337), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_do] = ACTIONS(335), + [anon_sym_while] = ACTIONS(335), + [anon_sym_for] = ACTIONS(335), + [anon_sym_if] = ACTIONS(335), + [anon_sym_else] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_pipeline] = ACTIONS(335), + [anon_sym_return] = ACTIONS(335), + [anon_sym_SQUOTE] = ACTIONS(335), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(337), + [anon_sym_DQUOTE] = ACTIONS(335), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(337), + [anon_sym_DOLLAR_SLASH] = ACTIONS(337), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_QMARK] = ACTIONS(335), + [anon_sym_try] = ACTIONS(335), + [anon_sym_catch] = ACTIONS(335), + [anon_sym_finally] = ACTIONS(335), + [anon_sym_int] = ACTIONS(335), + [anon_sym_boolean] = ACTIONS(335), + [anon_sym_char] = ACTIONS(335), + [anon_sym_short] = ACTIONS(335), + [anon_sym_long] = ACTIONS(335), + [anon_sym_float] = ACTIONS(335), + [anon_sym_double] = ACTIONS(335), + [anon_sym_void] = ACTIONS(335), + [anon_sym_public] = ACTIONS(335), + [anon_sym_protected] = ACTIONS(335), + [anon_sym_private] = ACTIONS(335), + [anon_sym_static] = ACTIONS(335), + [anon_sym_final] = ACTIONS(335), + [anon_sym_synchronized] = ACTIONS(335), + }, + [235] = { + [sym_comment] = STATE(235), + [sym_groovy_doc] = STATE(235), + [sym_identifier] = ACTIONS(99), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_DOT_AMP] = ACTIONS(93), + [anon_sym_DOT_AT] = ACTIONS(93), + [anon_sym_QMARK_DOT] = ACTIONS(93), + [anon_sym_STAR_DOT] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(97), + [anon_sym_import] = ACTIONS(99), + [anon_sym_as] = ACTIONS(99), + [anon_sym_package] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(93), + [anon_sym_SLASH] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(99), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_LT_LT] = ACTIONS(93), + [anon_sym_GT_GT] = ACTIONS(99), + [anon_sym_GT_GT_GT] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(99), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_in] = ACTIONS(99), + [anon_sym_BANGin] = ACTIONS(99), + [anon_sym_instanceof] = ACTIONS(99), + [anon_sym_BANGinstanceof] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_LT_EQ_GT] = ACTIONS(93), + [anon_sym_EQ_EQ_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ_EQ] = ACTIONS(93), + [anon_sym_EQ_TILDE] = ACTIONS(93), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(99), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(93), + [anon_sym_ATinterface] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(99), + [anon_sym_class] = ACTIONS(99), + [anon_sym_COMMA] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_RBRACE] = ACTIONS(93), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(99), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(99), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(99), + [anon_sym_if] = ACTIONS(99), + [anon_sym_else] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(101), + [anon_sym_COLON] = ACTIONS(640), + [anon_sym_return] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_SLASH] = ACTIONS(93), + [anon_sym_switch] = ACTIONS(99), + [anon_sym_case] = ACTIONS(99), + [anon_sym_default] = ACTIONS(99), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_int] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_char] = ACTIONS(99), + [anon_sym_short] = ACTIONS(99), + [anon_sym_long] = ACTIONS(99), + [anon_sym_float] = ACTIONS(99), + [anon_sym_double] = ACTIONS(99), + [anon_sym_void] = ACTIONS(99), + [anon_sym_public] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_static] = ACTIONS(99), + [anon_sym_final] = ACTIONS(99), + [anon_sym_synchronized] = ACTIONS(99), + }, + [236] = { + [sym_comment] = STATE(236), + [sym_groovy_doc] = STATE(236), + [ts_builtin_sym_end] = ACTIONS(79), + [sym_identifier] = ACTIONS(77), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_DOT_AMP] = ACTIONS(79), + [anon_sym_DOT_AT] = ACTIONS(79), + [anon_sym_QMARK_DOT] = ACTIONS(79), + [anon_sym_STAR_DOT] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_import] = ACTIONS(77), + [anon_sym_as] = ACTIONS(77), + [anon_sym_package] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_assert] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_LT_LT] = ACTIONS(79), + [anon_sym_GT_GT] = ACTIONS(77), + [anon_sym_GT_GT_GT] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(77), + [anon_sym_DOT_DOT_LT] = ACTIONS(79), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(79), + [anon_sym_LT_DOT_DOT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(79), + [anon_sym_in] = ACTIONS(77), + [anon_sym_BANGin] = ACTIONS(77), + [anon_sym_instanceof] = ACTIONS(77), + [anon_sym_BANGinstanceof] = ACTIONS(79), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_LT_EQ_GT] = ACTIONS(79), + [anon_sym_EQ_EQ_EQ] = ACTIONS(79), + [anon_sym_BANG_EQ_EQ] = ACTIONS(79), + [anon_sym_EQ_TILDE] = ACTIONS(79), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_CARET] = ACTIONS(79), + [anon_sym_PIPE] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(79), + [anon_sym_PIPE_PIPE] = ACTIONS(79), + [anon_sym_QMARK_COLON] = ACTIONS(79), + [anon_sym_STAR_STAR] = ACTIONS(79), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_class] = ACTIONS(77), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(77), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_do] = ACTIONS(77), + [anon_sym_while] = ACTIONS(77), + [anon_sym_for] = ACTIONS(77), + [anon_sym_if] = ACTIONS(77), + [anon_sym_else] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(79), + [anon_sym_pipeline] = ACTIONS(77), + [anon_sym_return] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(77), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR_SLASH] = ACTIONS(79), + [anon_sym_switch] = ACTIONS(77), + [anon_sym_QMARK] = ACTIONS(77), + [anon_sym_try] = ACTIONS(77), + [anon_sym_catch] = ACTIONS(77), + [anon_sym_finally] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_boolean] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [anon_sym_void] = ACTIONS(77), + [anon_sym_public] = ACTIONS(77), + [anon_sym_protected] = ACTIONS(77), + [anon_sym_private] = ACTIONS(77), + [anon_sym_static] = ACTIONS(77), + [anon_sym_final] = ACTIONS(77), + [anon_sym_synchronized] = ACTIONS(77), + }, + [237] = { + [sym_comment] = STATE(237), + [sym_groovy_doc] = STATE(237), + [sym_identifier] = ACTIONS(81), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_DOT_AMP] = ACTIONS(83), + [anon_sym_DOT_AT] = ACTIONS(83), + [anon_sym_QMARK_DOT] = ACTIONS(83), + [anon_sym_STAR_DOT] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_import] = ACTIONS(81), + [anon_sym_as] = ACTIONS(81), + [anon_sym_package] = ACTIONS(81), + [anon_sym_AT] = ACTIONS(81), + [anon_sym_assert] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(83), + [anon_sym_GT_GT] = ACTIONS(81), + [anon_sym_GT_GT_GT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DOT_DOT_LT] = ACTIONS(83), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(83), + [anon_sym_LT_DOT_DOT] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_GT_EQ] = ACTIONS(83), + [anon_sym_in] = ACTIONS(81), + [anon_sym_BANGin] = ACTIONS(81), + [anon_sym_instanceof] = ACTIONS(81), + [anon_sym_BANGinstanceof] = ACTIONS(83), + [anon_sym_EQ_EQ] = ACTIONS(81), + [anon_sym_BANG_EQ] = ACTIONS(81), + [anon_sym_LT_EQ_GT] = ACTIONS(83), + [anon_sym_EQ_EQ_EQ] = ACTIONS(83), + [anon_sym_BANG_EQ_EQ] = ACTIONS(83), + [anon_sym_EQ_TILDE] = ACTIONS(83), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(83), + [anon_sym_PIPE] = ACTIONS(81), + [anon_sym_AMP_AMP] = ACTIONS(83), + [anon_sym_PIPE_PIPE] = ACTIONS(83), + [anon_sym_QMARK_COLON] = ACTIONS(83), + [anon_sym_STAR_STAR] = ACTIONS(83), + [anon_sym_ATinterface] = ACTIONS(83), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_RBRACE] = ACTIONS(83), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_do] = ACTIONS(81), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(81), + [anon_sym_if] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_return] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_SLASH] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(81), + [anon_sym_default] = ACTIONS(81), + [anon_sym_QMARK] = ACTIONS(81), + [anon_sym_try] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_boolean] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_float] = ACTIONS(81), + [anon_sym_double] = ACTIONS(81), + [anon_sym_void] = ACTIONS(81), + [anon_sym_public] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_static] = ACTIONS(81), + [anon_sym_final] = ACTIONS(81), + [anon_sym_synchronized] = ACTIONS(81), + }, + [238] = { + [sym_comment] = STATE(238), + [sym_groovy_doc] = STATE(238), + [sym_identifier] = ACTIONS(339), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(341), + [anon_sym_DOT_AMP] = ACTIONS(341), + [anon_sym_DOT_AT] = ACTIONS(341), + [anon_sym_QMARK_DOT] = ACTIONS(341), + [anon_sym_STAR_DOT] = ACTIONS(341), + [anon_sym_STAR] = ACTIONS(339), + [anon_sym_DOT] = ACTIONS(339), + [anon_sym_import] = ACTIONS(339), + [anon_sym_as] = ACTIONS(339), + [anon_sym_package] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(339), + [anon_sym_assert] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_PERCENT] = ACTIONS(341), + [anon_sym_SLASH] = ACTIONS(339), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_GT_GT_GT] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(339), + [anon_sym_DOT_DOT_LT] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(341), + [anon_sym_LT_DOT_DOT] = ACTIONS(339), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_in] = ACTIONS(339), + [anon_sym_BANGin] = ACTIONS(339), + [anon_sym_instanceof] = ACTIONS(339), + [anon_sym_BANGinstanceof] = ACTIONS(341), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_LT_EQ_GT] = ACTIONS(341), + [anon_sym_EQ_EQ_EQ] = ACTIONS(341), + [anon_sym_BANG_EQ_EQ] = ACTIONS(341), + [anon_sym_EQ_TILDE] = ACTIONS(341), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(339), + [anon_sym_CARET] = ACTIONS(341), + [anon_sym_PIPE] = ACTIONS(339), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_QMARK_COLON] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(341), + [anon_sym_ATinterface] = ACTIONS(341), + [anon_sym_interface] = ACTIONS(339), + [anon_sym_class] = ACTIONS(339), + [anon_sym_COMMA] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(341), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_do] = ACTIONS(339), + [anon_sym_while] = ACTIONS(339), + [anon_sym_for] = ACTIONS(339), + [anon_sym_if] = ACTIONS(339), + [anon_sym_else] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_return] = ACTIONS(339), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(341), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(341), + [anon_sym_DOLLAR_SLASH] = ACTIONS(341), + [anon_sym_switch] = ACTIONS(339), + [anon_sym_case] = ACTIONS(339), + [anon_sym_default] = ACTIONS(339), + [anon_sym_QMARK] = ACTIONS(339), + [anon_sym_try] = ACTIONS(339), + [anon_sym_int] = ACTIONS(339), + [anon_sym_boolean] = ACTIONS(339), + [anon_sym_char] = ACTIONS(339), + [anon_sym_short] = ACTIONS(339), + [anon_sym_long] = ACTIONS(339), + [anon_sym_float] = ACTIONS(339), + [anon_sym_double] = ACTIONS(339), + [anon_sym_void] = ACTIONS(339), + [anon_sym_public] = ACTIONS(339), + [anon_sym_protected] = ACTIONS(339), + [anon_sym_private] = ACTIONS(339), + [anon_sym_static] = ACTIONS(339), + [anon_sym_final] = ACTIONS(339), + [anon_sym_synchronized] = ACTIONS(339), + }, + [239] = { + [sym_comment] = STATE(239), + [sym_groovy_doc] = STATE(239), + [ts_builtin_sym_end] = ACTIONS(87), + [sym_identifier] = ACTIONS(85), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(87), + [anon_sym_DOT_AMP] = ACTIONS(87), + [anon_sym_DOT_AT] = ACTIONS(87), + [anon_sym_QMARK_DOT] = ACTIONS(87), + [anon_sym_STAR_DOT] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_import] = ACTIONS(85), + [anon_sym_as] = ACTIONS(85), + [anon_sym_package] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_assert] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(87), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(87), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(87), + [anon_sym_LT_DOT_DOT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(87), + [anon_sym_in] = ACTIONS(85), + [anon_sym_BANGin] = ACTIONS(85), + [anon_sym_instanceof] = ACTIONS(85), + [anon_sym_BANGinstanceof] = ACTIONS(87), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_LT_EQ_GT] = ACTIONS(87), + [anon_sym_EQ_EQ_EQ] = ACTIONS(87), + [anon_sym_BANG_EQ_EQ] = ACTIONS(87), + [anon_sym_EQ_TILDE] = ACTIONS(87), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_CARET] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(87), + [anon_sym_PIPE_PIPE] = ACTIONS(87), + [anon_sym_QMARK_COLON] = ACTIONS(87), + [anon_sym_STAR_STAR] = ACTIONS(87), + [anon_sym_ATinterface] = ACTIONS(87), + [anon_sym_interface] = ACTIONS(85), + [anon_sym_class] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(87), + [anon_sym_LBRACE] = ACTIONS(87), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_RPAREN] = ACTIONS(87), + [anon_sym_do] = ACTIONS(85), + [anon_sym_while] = ACTIONS(85), + [anon_sym_for] = ACTIONS(85), + [anon_sym_if] = ACTIONS(85), + [anon_sym_else] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_pipeline] = ACTIONS(85), + [anon_sym_return] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_DOLLAR_SLASH] = ACTIONS(87), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_QMARK] = ACTIONS(85), + [anon_sym_try] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_boolean] = ACTIONS(85), + [anon_sym_char] = ACTIONS(85), + [anon_sym_short] = ACTIONS(85), + [anon_sym_long] = ACTIONS(85), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [anon_sym_void] = ACTIONS(85), + [anon_sym_public] = ACTIONS(85), + [anon_sym_protected] = ACTIONS(85), + [anon_sym_private] = ACTIONS(85), + [anon_sym_static] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_synchronized] = ACTIONS(85), + }, + [240] = { + [sym_comment] = STATE(240), + [sym_groovy_doc] = STATE(240), + [ts_builtin_sym_end] = ACTIONS(101), + [sym_identifier] = ACTIONS(97), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(101), + [anon_sym_DOT_AMP] = ACTIONS(101), + [anon_sym_DOT_AT] = ACTIONS(101), + [anon_sym_QMARK_DOT] = ACTIONS(101), + [anon_sym_STAR_DOT] = ACTIONS(101), + [anon_sym_STAR] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(97), + [anon_sym_import] = ACTIONS(97), + [anon_sym_as] = ACTIONS(97), + [anon_sym_package] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_assert] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(97), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(97), + [anon_sym_GT_GT_GT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(97), + [anon_sym_DOT_DOT_LT] = ACTIONS(101), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(101), + [anon_sym_LT_DOT_DOT] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(97), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(101), + [anon_sym_in] = ACTIONS(97), + [anon_sym_BANGin] = ACTIONS(97), + [anon_sym_instanceof] = ACTIONS(97), + [anon_sym_BANGinstanceof] = ACTIONS(101), + [anon_sym_EQ_EQ] = ACTIONS(97), + [anon_sym_BANG_EQ] = ACTIONS(97), + [anon_sym_LT_EQ_GT] = ACTIONS(101), + [anon_sym_EQ_EQ_EQ] = ACTIONS(101), + [anon_sym_BANG_EQ_EQ] = ACTIONS(101), + [anon_sym_EQ_TILDE] = ACTIONS(101), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(97), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_PIPE] = ACTIONS(97), + [anon_sym_AMP_AMP] = ACTIONS(101), + [anon_sym_PIPE_PIPE] = ACTIONS(101), + [anon_sym_QMARK_COLON] = ACTIONS(101), + [anon_sym_STAR_STAR] = ACTIONS(101), + [anon_sym_ATinterface] = ACTIONS(101), + [anon_sym_interface] = ACTIONS(97), + [anon_sym_class] = ACTIONS(97), + [anon_sym_COMMA] = ACTIONS(101), + [anon_sym_LBRACE] = ACTIONS(101), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(97), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_RPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(97), + [anon_sym_while] = ACTIONS(97), + [anon_sym_for] = ACTIONS(97), + [anon_sym_if] = ACTIONS(97), + [anon_sym_else] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(101), + [anon_sym_pipeline] = ACTIONS(97), + [anon_sym_return] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(101), + [anon_sym_DOLLAR_SLASH] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(97), + [anon_sym_try] = ACTIONS(97), + [anon_sym_int] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_char] = ACTIONS(97), + [anon_sym_short] = ACTIONS(97), + [anon_sym_long] = ACTIONS(97), + [anon_sym_float] = ACTIONS(97), + [anon_sym_double] = ACTIONS(97), + [anon_sym_void] = ACTIONS(97), + [anon_sym_public] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_static] = ACTIONS(97), + [anon_sym_final] = ACTIONS(97), + [anon_sym_synchronized] = ACTIONS(97), + }, + [241] = { + [sym_comment] = STATE(241), + [sym_groovy_doc] = STATE(241), + [sym_identifier] = ACTIONS(97), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(101), + [anon_sym_DOT_AMP] = ACTIONS(101), + [anon_sym_DOT_AT] = ACTIONS(101), + [anon_sym_QMARK_DOT] = ACTIONS(101), + [anon_sym_STAR_DOT] = ACTIONS(101), + [anon_sym_STAR] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(97), + [anon_sym_import] = ACTIONS(97), + [anon_sym_as] = ACTIONS(97), + [anon_sym_package] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_assert] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(97), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(97), + [anon_sym_GT_GT_GT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(97), + [anon_sym_DOT_DOT_LT] = ACTIONS(101), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(101), + [anon_sym_LT_DOT_DOT] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(97), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(101), + [anon_sym_in] = ACTIONS(97), + [anon_sym_BANGin] = ACTIONS(97), + [anon_sym_instanceof] = ACTIONS(97), + [anon_sym_BANGinstanceof] = ACTIONS(101), + [anon_sym_EQ_EQ] = ACTIONS(97), + [anon_sym_BANG_EQ] = ACTIONS(97), + [anon_sym_LT_EQ_GT] = ACTIONS(101), + [anon_sym_EQ_EQ_EQ] = ACTIONS(101), + [anon_sym_BANG_EQ_EQ] = ACTIONS(101), + [anon_sym_EQ_TILDE] = ACTIONS(101), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(97), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_PIPE] = ACTIONS(97), + [anon_sym_AMP_AMP] = ACTIONS(101), + [anon_sym_PIPE_PIPE] = ACTIONS(101), + [anon_sym_QMARK_COLON] = ACTIONS(101), + [anon_sym_STAR_STAR] = ACTIONS(101), + [anon_sym_ATinterface] = ACTIONS(101), + [anon_sym_interface] = ACTIONS(97), + [anon_sym_class] = ACTIONS(97), + [anon_sym_COMMA] = ACTIONS(101), + [anon_sym_LBRACE] = ACTIONS(101), + [anon_sym_RBRACE] = ACTIONS(101), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(97), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(97), + [anon_sym_while] = ACTIONS(97), + [anon_sym_for] = ACTIONS(97), + [anon_sym_if] = ACTIONS(97), + [anon_sym_else] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(101), + [anon_sym_return] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(101), + [anon_sym_DOLLAR_SLASH] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(97), + [anon_sym_case] = ACTIONS(97), + [anon_sym_default] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(97), + [anon_sym_try] = ACTIONS(97), + [anon_sym_int] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_char] = ACTIONS(97), + [anon_sym_short] = ACTIONS(97), + [anon_sym_long] = ACTIONS(97), + [anon_sym_float] = ACTIONS(97), + [anon_sym_double] = ACTIONS(97), + [anon_sym_void] = ACTIONS(97), + [anon_sym_public] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_static] = ACTIONS(97), + [anon_sym_final] = ACTIONS(97), + [anon_sym_synchronized] = ACTIONS(97), + }, + [242] = { + [sym_comment] = STATE(242), + [sym_groovy_doc] = STATE(242), + [sym_identifier] = ACTIONS(267), + [anon_sym_break] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(267), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_DOT_AMP] = ACTIONS(269), + [anon_sym_DOT_AT] = ACTIONS(269), + [anon_sym_QMARK_DOT] = ACTIONS(269), + [anon_sym_STAR_DOT] = ACTIONS(269), + [anon_sym_STAR] = ACTIONS(267), + [anon_sym_import] = ACTIONS(267), + [anon_sym_as] = ACTIONS(267), + [anon_sym_package] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(267), + [anon_sym_assert] = ACTIONS(267), + [anon_sym_PLUS_PLUS] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(269), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_GT_GT] = ACTIONS(267), + [anon_sym_GT_GT_GT] = ACTIONS(269), + [anon_sym_DOT_DOT] = ACTIONS(267), + [anon_sym_DOT_DOT_LT] = ACTIONS(269), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(269), + [anon_sym_LT_DOT_DOT] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(267), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_in] = ACTIONS(267), + [anon_sym_BANGin] = ACTIONS(267), + [anon_sym_instanceof] = ACTIONS(267), + [anon_sym_BANGinstanceof] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(267), + [anon_sym_BANG_EQ] = ACTIONS(267), + [anon_sym_LT_EQ_GT] = ACTIONS(269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(269), + [anon_sym_EQ_TILDE] = ACTIONS(269), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(267), + [anon_sym_AMP_AMP] = ACTIONS(269), + [anon_sym_PIPE_PIPE] = ACTIONS(269), + [anon_sym_QMARK_COLON] = ACTIONS(269), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_ATinterface] = ACTIONS(269), + [anon_sym_interface] = ACTIONS(267), + [anon_sym_class] = ACTIONS(267), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_RBRACE] = ACTIONS(269), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(267), + [anon_sym_do] = ACTIONS(267), + [anon_sym_while] = ACTIONS(267), + [anon_sym_for] = ACTIONS(267), + [anon_sym_if] = ACTIONS(267), + [anon_sym_else] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(269), + [anon_sym_return] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(267), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(267), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(269), + [anon_sym_DOLLAR_SLASH] = ACTIONS(269), + [anon_sym_switch] = ACTIONS(267), + [anon_sym_case] = ACTIONS(267), + [anon_sym_default] = ACTIONS(267), + [anon_sym_QMARK] = ACTIONS(267), + [anon_sym_try] = ACTIONS(267), + [anon_sym_catch] = ACTIONS(267), + [anon_sym_finally] = ACTIONS(267), + [anon_sym_int] = ACTIONS(267), + [anon_sym_boolean] = ACTIONS(267), + [anon_sym_char] = ACTIONS(267), + [anon_sym_short] = ACTIONS(267), + [anon_sym_long] = ACTIONS(267), + [anon_sym_float] = ACTIONS(267), + [anon_sym_double] = ACTIONS(267), + [anon_sym_void] = ACTIONS(267), + [anon_sym_public] = ACTIONS(267), + [anon_sym_protected] = ACTIONS(267), + [anon_sym_private] = ACTIONS(267), + [anon_sym_static] = ACTIONS(267), + [anon_sym_final] = ACTIONS(267), + [anon_sym_synchronized] = ACTIONS(267), + }, + [243] = { + [sym_comment] = STATE(243), + [sym_groovy_doc] = STATE(243), + [aux_sym__juxt_argument_list_repeat1] = STATE(925), + [sym_identifier] = ACTIONS(287), + [anon_sym_break] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_DOT_AMP] = ACTIONS(642), + [anon_sym_DOT_AT] = ACTIONS(642), + [anon_sym_QMARK_DOT] = ACTIONS(642), + [anon_sym_STAR_DOT] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_import] = ACTIONS(287), + [anon_sym_as] = ACTIONS(646), + [anon_sym_package] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_assert] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(289), + [anon_sym_DASH_DASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_GT_GT_GT] = ACTIONS(652), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_in] = ACTIONS(646), + [anon_sym_BANGin] = ACTIONS(646), + [anon_sym_instanceof] = ACTIONS(646), + [anon_sym_BANGinstanceof] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(658), + [anon_sym_BANG_EQ] = ACTIONS(658), + [anon_sym_LT_EQ_GT] = ACTIONS(660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(660), + [anon_sym_EQ_TILDE] = ACTIONS(660), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(670), + [anon_sym_QMARK_COLON] = ACTIONS(672), + [anon_sym_STAR_STAR] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(289), + [anon_sym_interface] = ACTIONS(287), + [anon_sym_class] = ACTIONS(287), + [anon_sym_COMMA] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(289), + [anon_sym_RBRACE] = ACTIONS(289), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(287), + [anon_sym_do] = ACTIONS(287), + [anon_sym_while] = ACTIONS(287), + [anon_sym_for] = ACTIONS(287), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(287), + [anon_sym_return] = ACTIONS(287), + [anon_sym_SQUOTE] = ACTIONS(287), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR_SLASH] = ACTIONS(289), + [anon_sym_switch] = ACTIONS(287), + [anon_sym_case] = ACTIONS(287), + [anon_sym_default] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(678), + [anon_sym_try] = ACTIONS(287), + [anon_sym_catch] = ACTIONS(287), + [anon_sym_finally] = ACTIONS(287), + [anon_sym_int] = ACTIONS(287), + [anon_sym_boolean] = ACTIONS(287), + [anon_sym_char] = ACTIONS(287), + [anon_sym_short] = ACTIONS(287), + [anon_sym_long] = ACTIONS(287), + [anon_sym_float] = ACTIONS(287), + [anon_sym_double] = ACTIONS(287), + [anon_sym_void] = ACTIONS(287), + [anon_sym_public] = ACTIONS(287), + [anon_sym_protected] = ACTIONS(287), + [anon_sym_private] = ACTIONS(287), + [anon_sym_static] = ACTIONS(287), + [anon_sym_final] = ACTIONS(287), + [anon_sym_synchronized] = ACTIONS(287), + }, + [244] = { + [sym_comment] = STATE(244), + [sym_groovy_doc] = STATE(244), + [sym_identifier] = ACTIONS(99), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_DOT_AMP] = ACTIONS(93), + [anon_sym_DOT_AT] = ACTIONS(93), + [anon_sym_QMARK_DOT] = ACTIONS(93), + [anon_sym_STAR_DOT] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(97), + [anon_sym_import] = ACTIONS(99), + [anon_sym_as] = ACTIONS(99), + [anon_sym_package] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(93), + [anon_sym_SLASH] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(99), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_LT_LT] = ACTIONS(93), + [anon_sym_GT_GT] = ACTIONS(99), + [anon_sym_GT_GT_GT] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(99), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_in] = ACTIONS(99), + [anon_sym_BANGin] = ACTIONS(99), + [anon_sym_instanceof] = ACTIONS(99), + [anon_sym_BANGinstanceof] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_LT_EQ_GT] = ACTIONS(93), + [anon_sym_EQ_EQ_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ_EQ] = ACTIONS(93), + [anon_sym_EQ_TILDE] = ACTIONS(93), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(99), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(93), + [anon_sym_ATinterface] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(99), + [anon_sym_class] = ACTIONS(99), + [anon_sym_COMMA] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_RBRACE] = ACTIONS(93), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(99), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(99), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(99), + [anon_sym_if] = ACTIONS(99), + [anon_sym_else] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(101), + [anon_sym_return] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_SLASH] = ACTIONS(93), + [anon_sym_switch] = ACTIONS(99), + [anon_sym_case] = ACTIONS(99), + [anon_sym_default] = ACTIONS(99), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_int] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_char] = ACTIONS(99), + [anon_sym_short] = ACTIONS(99), + [anon_sym_long] = ACTIONS(99), + [anon_sym_float] = ACTIONS(99), + [anon_sym_double] = ACTIONS(99), + [anon_sym_void] = ACTIONS(99), + [anon_sym_public] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_static] = ACTIONS(99), + [anon_sym_final] = ACTIONS(99), + [anon_sym_synchronized] = ACTIONS(99), + }, + [245] = { + [sym_comment] = STATE(245), + [sym_groovy_doc] = STATE(245), + [sym_identifier] = ACTIONS(329), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_DOT_AMP] = ACTIONS(331), + [anon_sym_DOT_AT] = ACTIONS(331), + [anon_sym_QMARK_DOT] = ACTIONS(331), + [anon_sym_STAR_DOT] = ACTIONS(331), + [anon_sym_STAR] = ACTIONS(329), + [anon_sym_import] = ACTIONS(329), + [anon_sym_as] = ACTIONS(329), + [anon_sym_package] = ACTIONS(329), + [anon_sym_AT] = ACTIONS(329), + [anon_sym_assert] = ACTIONS(329), + [anon_sym_PLUS_PLUS] = ACTIONS(331), + [anon_sym_DASH_DASH] = ACTIONS(331), + [anon_sym_PERCENT] = ACTIONS(331), + [anon_sym_SLASH] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(329), + [anon_sym_DASH] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(331), + [anon_sym_DOT_DOT] = ACTIONS(329), + [anon_sym_DOT_DOT_LT] = ACTIONS(331), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(331), + [anon_sym_LT_DOT_DOT] = ACTIONS(329), + [anon_sym_LT] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(329), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_GT_EQ] = ACTIONS(331), + [anon_sym_in] = ACTIONS(329), + [anon_sym_BANGin] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANGinstanceof] = ACTIONS(331), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_LT_EQ_GT] = ACTIONS(331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(331), + [anon_sym_EQ_TILDE] = ACTIONS(331), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(331), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(331), + [anon_sym_QMARK_COLON] = ACTIONS(331), + [anon_sym_STAR_STAR] = ACTIONS(331), + [anon_sym_ATinterface] = ACTIONS(331), + [anon_sym_interface] = ACTIONS(329), + [anon_sym_class] = ACTIONS(329), + [anon_sym_COMMA] = ACTIONS(331), + [anon_sym_LBRACE] = ACTIONS(331), + [anon_sym_RBRACE] = ACTIONS(331), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(329), + [anon_sym_do] = ACTIONS(329), + [anon_sym_while] = ACTIONS(329), + [anon_sym_for] = ACTIONS(329), + [anon_sym_if] = ACTIONS(329), + [anon_sym_else] = ACTIONS(329), + [anon_sym_COLON] = ACTIONS(680), + [anon_sym_return] = ACTIONS(329), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(329), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(331), + [anon_sym_DOLLAR_SLASH] = ACTIONS(331), + [anon_sym_switch] = ACTIONS(329), + [anon_sym_case] = ACTIONS(329), + [anon_sym_default] = ACTIONS(329), + [anon_sym_QMARK] = ACTIONS(329), + [anon_sym_try] = ACTIONS(329), + [anon_sym_catch] = ACTIONS(329), + [anon_sym_finally] = ACTIONS(329), + [anon_sym_int] = ACTIONS(329), + [anon_sym_boolean] = ACTIONS(329), + [anon_sym_char] = ACTIONS(329), + [anon_sym_short] = ACTIONS(329), + [anon_sym_long] = ACTIONS(329), + [anon_sym_float] = ACTIONS(329), + [anon_sym_double] = ACTIONS(329), + [anon_sym_void] = ACTIONS(329), + [anon_sym_public] = ACTIONS(329), + [anon_sym_protected] = ACTIONS(329), + [anon_sym_private] = ACTIONS(329), + [anon_sym_static] = ACTIONS(329), + [anon_sym_final] = ACTIONS(329), + [anon_sym_synchronized] = ACTIONS(329), + }, + [246] = { + [sym_comment] = STATE(246), + [sym_groovy_doc] = STATE(246), + [sym_identifier] = ACTIONS(99), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_DOT_AMP] = ACTIONS(93), + [anon_sym_DOT_AT] = ACTIONS(93), + [anon_sym_QMARK_DOT] = ACTIONS(93), + [anon_sym_STAR_DOT] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_import] = ACTIONS(99), + [anon_sym_as] = ACTIONS(99), + [anon_sym_package] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(93), + [anon_sym_SLASH] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(99), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_LT_LT] = ACTIONS(93), + [anon_sym_GT_GT] = ACTIONS(99), + [anon_sym_GT_GT_GT] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(99), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_in] = ACTIONS(99), + [anon_sym_BANGin] = ACTIONS(99), + [anon_sym_instanceof] = ACTIONS(99), + [anon_sym_BANGinstanceof] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_LT_EQ_GT] = ACTIONS(93), + [anon_sym_EQ_EQ_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ_EQ] = ACTIONS(93), + [anon_sym_EQ_TILDE] = ACTIONS(93), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(99), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(93), + [anon_sym_ATinterface] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(99), + [anon_sym_class] = ACTIONS(99), + [anon_sym_COMMA] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_RBRACE] = ACTIONS(93), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(99), + [anon_sym_do] = ACTIONS(99), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(99), + [anon_sym_if] = ACTIONS(99), + [anon_sym_else] = ACTIONS(99), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_return] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_SLASH] = ACTIONS(93), + [anon_sym_switch] = ACTIONS(99), + [anon_sym_case] = ACTIONS(99), + [anon_sym_default] = ACTIONS(99), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(99), + [anon_sym_finally] = ACTIONS(99), + [anon_sym_int] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_char] = ACTIONS(99), + [anon_sym_short] = ACTIONS(99), + [anon_sym_long] = ACTIONS(99), + [anon_sym_float] = ACTIONS(99), + [anon_sym_double] = ACTIONS(99), + [anon_sym_void] = ACTIONS(99), + [anon_sym_public] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_static] = ACTIONS(99), + [anon_sym_final] = ACTIONS(99), + [anon_sym_synchronized] = ACTIONS(99), + }, + [247] = { + [sym_comment] = STATE(247), + [sym_groovy_doc] = STATE(247), + [ts_builtin_sym_end] = ACTIONS(71), + [sym_identifier] = ACTIONS(69), + [anon_sym_break] = ACTIONS(69), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_SEMI] = ACTIONS(71), + [anon_sym_DOT_AMP] = ACTIONS(71), + [anon_sym_DOT_AT] = ACTIONS(71), + [anon_sym_QMARK_DOT] = ACTIONS(71), + [anon_sym_STAR_DOT] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(69), + [anon_sym_DOT] = ACTIONS(69), + [anon_sym_import] = ACTIONS(69), + [anon_sym_as] = ACTIONS(69), + [anon_sym_package] = ACTIONS(69), + [anon_sym_AT] = ACTIONS(69), + [anon_sym_assert] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_LT_LT] = ACTIONS(71), + [anon_sym_GT_GT] = ACTIONS(69), + [anon_sym_GT_GT_GT] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_DOT_DOT_LT] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(71), + [anon_sym_LT_DOT_DOT] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(69), + [anon_sym_LT_EQ] = ACTIONS(69), + [anon_sym_GT] = ACTIONS(69), + [anon_sym_GT_EQ] = ACTIONS(71), + [anon_sym_in] = ACTIONS(69), + [anon_sym_BANGin] = ACTIONS(69), + [anon_sym_instanceof] = ACTIONS(69), + [anon_sym_BANGinstanceof] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(69), + [anon_sym_BANG_EQ] = ACTIONS(69), + [anon_sym_LT_EQ_GT] = ACTIONS(71), + [anon_sym_EQ_EQ_EQ] = ACTIONS(71), + [anon_sym_BANG_EQ_EQ] = ACTIONS(71), + [anon_sym_EQ_TILDE] = ACTIONS(71), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(69), + [anon_sym_CARET] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(69), + [anon_sym_AMP_AMP] = ACTIONS(71), + [anon_sym_PIPE_PIPE] = ACTIONS(71), + [anon_sym_QMARK_COLON] = ACTIONS(71), + [anon_sym_STAR_STAR] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(69), + [anon_sym_class] = ACTIONS(69), + [anon_sym_COMMA] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(71), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(69), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(71), + [anon_sym_do] = ACTIONS(69), + [anon_sym_while] = ACTIONS(69), + [anon_sym_for] = ACTIONS(69), + [anon_sym_if] = ACTIONS(69), + [anon_sym_else] = ACTIONS(69), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_pipeline] = ACTIONS(69), + [anon_sym_return] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_SLASH] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_QMARK] = ACTIONS(69), + [anon_sym_try] = ACTIONS(69), + [anon_sym_int] = ACTIONS(69), + [anon_sym_boolean] = ACTIONS(69), + [anon_sym_char] = ACTIONS(69), + [anon_sym_short] = ACTIONS(69), + [anon_sym_long] = ACTIONS(69), + [anon_sym_float] = ACTIONS(69), + [anon_sym_double] = ACTIONS(69), + [anon_sym_void] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_protected] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_final] = ACTIONS(69), + [anon_sym_synchronized] = ACTIONS(69), + }, + [248] = { + [sym_comment] = STATE(248), + [sym_groovy_doc] = STATE(248), + [ts_builtin_sym_end] = ACTIONS(83), + [sym_identifier] = ACTIONS(81), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_DOT_AMP] = ACTIONS(83), + [anon_sym_DOT_AT] = ACTIONS(83), + [anon_sym_QMARK_DOT] = ACTIONS(83), + [anon_sym_STAR_DOT] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_import] = ACTIONS(81), + [anon_sym_as] = ACTIONS(81), + [anon_sym_package] = ACTIONS(81), + [anon_sym_AT] = ACTIONS(81), + [anon_sym_assert] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(83), + [anon_sym_GT_GT] = ACTIONS(81), + [anon_sym_GT_GT_GT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DOT_DOT_LT] = ACTIONS(83), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(83), + [anon_sym_LT_DOT_DOT] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_GT_EQ] = ACTIONS(83), + [anon_sym_in] = ACTIONS(81), + [anon_sym_BANGin] = ACTIONS(81), + [anon_sym_instanceof] = ACTIONS(81), + [anon_sym_BANGinstanceof] = ACTIONS(83), + [anon_sym_EQ_EQ] = ACTIONS(81), + [anon_sym_BANG_EQ] = ACTIONS(81), + [anon_sym_LT_EQ_GT] = ACTIONS(83), + [anon_sym_EQ_EQ_EQ] = ACTIONS(83), + [anon_sym_BANG_EQ_EQ] = ACTIONS(83), + [anon_sym_EQ_TILDE] = ACTIONS(83), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(83), + [anon_sym_PIPE] = ACTIONS(81), + [anon_sym_AMP_AMP] = ACTIONS(83), + [anon_sym_PIPE_PIPE] = ACTIONS(83), + [anon_sym_QMARK_COLON] = ACTIONS(83), + [anon_sym_STAR_STAR] = ACTIONS(83), + [anon_sym_ATinterface] = ACTIONS(83), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(83), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [anon_sym_do] = ACTIONS(81), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(81), + [anon_sym_if] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_pipeline] = ACTIONS(81), + [anon_sym_return] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_SLASH] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_QMARK] = ACTIONS(81), + [anon_sym_try] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_boolean] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_float] = ACTIONS(81), + [anon_sym_double] = ACTIONS(81), + [anon_sym_void] = ACTIONS(81), + [anon_sym_public] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_static] = ACTIONS(81), + [anon_sym_final] = ACTIONS(81), + [anon_sym_synchronized] = ACTIONS(81), + }, + [249] = { + [sym_comment] = STATE(249), + [sym_groovy_doc] = STATE(249), + [ts_builtin_sym_end] = ACTIONS(75), + [sym_identifier] = ACTIONS(73), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_DOT_AMP] = ACTIONS(75), + [anon_sym_DOT_AT] = ACTIONS(75), + [anon_sym_QMARK_DOT] = ACTIONS(75), + [anon_sym_STAR_DOT] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(73), + [anon_sym_DOT] = ACTIONS(73), + [anon_sym_import] = ACTIONS(73), + [anon_sym_as] = ACTIONS(73), + [anon_sym_package] = ACTIONS(73), + [anon_sym_AT] = ACTIONS(73), + [anon_sym_assert] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_LT_LT] = ACTIONS(75), + [anon_sym_GT_GT] = ACTIONS(73), + [anon_sym_GT_GT_GT] = ACTIONS(75), + [anon_sym_DOT_DOT] = ACTIONS(73), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(75), + [anon_sym_LT_DOT_DOT] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(73), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(73), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_in] = ACTIONS(73), + [anon_sym_BANGin] = ACTIONS(73), + [anon_sym_instanceof] = ACTIONS(73), + [anon_sym_BANGinstanceof] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT_EQ_GT] = ACTIONS(75), + [anon_sym_EQ_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ_EQ] = ACTIONS(75), + [anon_sym_EQ_TILDE] = ACTIONS(75), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(73), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(73), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_QMARK_COLON] = ACTIONS(75), + [anon_sym_STAR_STAR] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_class] = ACTIONS(73), + [anon_sym_COMMA] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(75), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_RPAREN] = ACTIONS(75), + [anon_sym_do] = ACTIONS(73), + [anon_sym_while] = ACTIONS(73), + [anon_sym_for] = ACTIONS(73), + [anon_sym_if] = ACTIONS(73), + [anon_sym_else] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_pipeline] = ACTIONS(73), + [anon_sym_return] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(75), + [anon_sym_DOLLAR_SLASH] = ACTIONS(75), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_QMARK] = ACTIONS(73), + [anon_sym_try] = ACTIONS(73), + [anon_sym_int] = ACTIONS(73), + [anon_sym_boolean] = ACTIONS(73), + [anon_sym_char] = ACTIONS(73), + [anon_sym_short] = ACTIONS(73), + [anon_sym_long] = ACTIONS(73), + [anon_sym_float] = ACTIONS(73), + [anon_sym_double] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_public] = ACTIONS(73), + [anon_sym_protected] = ACTIONS(73), + [anon_sym_private] = ACTIONS(73), + [anon_sym_static] = ACTIONS(73), + [anon_sym_final] = ACTIONS(73), + [anon_sym_synchronized] = ACTIONS(73), + }, + [250] = { + [sym_comment] = STATE(250), + [sym_groovy_doc] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(281), + [sym_identifier] = ACTIONS(279), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(281), + [anon_sym_DOT_AMP] = ACTIONS(281), + [anon_sym_DOT_AT] = ACTIONS(281), + [anon_sym_QMARK_DOT] = ACTIONS(281), + [anon_sym_STAR_DOT] = ACTIONS(281), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_DOT] = ACTIONS(279), + [anon_sym_import] = ACTIONS(279), + [anon_sym_as] = ACTIONS(279), + [anon_sym_package] = ACTIONS(279), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(279), + [anon_sym_PLUS_PLUS] = ACTIONS(281), + [anon_sym_DASH_DASH] = ACTIONS(281), + [anon_sym_PERCENT] = ACTIONS(281), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_LT_LT] = ACTIONS(281), + [anon_sym_GT_GT] = ACTIONS(279), + [anon_sym_GT_GT_GT] = ACTIONS(281), + [anon_sym_DOT_DOT] = ACTIONS(279), + [anon_sym_DOT_DOT_LT] = ACTIONS(281), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(281), + [anon_sym_LT_DOT_DOT] = ACTIONS(279), + [anon_sym_LT] = ACTIONS(279), + [anon_sym_LT_EQ] = ACTIONS(279), + [anon_sym_GT] = ACTIONS(279), + [anon_sym_GT_EQ] = ACTIONS(281), + [anon_sym_in] = ACTIONS(279), + [anon_sym_BANGin] = ACTIONS(279), + [anon_sym_instanceof] = ACTIONS(279), + [anon_sym_BANGinstanceof] = ACTIONS(281), + [anon_sym_EQ_EQ] = ACTIONS(279), + [anon_sym_BANG_EQ] = ACTIONS(279), + [anon_sym_LT_EQ_GT] = ACTIONS(281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(281), + [anon_sym_EQ_TILDE] = ACTIONS(281), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(279), + [anon_sym_CARET] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(279), + [anon_sym_AMP_AMP] = ACTIONS(281), + [anon_sym_PIPE_PIPE] = ACTIONS(281), + [anon_sym_QMARK_COLON] = ACTIONS(281), + [anon_sym_STAR_STAR] = ACTIONS(281), + [anon_sym_ATinterface] = ACTIONS(281), + [anon_sym_interface] = ACTIONS(279), + [anon_sym_class] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(281), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(281), + [anon_sym_RPAREN] = ACTIONS(281), + [anon_sym_do] = ACTIONS(279), + [anon_sym_while] = ACTIONS(279), + [anon_sym_for] = ACTIONS(279), + [anon_sym_if] = ACTIONS(279), + [anon_sym_else] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(281), + [anon_sym_pipeline] = ACTIONS(279), + [anon_sym_return] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(279), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(281), + [anon_sym_DQUOTE] = ACTIONS(279), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [anon_sym_DOLLAR_SLASH] = ACTIONS(281), + [anon_sym_switch] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(279), + [anon_sym_try] = ACTIONS(279), + [anon_sym_int] = ACTIONS(279), + [anon_sym_boolean] = ACTIONS(279), + [anon_sym_char] = ACTIONS(279), + [anon_sym_short] = ACTIONS(279), + [anon_sym_long] = ACTIONS(279), + [anon_sym_float] = ACTIONS(279), + [anon_sym_double] = ACTIONS(279), + [anon_sym_void] = ACTIONS(279), + [anon_sym_public] = ACTIONS(279), + [anon_sym_protected] = ACTIONS(279), + [anon_sym_private] = ACTIONS(279), + [anon_sym_static] = ACTIONS(279), + [anon_sym_final] = ACTIONS(279), + [anon_sym_synchronized] = ACTIONS(279), + }, + [251] = { + [sym_comment] = STATE(251), + [sym_groovy_doc] = STATE(251), + [ts_builtin_sym_end] = ACTIONS(345), + [sym_identifier] = ACTIONS(343), + [anon_sym_break] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_DOT_AMP] = ACTIONS(345), + [anon_sym_DOT_AT] = ACTIONS(345), + [anon_sym_QMARK_DOT] = ACTIONS(345), + [anon_sym_STAR_DOT] = ACTIONS(345), + [anon_sym_STAR] = ACTIONS(343), + [anon_sym_DOT] = ACTIONS(343), + [anon_sym_import] = ACTIONS(343), + [anon_sym_as] = ACTIONS(343), + [anon_sym_package] = ACTIONS(343), + [anon_sym_AT] = ACTIONS(343), + [anon_sym_assert] = ACTIONS(343), + [anon_sym_PLUS_PLUS] = ACTIONS(345), + [anon_sym_DASH_DASH] = ACTIONS(345), + [anon_sym_PERCENT] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(343), + [anon_sym_DASH] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_GT_GT_GT] = ACTIONS(345), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_DOT_DOT_LT] = ACTIONS(345), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(345), + [anon_sym_LT_DOT_DOT] = ACTIONS(343), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_EQ] = ACTIONS(345), + [anon_sym_in] = ACTIONS(343), + [anon_sym_BANGin] = ACTIONS(343), + [anon_sym_instanceof] = ACTIONS(343), + [anon_sym_BANGinstanceof] = ACTIONS(345), + [anon_sym_EQ_EQ] = ACTIONS(343), + [anon_sym_BANG_EQ] = ACTIONS(343), + [anon_sym_LT_EQ_GT] = ACTIONS(345), + [anon_sym_EQ_EQ_EQ] = ACTIONS(345), + [anon_sym_BANG_EQ_EQ] = ACTIONS(345), + [anon_sym_EQ_TILDE] = ACTIONS(345), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(345), + [anon_sym_AMP] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(345), + [anon_sym_PIPE] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(345), + [anon_sym_PIPE_PIPE] = ACTIONS(345), + [anon_sym_QMARK_COLON] = ACTIONS(345), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_ATinterface] = ACTIONS(345), + [anon_sym_interface] = ACTIONS(343), + [anon_sym_class] = ACTIONS(343), + [anon_sym_COMMA] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(345), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_RPAREN] = ACTIONS(345), + [anon_sym_do] = ACTIONS(343), + [anon_sym_while] = ACTIONS(343), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(343), + [anon_sym_else] = ACTIONS(343), + [anon_sym_LBRACK] = ACTIONS(345), + [anon_sym_pipeline] = ACTIONS(343), + [anon_sym_return] = ACTIONS(343), + [anon_sym_SQUOTE] = ACTIONS(343), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_SLASH] = ACTIONS(345), + [anon_sym_switch] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(343), + [anon_sym_try] = ACTIONS(343), + [anon_sym_int] = ACTIONS(343), + [anon_sym_boolean] = ACTIONS(343), + [anon_sym_char] = ACTIONS(343), + [anon_sym_short] = ACTIONS(343), + [anon_sym_long] = ACTIONS(343), + [anon_sym_float] = ACTIONS(343), + [anon_sym_double] = ACTIONS(343), + [anon_sym_void] = ACTIONS(343), + [anon_sym_public] = ACTIONS(343), + [anon_sym_protected] = ACTIONS(343), + [anon_sym_private] = ACTIONS(343), + [anon_sym_static] = ACTIONS(343), + [anon_sym_final] = ACTIONS(343), + [anon_sym_synchronized] = ACTIONS(343), + }, + [252] = { + [sym_comment] = STATE(252), + [sym_groovy_doc] = STATE(252), + [sym_identifier] = ACTIONS(73), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_DOT_AMP] = ACTIONS(75), + [anon_sym_DOT_AT] = ACTIONS(75), + [anon_sym_QMARK_DOT] = ACTIONS(75), + [anon_sym_STAR_DOT] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(73), + [anon_sym_DOT] = ACTIONS(73), + [anon_sym_import] = ACTIONS(73), + [anon_sym_as] = ACTIONS(73), + [anon_sym_package] = ACTIONS(73), + [anon_sym_AT] = ACTIONS(73), + [anon_sym_assert] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_LT_LT] = ACTIONS(75), + [anon_sym_GT_GT] = ACTIONS(73), + [anon_sym_GT_GT_GT] = ACTIONS(75), + [anon_sym_DOT_DOT] = ACTIONS(73), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(75), + [anon_sym_LT_DOT_DOT] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(73), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(73), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_in] = ACTIONS(73), + [anon_sym_BANGin] = ACTIONS(73), + [anon_sym_instanceof] = ACTIONS(73), + [anon_sym_BANGinstanceof] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT_EQ_GT] = ACTIONS(75), + [anon_sym_EQ_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ_EQ] = ACTIONS(75), + [anon_sym_EQ_TILDE] = ACTIONS(75), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(73), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(73), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_QMARK_COLON] = ACTIONS(75), + [anon_sym_STAR_STAR] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_class] = ACTIONS(73), + [anon_sym_COMMA] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_RBRACE] = ACTIONS(75), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_do] = ACTIONS(73), + [anon_sym_while] = ACTIONS(73), + [anon_sym_for] = ACTIONS(73), + [anon_sym_if] = ACTIONS(73), + [anon_sym_else] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_return] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(75), + [anon_sym_DOLLAR_SLASH] = ACTIONS(75), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(73), + [anon_sym_default] = ACTIONS(73), + [anon_sym_QMARK] = ACTIONS(73), + [anon_sym_try] = ACTIONS(73), + [anon_sym_int] = ACTIONS(73), + [anon_sym_boolean] = ACTIONS(73), + [anon_sym_char] = ACTIONS(73), + [anon_sym_short] = ACTIONS(73), + [anon_sym_long] = ACTIONS(73), + [anon_sym_float] = ACTIONS(73), + [anon_sym_double] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_public] = ACTIONS(73), + [anon_sym_protected] = ACTIONS(73), + [anon_sym_private] = ACTIONS(73), + [anon_sym_static] = ACTIONS(73), + [anon_sym_final] = ACTIONS(73), + [anon_sym_synchronized] = ACTIONS(73), + }, + [253] = { + [sym_comment] = STATE(253), + [sym_groovy_doc] = STATE(253), + [sym_identifier] = ACTIONS(279), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(281), + [anon_sym_DOT_AMP] = ACTIONS(281), + [anon_sym_DOT_AT] = ACTIONS(281), + [anon_sym_QMARK_DOT] = ACTIONS(281), + [anon_sym_STAR_DOT] = ACTIONS(281), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_DOT] = ACTIONS(279), + [anon_sym_import] = ACTIONS(279), + [anon_sym_as] = ACTIONS(279), + [anon_sym_package] = ACTIONS(279), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(279), + [anon_sym_PLUS_PLUS] = ACTIONS(281), + [anon_sym_DASH_DASH] = ACTIONS(281), + [anon_sym_PERCENT] = ACTIONS(281), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_LT_LT] = ACTIONS(281), + [anon_sym_GT_GT] = ACTIONS(279), + [anon_sym_GT_GT_GT] = ACTIONS(281), + [anon_sym_DOT_DOT] = ACTIONS(279), + [anon_sym_DOT_DOT_LT] = ACTIONS(281), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(281), + [anon_sym_LT_DOT_DOT] = ACTIONS(279), + [anon_sym_LT] = ACTIONS(279), + [anon_sym_LT_EQ] = ACTIONS(279), + [anon_sym_GT] = ACTIONS(279), + [anon_sym_GT_EQ] = ACTIONS(281), + [anon_sym_in] = ACTIONS(279), + [anon_sym_BANGin] = ACTIONS(279), + [anon_sym_instanceof] = ACTIONS(279), + [anon_sym_BANGinstanceof] = ACTIONS(281), + [anon_sym_EQ_EQ] = ACTIONS(279), + [anon_sym_BANG_EQ] = ACTIONS(279), + [anon_sym_LT_EQ_GT] = ACTIONS(281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(281), + [anon_sym_EQ_TILDE] = ACTIONS(281), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(279), + [anon_sym_CARET] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(279), + [anon_sym_AMP_AMP] = ACTIONS(281), + [anon_sym_PIPE_PIPE] = ACTIONS(281), + [anon_sym_QMARK_COLON] = ACTIONS(281), + [anon_sym_STAR_STAR] = ACTIONS(281), + [anon_sym_ATinterface] = ACTIONS(281), + [anon_sym_interface] = ACTIONS(279), + [anon_sym_class] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(281), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(281), + [anon_sym_do] = ACTIONS(279), + [anon_sym_while] = ACTIONS(279), + [anon_sym_for] = ACTIONS(279), + [anon_sym_if] = ACTIONS(279), + [anon_sym_else] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(281), + [anon_sym_return] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(279), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(281), + [anon_sym_DQUOTE] = ACTIONS(279), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [anon_sym_DOLLAR_SLASH] = ACTIONS(281), + [anon_sym_switch] = ACTIONS(279), + [anon_sym_case] = ACTIONS(279), + [anon_sym_default] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(279), + [anon_sym_try] = ACTIONS(279), + [anon_sym_int] = ACTIONS(279), + [anon_sym_boolean] = ACTIONS(279), + [anon_sym_char] = ACTIONS(279), + [anon_sym_short] = ACTIONS(279), + [anon_sym_long] = ACTIONS(279), + [anon_sym_float] = ACTIONS(279), + [anon_sym_double] = ACTIONS(279), + [anon_sym_void] = ACTIONS(279), + [anon_sym_public] = ACTIONS(279), + [anon_sym_protected] = ACTIONS(279), + [anon_sym_private] = ACTIONS(279), + [anon_sym_static] = ACTIONS(279), + [anon_sym_final] = ACTIONS(279), + [anon_sym_synchronized] = ACTIONS(279), + }, + [254] = { + [sym_comment] = STATE(254), + [sym_groovy_doc] = STATE(254), + [sym_identifier] = ACTIONS(271), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_SEMI] = ACTIONS(273), + [anon_sym_DOT_AMP] = ACTIONS(273), + [anon_sym_DOT_AT] = ACTIONS(273), + [anon_sym_QMARK_DOT] = ACTIONS(273), + [anon_sym_STAR_DOT] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_import] = ACTIONS(271), + [anon_sym_as] = ACTIONS(271), + [anon_sym_package] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_assert] = ACTIONS(271), + [anon_sym_PLUS_PLUS] = ACTIONS(273), + [anon_sym_DASH_DASH] = ACTIONS(273), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_LT_LT] = ACTIONS(273), + [anon_sym_GT_GT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(273), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_DOT_DOT_LT] = ACTIONS(273), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(273), + [anon_sym_LT_DOT_DOT] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(273), + [anon_sym_in] = ACTIONS(271), + [anon_sym_BANGin] = ACTIONS(271), + [anon_sym_instanceof] = ACTIONS(271), + [anon_sym_BANGinstanceof] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_LT_EQ_GT] = ACTIONS(273), + [anon_sym_EQ_EQ_EQ] = ACTIONS(273), + [anon_sym_BANG_EQ_EQ] = ACTIONS(273), + [anon_sym_EQ_TILDE] = ACTIONS(273), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(273), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(273), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(273), + [anon_sym_PIPE_PIPE] = ACTIONS(273), + [anon_sym_QMARK_COLON] = ACTIONS(273), + [anon_sym_STAR_STAR] = ACTIONS(273), + [anon_sym_ATinterface] = ACTIONS(273), + [anon_sym_interface] = ACTIONS(271), + [anon_sym_class] = ACTIONS(271), + [anon_sym_COMMA] = ACTIONS(273), + [anon_sym_LBRACE] = ACTIONS(273), + [anon_sym_RBRACE] = ACTIONS(273), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(273), + [anon_sym_do] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_return] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(273), + [anon_sym_DQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(273), + [anon_sym_DOLLAR_SLASH] = ACTIONS(273), + [anon_sym_switch] = ACTIONS(271), + [anon_sym_case] = ACTIONS(271), + [anon_sym_default] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_int] = ACTIONS(271), + [anon_sym_boolean] = ACTIONS(271), + [anon_sym_char] = ACTIONS(271), + [anon_sym_short] = ACTIONS(271), + [anon_sym_long] = ACTIONS(271), + [anon_sym_float] = ACTIONS(271), + [anon_sym_double] = ACTIONS(271), + [anon_sym_void] = ACTIONS(271), + [anon_sym_public] = ACTIONS(271), + [anon_sym_protected] = ACTIONS(271), + [anon_sym_private] = ACTIONS(271), + [anon_sym_static] = ACTIONS(271), + [anon_sym_final] = ACTIONS(271), + [anon_sym_synchronized] = ACTIONS(271), + }, + [255] = { + [sym_comment] = STATE(255), + [sym_groovy_doc] = STATE(255), + [sym_identifier] = ACTIONS(343), + [anon_sym_break] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_DOT_AMP] = ACTIONS(345), + [anon_sym_DOT_AT] = ACTIONS(345), + [anon_sym_QMARK_DOT] = ACTIONS(345), + [anon_sym_STAR_DOT] = ACTIONS(345), + [anon_sym_STAR] = ACTIONS(343), + [anon_sym_DOT] = ACTIONS(343), + [anon_sym_import] = ACTIONS(343), + [anon_sym_as] = ACTIONS(343), + [anon_sym_package] = ACTIONS(343), + [anon_sym_AT] = ACTIONS(343), + [anon_sym_assert] = ACTIONS(343), + [anon_sym_PLUS_PLUS] = ACTIONS(345), + [anon_sym_DASH_DASH] = ACTIONS(345), + [anon_sym_PERCENT] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(343), + [anon_sym_DASH] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_GT_GT_GT] = ACTIONS(345), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_DOT_DOT_LT] = ACTIONS(345), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(345), + [anon_sym_LT_DOT_DOT] = ACTIONS(343), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_EQ] = ACTIONS(345), + [anon_sym_in] = ACTIONS(343), + [anon_sym_BANGin] = ACTIONS(343), + [anon_sym_instanceof] = ACTIONS(343), + [anon_sym_BANGinstanceof] = ACTIONS(345), + [anon_sym_EQ_EQ] = ACTIONS(343), + [anon_sym_BANG_EQ] = ACTIONS(343), + [anon_sym_LT_EQ_GT] = ACTIONS(345), + [anon_sym_EQ_EQ_EQ] = ACTIONS(345), + [anon_sym_BANG_EQ_EQ] = ACTIONS(345), + [anon_sym_EQ_TILDE] = ACTIONS(345), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(345), + [anon_sym_AMP] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(345), + [anon_sym_PIPE] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(345), + [anon_sym_PIPE_PIPE] = ACTIONS(345), + [anon_sym_QMARK_COLON] = ACTIONS(345), + [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_ATinterface] = ACTIONS(345), + [anon_sym_interface] = ACTIONS(343), + [anon_sym_class] = ACTIONS(343), + [anon_sym_COMMA] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(345), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_do] = ACTIONS(343), + [anon_sym_while] = ACTIONS(343), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(343), + [anon_sym_else] = ACTIONS(343), + [anon_sym_LBRACK] = ACTIONS(345), + [anon_sym_return] = ACTIONS(343), + [anon_sym_SQUOTE] = ACTIONS(343), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_SLASH] = ACTIONS(345), + [anon_sym_switch] = ACTIONS(343), + [anon_sym_case] = ACTIONS(343), + [anon_sym_default] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(343), + [anon_sym_try] = ACTIONS(343), + [anon_sym_int] = ACTIONS(343), + [anon_sym_boolean] = ACTIONS(343), + [anon_sym_char] = ACTIONS(343), + [anon_sym_short] = ACTIONS(343), + [anon_sym_long] = ACTIONS(343), + [anon_sym_float] = ACTIONS(343), + [anon_sym_double] = ACTIONS(343), + [anon_sym_void] = ACTIONS(343), + [anon_sym_public] = ACTIONS(343), + [anon_sym_protected] = ACTIONS(343), + [anon_sym_private] = ACTIONS(343), + [anon_sym_static] = ACTIONS(343), + [anon_sym_final] = ACTIONS(343), + [anon_sym_synchronized] = ACTIONS(343), + }, + [256] = { + [sym_comment] = STATE(256), + [sym_groovy_doc] = STATE(256), + [sym_identifier] = ACTIONS(85), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(87), + [anon_sym_DOT_AMP] = ACTIONS(87), + [anon_sym_DOT_AT] = ACTIONS(87), + [anon_sym_QMARK_DOT] = ACTIONS(87), + [anon_sym_STAR_DOT] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_import] = ACTIONS(85), + [anon_sym_as] = ACTIONS(85), + [anon_sym_package] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_assert] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(87), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(87), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(87), + [anon_sym_LT_DOT_DOT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(87), + [anon_sym_in] = ACTIONS(85), + [anon_sym_BANGin] = ACTIONS(85), + [anon_sym_instanceof] = ACTIONS(85), + [anon_sym_BANGinstanceof] = ACTIONS(87), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_LT_EQ_GT] = ACTIONS(87), + [anon_sym_EQ_EQ_EQ] = ACTIONS(87), + [anon_sym_BANG_EQ_EQ] = ACTIONS(87), + [anon_sym_EQ_TILDE] = ACTIONS(87), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_CARET] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(87), + [anon_sym_PIPE_PIPE] = ACTIONS(87), + [anon_sym_QMARK_COLON] = ACTIONS(87), + [anon_sym_STAR_STAR] = ACTIONS(87), + [anon_sym_ATinterface] = ACTIONS(87), + [anon_sym_interface] = ACTIONS(85), + [anon_sym_class] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(87), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_RBRACE] = ACTIONS(87), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_do] = ACTIONS(85), + [anon_sym_while] = ACTIONS(85), + [anon_sym_for] = ACTIONS(85), + [anon_sym_if] = ACTIONS(85), + [anon_sym_else] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_return] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_DOLLAR_SLASH] = ACTIONS(87), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(85), + [anon_sym_default] = ACTIONS(85), + [anon_sym_QMARK] = ACTIONS(85), + [anon_sym_try] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_boolean] = ACTIONS(85), + [anon_sym_char] = ACTIONS(85), + [anon_sym_short] = ACTIONS(85), + [anon_sym_long] = ACTIONS(85), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [anon_sym_void] = ACTIONS(85), + [anon_sym_public] = ACTIONS(85), + [anon_sym_protected] = ACTIONS(85), + [anon_sym_private] = ACTIONS(85), + [anon_sym_static] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_synchronized] = ACTIONS(85), + }, + [257] = { + [sym_comment] = STATE(257), + [sym_groovy_doc] = STATE(257), + [ts_builtin_sym_end] = ACTIONS(337), + [sym_identifier] = ACTIONS(335), + [anon_sym_break] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(335), + [anon_sym_SEMI] = ACTIONS(337), + [anon_sym_DOT_AMP] = ACTIONS(337), + [anon_sym_DOT_AT] = ACTIONS(337), + [anon_sym_QMARK_DOT] = ACTIONS(337), + [anon_sym_STAR_DOT] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(335), + [anon_sym_DOT] = ACTIONS(335), + [anon_sym_import] = ACTIONS(335), + [anon_sym_as] = ACTIONS(335), + [anon_sym_package] = ACTIONS(335), + [anon_sym_AT] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(337), + [anon_sym_DASH_DASH] = ACTIONS(337), + [anon_sym_PERCENT] = ACTIONS(337), + [anon_sym_SLASH] = ACTIONS(335), + [anon_sym_PLUS] = ACTIONS(335), + [anon_sym_DASH] = ACTIONS(335), + [anon_sym_LT_LT] = ACTIONS(337), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_GT_GT_GT] = ACTIONS(337), + [anon_sym_DOT_DOT] = ACTIONS(335), + [anon_sym_DOT_DOT_LT] = ACTIONS(337), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(337), + [anon_sym_LT_DOT_DOT] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_LT_EQ] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(335), + [anon_sym_GT_EQ] = ACTIONS(337), + [anon_sym_in] = ACTIONS(335), + [anon_sym_BANGin] = ACTIONS(335), + [anon_sym_instanceof] = ACTIONS(335), + [anon_sym_BANGinstanceof] = ACTIONS(337), + [anon_sym_EQ_EQ] = ACTIONS(335), + [anon_sym_BANG_EQ] = ACTIONS(335), + [anon_sym_LT_EQ_GT] = ACTIONS(337), + [anon_sym_EQ_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ_EQ] = ACTIONS(337), + [anon_sym_EQ_TILDE] = ACTIONS(337), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(335), + [anon_sym_CARET] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(335), + [anon_sym_AMP_AMP] = ACTIONS(337), + [anon_sym_PIPE_PIPE] = ACTIONS(337), + [anon_sym_QMARK_COLON] = ACTIONS(337), + [anon_sym_STAR_STAR] = ACTIONS(337), + [anon_sym_ATinterface] = ACTIONS(337), + [anon_sym_interface] = ACTIONS(335), + [anon_sym_class] = ACTIONS(335), + [anon_sym_COMMA] = ACTIONS(337), + [anon_sym_LBRACE] = ACTIONS(337), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_RPAREN] = ACTIONS(337), + [anon_sym_do] = ACTIONS(335), + [anon_sym_while] = ACTIONS(335), + [anon_sym_for] = ACTIONS(335), + [anon_sym_if] = ACTIONS(335), + [anon_sym_else] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_pipeline] = ACTIONS(335), + [anon_sym_return] = ACTIONS(335), + [anon_sym_SQUOTE] = ACTIONS(335), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(337), + [anon_sym_DQUOTE] = ACTIONS(335), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(337), + [anon_sym_DOLLAR_SLASH] = ACTIONS(337), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_QMARK] = ACTIONS(335), + [anon_sym_try] = ACTIONS(335), + [anon_sym_int] = ACTIONS(335), + [anon_sym_boolean] = ACTIONS(335), + [anon_sym_char] = ACTIONS(335), + [anon_sym_short] = ACTIONS(335), + [anon_sym_long] = ACTIONS(335), + [anon_sym_float] = ACTIONS(335), + [anon_sym_double] = ACTIONS(335), + [anon_sym_void] = ACTIONS(335), + [anon_sym_public] = ACTIONS(335), + [anon_sym_protected] = ACTIONS(335), + [anon_sym_private] = ACTIONS(335), + [anon_sym_static] = ACTIONS(335), + [anon_sym_final] = ACTIONS(335), + [anon_sym_synchronized] = ACTIONS(335), + }, + [258] = { + [sym_comment] = STATE(258), + [sym_groovy_doc] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(273), + [sym_identifier] = ACTIONS(271), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_SEMI] = ACTIONS(273), + [anon_sym_DOT_AMP] = ACTIONS(273), + [anon_sym_DOT_AT] = ACTIONS(273), + [anon_sym_QMARK_DOT] = ACTIONS(273), + [anon_sym_STAR_DOT] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_import] = ACTIONS(271), + [anon_sym_as] = ACTIONS(271), + [anon_sym_package] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_assert] = ACTIONS(271), + [anon_sym_PLUS_PLUS] = ACTIONS(273), + [anon_sym_DASH_DASH] = ACTIONS(273), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_LT_LT] = ACTIONS(273), + [anon_sym_GT_GT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(273), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_DOT_DOT_LT] = ACTIONS(273), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(273), + [anon_sym_LT_DOT_DOT] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(273), + [anon_sym_in] = ACTIONS(271), + [anon_sym_BANGin] = ACTIONS(271), + [anon_sym_instanceof] = ACTIONS(271), + [anon_sym_BANGinstanceof] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_LT_EQ_GT] = ACTIONS(273), + [anon_sym_EQ_EQ_EQ] = ACTIONS(273), + [anon_sym_BANG_EQ_EQ] = ACTIONS(273), + [anon_sym_EQ_TILDE] = ACTIONS(273), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(273), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(273), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(273), + [anon_sym_PIPE_PIPE] = ACTIONS(273), + [anon_sym_QMARK_COLON] = ACTIONS(273), + [anon_sym_STAR_STAR] = ACTIONS(273), + [anon_sym_ATinterface] = ACTIONS(273), + [anon_sym_interface] = ACTIONS(271), + [anon_sym_class] = ACTIONS(271), + [anon_sym_COMMA] = ACTIONS(273), + [anon_sym_LBRACE] = ACTIONS(273), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(273), + [anon_sym_RPAREN] = ACTIONS(273), + [anon_sym_do] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_pipeline] = ACTIONS(271), + [anon_sym_return] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(273), + [anon_sym_DQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(273), + [anon_sym_DOLLAR_SLASH] = ACTIONS(273), + [anon_sym_switch] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_int] = ACTIONS(271), + [anon_sym_boolean] = ACTIONS(271), + [anon_sym_char] = ACTIONS(271), + [anon_sym_short] = ACTIONS(271), + [anon_sym_long] = ACTIONS(271), + [anon_sym_float] = ACTIONS(271), + [anon_sym_double] = ACTIONS(271), + [anon_sym_void] = ACTIONS(271), + [anon_sym_public] = ACTIONS(271), + [anon_sym_protected] = ACTIONS(271), + [anon_sym_private] = ACTIONS(271), + [anon_sym_static] = ACTIONS(271), + [anon_sym_final] = ACTIONS(271), + [anon_sym_synchronized] = ACTIONS(271), + }, + [259] = { + [sym_comment] = STATE(259), + [sym_groovy_doc] = STATE(259), + [sym_identifier] = ACTIONS(77), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_DOT_AMP] = ACTIONS(79), + [anon_sym_DOT_AT] = ACTIONS(79), + [anon_sym_QMARK_DOT] = ACTIONS(79), + [anon_sym_STAR_DOT] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_import] = ACTIONS(77), + [anon_sym_as] = ACTIONS(77), + [anon_sym_package] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_assert] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_LT_LT] = ACTIONS(79), + [anon_sym_GT_GT] = ACTIONS(77), + [anon_sym_GT_GT_GT] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(77), + [anon_sym_DOT_DOT_LT] = ACTIONS(79), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(79), + [anon_sym_LT_DOT_DOT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(79), + [anon_sym_in] = ACTIONS(77), + [anon_sym_BANGin] = ACTIONS(77), + [anon_sym_instanceof] = ACTIONS(77), + [anon_sym_BANGinstanceof] = ACTIONS(79), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_LT_EQ_GT] = ACTIONS(79), + [anon_sym_EQ_EQ_EQ] = ACTIONS(79), + [anon_sym_BANG_EQ_EQ] = ACTIONS(79), + [anon_sym_EQ_TILDE] = ACTIONS(79), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_CARET] = ACTIONS(79), + [anon_sym_PIPE] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(79), + [anon_sym_PIPE_PIPE] = ACTIONS(79), + [anon_sym_QMARK_COLON] = ACTIONS(79), + [anon_sym_STAR_STAR] = ACTIONS(79), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_class] = ACTIONS(77), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_RBRACE] = ACTIONS(79), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(77), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_do] = ACTIONS(77), + [anon_sym_while] = ACTIONS(77), + [anon_sym_for] = ACTIONS(77), + [anon_sym_if] = ACTIONS(77), + [anon_sym_else] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(79), + [anon_sym_return] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(77), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR_SLASH] = ACTIONS(79), + [anon_sym_switch] = ACTIONS(77), + [anon_sym_case] = ACTIONS(77), + [anon_sym_default] = ACTIONS(77), + [anon_sym_QMARK] = ACTIONS(77), + [anon_sym_try] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_boolean] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [anon_sym_void] = ACTIONS(77), + [anon_sym_public] = ACTIONS(77), + [anon_sym_protected] = ACTIONS(77), + [anon_sym_private] = ACTIONS(77), + [anon_sym_static] = ACTIONS(77), + [anon_sym_final] = ACTIONS(77), + [anon_sym_synchronized] = ACTIONS(77), + }, + [260] = { + [sym_comment] = STATE(260), + [sym_groovy_doc] = STATE(260), + [sym_identifier] = ACTIONS(275), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_DOT_AMP] = ACTIONS(277), + [anon_sym_DOT_AT] = ACTIONS(277), + [anon_sym_QMARK_DOT] = ACTIONS(277), + [anon_sym_STAR_DOT] = ACTIONS(277), + [anon_sym_STAR] = ACTIONS(275), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_import] = ACTIONS(275), + [anon_sym_as] = ACTIONS(275), + [anon_sym_package] = ACTIONS(275), + [anon_sym_AT] = ACTIONS(275), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_PLUS_PLUS] = ACTIONS(277), + [anon_sym_DASH_DASH] = ACTIONS(277), + [anon_sym_PERCENT] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_PLUS] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_GT_GT] = ACTIONS(275), + [anon_sym_GT_GT_GT] = ACTIONS(277), + [anon_sym_DOT_DOT] = ACTIONS(275), + [anon_sym_DOT_DOT_LT] = ACTIONS(277), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(277), + [anon_sym_LT_DOT_DOT] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_LT_EQ] = ACTIONS(275), + [anon_sym_GT] = ACTIONS(275), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_in] = ACTIONS(275), + [anon_sym_BANGin] = ACTIONS(275), + [anon_sym_instanceof] = ACTIONS(275), + [anon_sym_BANGinstanceof] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_LT_EQ_GT] = ACTIONS(277), + [anon_sym_EQ_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ_EQ] = ACTIONS(277), + [anon_sym_EQ_TILDE] = ACTIONS(277), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(277), + [anon_sym_AMP] = ACTIONS(275), + [anon_sym_CARET] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(275), + [anon_sym_AMP_AMP] = ACTIONS(277), + [anon_sym_PIPE_PIPE] = ACTIONS(277), + [anon_sym_QMARK_COLON] = ACTIONS(277), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_ATinterface] = ACTIONS(277), + [anon_sym_interface] = ACTIONS(275), + [anon_sym_class] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(277), + [anon_sym_RBRACE] = ACTIONS(277), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(277), + [anon_sym_do] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(275), + [anon_sym_else] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_return] = ACTIONS(275), + [anon_sym_SQUOTE] = ACTIONS(275), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(277), + [anon_sym_DQUOTE] = ACTIONS(275), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(277), + [anon_sym_DOLLAR_SLASH] = ACTIONS(277), + [anon_sym_switch] = ACTIONS(275), + [anon_sym_case] = ACTIONS(275), + [anon_sym_default] = ACTIONS(275), + [anon_sym_QMARK] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_int] = ACTIONS(275), + [anon_sym_boolean] = ACTIONS(275), + [anon_sym_char] = ACTIONS(275), + [anon_sym_short] = ACTIONS(275), + [anon_sym_long] = ACTIONS(275), + [anon_sym_float] = ACTIONS(275), + [anon_sym_double] = ACTIONS(275), + [anon_sym_void] = ACTIONS(275), + [anon_sym_public] = ACTIONS(275), + [anon_sym_protected] = ACTIONS(275), + [anon_sym_private] = ACTIONS(275), + [anon_sym_static] = ACTIONS(275), + [anon_sym_final] = ACTIONS(275), + [anon_sym_synchronized] = ACTIONS(275), + }, + [261] = { + [sym_comment] = STATE(261), + [sym_groovy_doc] = STATE(261), + [ts_builtin_sym_end] = ACTIONS(277), + [sym_identifier] = ACTIONS(275), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_DOT_AMP] = ACTIONS(277), + [anon_sym_DOT_AT] = ACTIONS(277), + [anon_sym_QMARK_DOT] = ACTIONS(277), + [anon_sym_STAR_DOT] = ACTIONS(277), + [anon_sym_STAR] = ACTIONS(275), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_import] = ACTIONS(275), + [anon_sym_as] = ACTIONS(275), + [anon_sym_package] = ACTIONS(275), + [anon_sym_AT] = ACTIONS(275), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_PLUS_PLUS] = ACTIONS(277), + [anon_sym_DASH_DASH] = ACTIONS(277), + [anon_sym_PERCENT] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_PLUS] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_GT_GT] = ACTIONS(275), + [anon_sym_GT_GT_GT] = ACTIONS(277), + [anon_sym_DOT_DOT] = ACTIONS(275), + [anon_sym_DOT_DOT_LT] = ACTIONS(277), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(277), + [anon_sym_LT_DOT_DOT] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_LT_EQ] = ACTIONS(275), + [anon_sym_GT] = ACTIONS(275), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_in] = ACTIONS(275), + [anon_sym_BANGin] = ACTIONS(275), + [anon_sym_instanceof] = ACTIONS(275), + [anon_sym_BANGinstanceof] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_LT_EQ_GT] = ACTIONS(277), + [anon_sym_EQ_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ_EQ] = ACTIONS(277), + [anon_sym_EQ_TILDE] = ACTIONS(277), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(277), + [anon_sym_AMP] = ACTIONS(275), + [anon_sym_CARET] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(275), + [anon_sym_AMP_AMP] = ACTIONS(277), + [anon_sym_PIPE_PIPE] = ACTIONS(277), + [anon_sym_QMARK_COLON] = ACTIONS(277), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_ATinterface] = ACTIONS(277), + [anon_sym_interface] = ACTIONS(275), + [anon_sym_class] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(277), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(277), + [anon_sym_RPAREN] = ACTIONS(277), + [anon_sym_do] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(275), + [anon_sym_else] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_pipeline] = ACTIONS(275), + [anon_sym_return] = ACTIONS(275), + [anon_sym_SQUOTE] = ACTIONS(275), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(277), + [anon_sym_DQUOTE] = ACTIONS(275), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(277), + [anon_sym_DOLLAR_SLASH] = ACTIONS(277), + [anon_sym_switch] = ACTIONS(275), + [anon_sym_QMARK] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_int] = ACTIONS(275), + [anon_sym_boolean] = ACTIONS(275), + [anon_sym_char] = ACTIONS(275), + [anon_sym_short] = ACTIONS(275), + [anon_sym_long] = ACTIONS(275), + [anon_sym_float] = ACTIONS(275), + [anon_sym_double] = ACTIONS(275), + [anon_sym_void] = ACTIONS(275), + [anon_sym_public] = ACTIONS(275), + [anon_sym_protected] = ACTIONS(275), + [anon_sym_private] = ACTIONS(275), + [anon_sym_static] = ACTIONS(275), + [anon_sym_final] = ACTIONS(275), + [anon_sym_synchronized] = ACTIONS(275), + }, + [262] = { + [sym_comment] = STATE(262), + [sym_groovy_doc] = STATE(262), + [ts_builtin_sym_end] = ACTIONS(79), + [sym_identifier] = ACTIONS(77), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_DOT_AMP] = ACTIONS(79), + [anon_sym_DOT_AT] = ACTIONS(79), + [anon_sym_QMARK_DOT] = ACTIONS(79), + [anon_sym_STAR_DOT] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(77), + [anon_sym_import] = ACTIONS(77), + [anon_sym_as] = ACTIONS(77), + [anon_sym_package] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_assert] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(79), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_LT_LT] = ACTIONS(79), + [anon_sym_GT_GT] = ACTIONS(77), + [anon_sym_GT_GT_GT] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(77), + [anon_sym_DOT_DOT_LT] = ACTIONS(79), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(79), + [anon_sym_LT_DOT_DOT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(79), + [anon_sym_in] = ACTIONS(77), + [anon_sym_BANGin] = ACTIONS(77), + [anon_sym_instanceof] = ACTIONS(77), + [anon_sym_BANGinstanceof] = ACTIONS(79), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_LT_EQ_GT] = ACTIONS(79), + [anon_sym_EQ_EQ_EQ] = ACTIONS(79), + [anon_sym_BANG_EQ_EQ] = ACTIONS(79), + [anon_sym_EQ_TILDE] = ACTIONS(79), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_CARET] = ACTIONS(79), + [anon_sym_PIPE] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(79), + [anon_sym_PIPE_PIPE] = ACTIONS(79), + [anon_sym_QMARK_COLON] = ACTIONS(79), + [anon_sym_STAR_STAR] = ACTIONS(79), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_class] = ACTIONS(77), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(77), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [anon_sym_do] = ACTIONS(77), + [anon_sym_while] = ACTIONS(77), + [anon_sym_for] = ACTIONS(77), + [anon_sym_if] = ACTIONS(77), + [anon_sym_else] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(79), + [anon_sym_pipeline] = ACTIONS(77), + [anon_sym_return] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(77), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR_SLASH] = ACTIONS(79), + [anon_sym_switch] = ACTIONS(77), + [anon_sym_QMARK] = ACTIONS(77), + [anon_sym_try] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_boolean] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [anon_sym_void] = ACTIONS(77), + [anon_sym_public] = ACTIONS(77), + [anon_sym_protected] = ACTIONS(77), + [anon_sym_private] = ACTIONS(77), + [anon_sym_static] = ACTIONS(77), + [anon_sym_final] = ACTIONS(77), + [anon_sym_synchronized] = ACTIONS(77), + }, + [263] = { + [sym_comment] = STATE(263), + [sym_groovy_doc] = STATE(263), + [ts_builtin_sym_end] = ACTIONS(93), + [sym_identifier] = ACTIONS(99), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_DOT_AMP] = ACTIONS(93), + [anon_sym_DOT_AT] = ACTIONS(93), + [anon_sym_QMARK_DOT] = ACTIONS(93), + [anon_sym_STAR_DOT] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(97), + [anon_sym_import] = ACTIONS(99), + [anon_sym_as] = ACTIONS(99), + [anon_sym_package] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(93), + [anon_sym_SLASH] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(99), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_LT_LT] = ACTIONS(93), + [anon_sym_GT_GT] = ACTIONS(99), + [anon_sym_GT_GT_GT] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(99), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_in] = ACTIONS(99), + [anon_sym_BANGin] = ACTIONS(99), + [anon_sym_instanceof] = ACTIONS(99), + [anon_sym_BANGinstanceof] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_LT_EQ_GT] = ACTIONS(93), + [anon_sym_EQ_EQ_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ_EQ] = ACTIONS(93), + [anon_sym_EQ_TILDE] = ACTIONS(93), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(99), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(93), + [anon_sym_ATinterface] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(99), + [anon_sym_class] = ACTIONS(99), + [anon_sym_COMMA] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(93), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(99), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(99), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(99), + [anon_sym_if] = ACTIONS(99), + [anon_sym_else] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(101), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_pipeline] = ACTIONS(99), + [anon_sym_return] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_SLASH] = ACTIONS(93), + [anon_sym_switch] = ACTIONS(99), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_int] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_char] = ACTIONS(99), + [anon_sym_short] = ACTIONS(99), + [anon_sym_long] = ACTIONS(99), + [anon_sym_float] = ACTIONS(99), + [anon_sym_double] = ACTIONS(99), + [anon_sym_void] = ACTIONS(99), + [anon_sym_public] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_static] = ACTIONS(99), + [anon_sym_final] = ACTIONS(99), + [anon_sym_synchronized] = ACTIONS(99), + }, + [264] = { + [sym_comment] = STATE(264), + [sym_groovy_doc] = STATE(264), + [sym_identifier] = ACTIONS(335), + [anon_sym_break] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(335), + [anon_sym_SEMI] = ACTIONS(337), + [anon_sym_DOT_AMP] = ACTIONS(337), + [anon_sym_DOT_AT] = ACTIONS(337), + [anon_sym_QMARK_DOT] = ACTIONS(337), + [anon_sym_STAR_DOT] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(335), + [anon_sym_DOT] = ACTIONS(335), + [anon_sym_import] = ACTIONS(335), + [anon_sym_as] = ACTIONS(335), + [anon_sym_package] = ACTIONS(335), + [anon_sym_AT] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(337), + [anon_sym_DASH_DASH] = ACTIONS(337), + [anon_sym_PERCENT] = ACTIONS(337), + [anon_sym_SLASH] = ACTIONS(335), + [anon_sym_PLUS] = ACTIONS(335), + [anon_sym_DASH] = ACTIONS(335), + [anon_sym_LT_LT] = ACTIONS(337), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_GT_GT_GT] = ACTIONS(337), + [anon_sym_DOT_DOT] = ACTIONS(335), + [anon_sym_DOT_DOT_LT] = ACTIONS(337), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(337), + [anon_sym_LT_DOT_DOT] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_LT_EQ] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(335), + [anon_sym_GT_EQ] = ACTIONS(337), + [anon_sym_in] = ACTIONS(335), + [anon_sym_BANGin] = ACTIONS(335), + [anon_sym_instanceof] = ACTIONS(335), + [anon_sym_BANGinstanceof] = ACTIONS(337), + [anon_sym_EQ_EQ] = ACTIONS(335), + [anon_sym_BANG_EQ] = ACTIONS(335), + [anon_sym_LT_EQ_GT] = ACTIONS(337), + [anon_sym_EQ_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ_EQ] = ACTIONS(337), + [anon_sym_EQ_TILDE] = ACTIONS(337), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(335), + [anon_sym_CARET] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(335), + [anon_sym_AMP_AMP] = ACTIONS(337), + [anon_sym_PIPE_PIPE] = ACTIONS(337), + [anon_sym_QMARK_COLON] = ACTIONS(337), + [anon_sym_STAR_STAR] = ACTIONS(337), + [anon_sym_ATinterface] = ACTIONS(337), + [anon_sym_interface] = ACTIONS(335), + [anon_sym_class] = ACTIONS(335), + [anon_sym_COMMA] = ACTIONS(337), + [anon_sym_LBRACE] = ACTIONS(337), + [anon_sym_RBRACE] = ACTIONS(337), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_do] = ACTIONS(335), + [anon_sym_while] = ACTIONS(335), + [anon_sym_for] = ACTIONS(335), + [anon_sym_if] = ACTIONS(335), + [anon_sym_else] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_return] = ACTIONS(335), + [anon_sym_SQUOTE] = ACTIONS(335), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(337), + [anon_sym_DQUOTE] = ACTIONS(335), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(337), + [anon_sym_DOLLAR_SLASH] = ACTIONS(337), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(335), + [anon_sym_default] = ACTIONS(335), + [anon_sym_QMARK] = ACTIONS(335), + [anon_sym_try] = ACTIONS(335), + [anon_sym_int] = ACTIONS(335), + [anon_sym_boolean] = ACTIONS(335), + [anon_sym_char] = ACTIONS(335), + [anon_sym_short] = ACTIONS(335), + [anon_sym_long] = ACTIONS(335), + [anon_sym_float] = ACTIONS(335), + [anon_sym_double] = ACTIONS(335), + [anon_sym_void] = ACTIONS(335), + [anon_sym_public] = ACTIONS(335), + [anon_sym_protected] = ACTIONS(335), + [anon_sym_private] = ACTIONS(335), + [anon_sym_static] = ACTIONS(335), + [anon_sym_final] = ACTIONS(335), + [anon_sym_synchronized] = ACTIONS(335), + }, + [265] = { + [sym_comment] = STATE(265), + [sym_groovy_doc] = STATE(265), + [sym_identifier] = ACTIONS(69), + [anon_sym_break] = ACTIONS(69), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_SEMI] = ACTIONS(71), + [anon_sym_DOT_AMP] = ACTIONS(71), + [anon_sym_DOT_AT] = ACTIONS(71), + [anon_sym_QMARK_DOT] = ACTIONS(71), + [anon_sym_STAR_DOT] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(69), + [anon_sym_DOT] = ACTIONS(69), + [anon_sym_import] = ACTIONS(69), + [anon_sym_as] = ACTIONS(69), + [anon_sym_package] = ACTIONS(69), + [anon_sym_AT] = ACTIONS(69), + [anon_sym_assert] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_LT_LT] = ACTIONS(71), + [anon_sym_GT_GT] = ACTIONS(69), + [anon_sym_GT_GT_GT] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_DOT_DOT_LT] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(71), + [anon_sym_LT_DOT_DOT] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(69), + [anon_sym_LT_EQ] = ACTIONS(69), + [anon_sym_GT] = ACTIONS(69), + [anon_sym_GT_EQ] = ACTIONS(71), + [anon_sym_in] = ACTIONS(69), + [anon_sym_BANGin] = ACTIONS(69), + [anon_sym_instanceof] = ACTIONS(69), + [anon_sym_BANGinstanceof] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(69), + [anon_sym_BANG_EQ] = ACTIONS(69), + [anon_sym_LT_EQ_GT] = ACTIONS(71), + [anon_sym_EQ_EQ_EQ] = ACTIONS(71), + [anon_sym_BANG_EQ_EQ] = ACTIONS(71), + [anon_sym_EQ_TILDE] = ACTIONS(71), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(69), + [anon_sym_CARET] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(69), + [anon_sym_AMP_AMP] = ACTIONS(71), + [anon_sym_PIPE_PIPE] = ACTIONS(71), + [anon_sym_QMARK_COLON] = ACTIONS(71), + [anon_sym_STAR_STAR] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(69), + [anon_sym_class] = ACTIONS(69), + [anon_sym_COMMA] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(71), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(69), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_do] = ACTIONS(69), + [anon_sym_while] = ACTIONS(69), + [anon_sym_for] = ACTIONS(69), + [anon_sym_if] = ACTIONS(69), + [anon_sym_else] = ACTIONS(69), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_return] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_SLASH] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_case] = ACTIONS(69), + [anon_sym_default] = ACTIONS(69), + [anon_sym_QMARK] = ACTIONS(69), + [anon_sym_try] = ACTIONS(69), + [anon_sym_int] = ACTIONS(69), + [anon_sym_boolean] = ACTIONS(69), + [anon_sym_char] = ACTIONS(69), + [anon_sym_short] = ACTIONS(69), + [anon_sym_long] = ACTIONS(69), + [anon_sym_float] = ACTIONS(69), + [anon_sym_double] = ACTIONS(69), + [anon_sym_void] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_protected] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_final] = ACTIONS(69), + [anon_sym_synchronized] = ACTIONS(69), + }, + [266] = { + [sym_comment] = STATE(266), + [sym_groovy_doc] = STATE(266), + [ts_builtin_sym_end] = ACTIONS(341), + [sym_identifier] = ACTIONS(339), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(341), + [anon_sym_DOT_AMP] = ACTIONS(341), + [anon_sym_DOT_AT] = ACTIONS(341), + [anon_sym_QMARK_DOT] = ACTIONS(341), + [anon_sym_STAR_DOT] = ACTIONS(341), + [anon_sym_STAR] = ACTIONS(339), + [anon_sym_DOT] = ACTIONS(339), + [anon_sym_import] = ACTIONS(339), + [anon_sym_as] = ACTIONS(339), + [anon_sym_package] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(339), + [anon_sym_assert] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_PERCENT] = ACTIONS(341), + [anon_sym_SLASH] = ACTIONS(339), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_GT_GT_GT] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(339), + [anon_sym_DOT_DOT_LT] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(341), + [anon_sym_LT_DOT_DOT] = ACTIONS(339), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_in] = ACTIONS(339), + [anon_sym_BANGin] = ACTIONS(339), + [anon_sym_instanceof] = ACTIONS(339), + [anon_sym_BANGinstanceof] = ACTIONS(341), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_LT_EQ_GT] = ACTIONS(341), + [anon_sym_EQ_EQ_EQ] = ACTIONS(341), + [anon_sym_BANG_EQ_EQ] = ACTIONS(341), + [anon_sym_EQ_TILDE] = ACTIONS(341), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(339), + [anon_sym_CARET] = ACTIONS(341), + [anon_sym_PIPE] = ACTIONS(339), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_QMARK_COLON] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(341), + [anon_sym_ATinterface] = ACTIONS(341), + [anon_sym_interface] = ACTIONS(339), + [anon_sym_class] = ACTIONS(339), + [anon_sym_COMMA] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(341), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_RPAREN] = ACTIONS(341), + [anon_sym_do] = ACTIONS(339), + [anon_sym_while] = ACTIONS(339), + [anon_sym_for] = ACTIONS(339), + [anon_sym_if] = ACTIONS(339), + [anon_sym_else] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_pipeline] = ACTIONS(339), + [anon_sym_return] = ACTIONS(339), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(341), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(341), + [anon_sym_DOLLAR_SLASH] = ACTIONS(341), + [anon_sym_switch] = ACTIONS(339), + [anon_sym_QMARK] = ACTIONS(339), + [anon_sym_try] = ACTIONS(339), + [anon_sym_int] = ACTIONS(339), + [anon_sym_boolean] = ACTIONS(339), + [anon_sym_char] = ACTIONS(339), + [anon_sym_short] = ACTIONS(339), + [anon_sym_long] = ACTIONS(339), + [anon_sym_float] = ACTIONS(339), + [anon_sym_double] = ACTIONS(339), + [anon_sym_void] = ACTIONS(339), + [anon_sym_public] = ACTIONS(339), + [anon_sym_protected] = ACTIONS(339), + [anon_sym_private] = ACTIONS(339), + [anon_sym_static] = ACTIONS(339), + [anon_sym_final] = ACTIONS(339), + [anon_sym_synchronized] = ACTIONS(339), + }, + [267] = { + [sym_comment] = STATE(267), + [sym_groovy_doc] = STATE(267), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(642), + [anon_sym_DOT_AT] = ACTIONS(642), + [anon_sym_QMARK_DOT] = ACTIONS(642), + [anon_sym_STAR_DOT] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(646), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_GT_GT_GT] = ACTIONS(652), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_in] = ACTIONS(646), + [anon_sym_BANGin] = ACTIONS(646), + [anon_sym_instanceof] = ACTIONS(646), + [anon_sym_BANGinstanceof] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(658), + [anon_sym_BANG_EQ] = ACTIONS(658), + [anon_sym_LT_EQ_GT] = ACTIONS(660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(660), + [anon_sym_EQ_TILDE] = ACTIONS(660), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_case] = ACTIONS(351), + [anon_sym_default] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [268] = { + [sym_comment] = STATE(268), + [sym_groovy_doc] = STATE(268), + [sym_identifier] = ACTIONS(379), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_DOT_AMP] = ACTIONS(381), + [anon_sym_DOT_AT] = ACTIONS(381), + [anon_sym_QMARK_DOT] = ACTIONS(381), + [anon_sym_STAR_DOT] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(379), + [anon_sym_import] = ACTIONS(379), + [anon_sym_as] = ACTIONS(379), + [anon_sym_package] = ACTIONS(379), + [anon_sym_AT] = ACTIONS(379), + [anon_sym_assert] = ACTIONS(379), + [anon_sym_PLUS_PLUS] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(379), + [anon_sym_DASH] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(379), + [anon_sym_GT_GT_GT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_LT] = ACTIONS(381), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(381), + [anon_sym_LT_DOT_DOT] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_in] = ACTIONS(379), + [anon_sym_BANGin] = ACTIONS(379), + [anon_sym_instanceof] = ACTIONS(379), + [anon_sym_BANGinstanceof] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT_EQ_GT] = ACTIONS(381), + [anon_sym_EQ_EQ_EQ] = ACTIONS(381), + [anon_sym_BANG_EQ_EQ] = ACTIONS(381), + [anon_sym_EQ_TILDE] = ACTIONS(381), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [anon_sym_QMARK_COLON] = ACTIONS(381), + [anon_sym_STAR_STAR] = ACTIONS(381), + [anon_sym_ATinterface] = ACTIONS(381), + [anon_sym_interface] = ACTIONS(379), + [anon_sym_class] = ACTIONS(379), + [anon_sym_COMMA] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(381), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(379), + [anon_sym_do] = ACTIONS(379), + [anon_sym_while] = ACTIONS(379), + [anon_sym_for] = ACTIONS(379), + [anon_sym_if] = ACTIONS(379), + [anon_sym_else] = ACTIONS(379), + [anon_sym_return] = ACTIONS(379), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(381), + [anon_sym_DOLLAR_SLASH] = ACTIONS(381), + [anon_sym_switch] = ACTIONS(379), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(379), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_try] = ACTIONS(379), + [anon_sym_catch] = ACTIONS(379), + [anon_sym_finally] = ACTIONS(379), + [anon_sym_int] = ACTIONS(379), + [anon_sym_boolean] = ACTIONS(379), + [anon_sym_char] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [anon_sym_long] = ACTIONS(379), + [anon_sym_float] = ACTIONS(379), + [anon_sym_double] = ACTIONS(379), + [anon_sym_void] = ACTIONS(379), + [anon_sym_public] = ACTIONS(379), + [anon_sym_protected] = ACTIONS(379), + [anon_sym_private] = ACTIONS(379), + [anon_sym_static] = ACTIONS(379), + [anon_sym_final] = ACTIONS(379), + [anon_sym_synchronized] = ACTIONS(379), + }, + [269] = { + [sym_comment] = STATE(269), + [sym_groovy_doc] = STATE(269), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(642), + [anon_sym_DOT_AT] = ACTIONS(642), + [anon_sym_QMARK_DOT] = ACTIONS(642), + [anon_sym_STAR_DOT] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(646), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_GT_GT_GT] = ACTIONS(652), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_in] = ACTIONS(646), + [anon_sym_BANGin] = ACTIONS(646), + [anon_sym_instanceof] = ACTIONS(646), + [anon_sym_BANGinstanceof] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_case] = ACTIONS(351), + [anon_sym_default] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [270] = { + [sym_comment] = STATE(270), + [sym_groovy_doc] = STATE(270), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(642), + [anon_sym_DOT_AT] = ACTIONS(642), + [anon_sym_QMARK_DOT] = ACTIONS(642), + [anon_sym_STAR_DOT] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(646), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_GT_GT_GT] = ACTIONS(652), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_in] = ACTIONS(646), + [anon_sym_BANGin] = ACTIONS(646), + [anon_sym_instanceof] = ACTIONS(646), + [anon_sym_BANGinstanceof] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(658), + [anon_sym_BANG_EQ] = ACTIONS(658), + [anon_sym_LT_EQ_GT] = ACTIONS(660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(660), + [anon_sym_EQ_TILDE] = ACTIONS(660), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_case] = ACTIONS(351), + [anon_sym_default] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [271] = { + [sym_comment] = STATE(271), + [sym_groovy_doc] = STATE(271), + [sym_identifier] = ACTIONS(355), + [anon_sym_break] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_DOT_AMP] = ACTIONS(357), + [anon_sym_DOT_AT] = ACTIONS(357), + [anon_sym_QMARK_DOT] = ACTIONS(357), + [anon_sym_STAR_DOT] = ACTIONS(357), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_import] = ACTIONS(355), + [anon_sym_as] = ACTIONS(355), + [anon_sym_package] = ACTIONS(355), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_assert] = ACTIONS(355), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(355), + [anon_sym_PLUS] = ACTIONS(355), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_LT_LT] = ACTIONS(357), + [anon_sym_GT_GT] = ACTIONS(355), + [anon_sym_GT_GT_GT] = ACTIONS(357), + [anon_sym_DOT_DOT] = ACTIONS(355), + [anon_sym_DOT_DOT_LT] = ACTIONS(357), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(357), + [anon_sym_LT_DOT_DOT] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_LT_EQ] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_EQ] = ACTIONS(357), + [anon_sym_in] = ACTIONS(355), + [anon_sym_BANGin] = ACTIONS(355), + [anon_sym_instanceof] = ACTIONS(355), + [anon_sym_BANGinstanceof] = ACTIONS(357), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_BANG_EQ] = ACTIONS(355), + [anon_sym_LT_EQ_GT] = ACTIONS(357), + [anon_sym_EQ_EQ_EQ] = ACTIONS(357), + [anon_sym_BANG_EQ_EQ] = ACTIONS(357), + [anon_sym_EQ_TILDE] = ACTIONS(357), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_CARET] = ACTIONS(357), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(357), + [anon_sym_PIPE_PIPE] = ACTIONS(357), + [anon_sym_QMARK_COLON] = ACTIONS(357), + [anon_sym_STAR_STAR] = ACTIONS(357), + [anon_sym_ATinterface] = ACTIONS(357), + [anon_sym_interface] = ACTIONS(355), + [anon_sym_class] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_RBRACE] = ACTIONS(357), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(355), + [anon_sym_do] = ACTIONS(355), + [anon_sym_while] = ACTIONS(355), + [anon_sym_for] = ACTIONS(355), + [anon_sym_if] = ACTIONS(355), + [anon_sym_else] = ACTIONS(355), + [anon_sym_return] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(355), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(357), + [anon_sym_DOLLAR_SLASH] = ACTIONS(357), + [anon_sym_switch] = ACTIONS(355), + [anon_sym_case] = ACTIONS(355), + [anon_sym_default] = ACTIONS(355), + [anon_sym_QMARK] = ACTIONS(355), + [anon_sym_try] = ACTIONS(355), + [anon_sym_catch] = ACTIONS(355), + [anon_sym_finally] = ACTIONS(355), + [anon_sym_int] = ACTIONS(355), + [anon_sym_boolean] = ACTIONS(355), + [anon_sym_char] = ACTIONS(355), + [anon_sym_short] = ACTIONS(355), + [anon_sym_long] = ACTIONS(355), + [anon_sym_float] = ACTIONS(355), + [anon_sym_double] = ACTIONS(355), + [anon_sym_void] = ACTIONS(355), + [anon_sym_public] = ACTIONS(355), + [anon_sym_protected] = ACTIONS(355), + [anon_sym_private] = ACTIONS(355), + [anon_sym_static] = ACTIONS(355), + [anon_sym_final] = ACTIONS(355), + [anon_sym_synchronized] = ACTIONS(355), + }, + [272] = { + [sym_comment] = STATE(272), + [sym_groovy_doc] = STATE(272), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(642), + [anon_sym_DOT_AT] = ACTIONS(642), + [anon_sym_QMARK_DOT] = ACTIONS(642), + [anon_sym_STAR_DOT] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(646), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_GT_GT_GT] = ACTIONS(652), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_in] = ACTIONS(646), + [anon_sym_BANGin] = ACTIONS(646), + [anon_sym_instanceof] = ACTIONS(646), + [anon_sym_BANGinstanceof] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(658), + [anon_sym_BANG_EQ] = ACTIONS(658), + [anon_sym_LT_EQ_GT] = ACTIONS(660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(660), + [anon_sym_EQ_TILDE] = ACTIONS(660), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_case] = ACTIONS(351), + [anon_sym_default] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [273] = { + [sym_comment] = STATE(273), + [sym_groovy_doc] = STATE(273), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(642), + [anon_sym_DOT_AT] = ACTIONS(642), + [anon_sym_QMARK_DOT] = ACTIONS(642), + [anon_sym_STAR_DOT] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(646), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_GT_GT_GT] = ACTIONS(652), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_in] = ACTIONS(646), + [anon_sym_BANGin] = ACTIONS(646), + [anon_sym_instanceof] = ACTIONS(646), + [anon_sym_BANGinstanceof] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(658), + [anon_sym_BANG_EQ] = ACTIONS(658), + [anon_sym_LT_EQ_GT] = ACTIONS(660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(660), + [anon_sym_EQ_TILDE] = ACTIONS(660), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_case] = ACTIONS(351), + [anon_sym_default] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [274] = { + [sym_comment] = STATE(274), + [sym_groovy_doc] = STATE(274), + [sym_identifier] = ACTIONS(413), + [anon_sym_break] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_DOT_AMP] = ACTIONS(415), + [anon_sym_DOT_AT] = ACTIONS(415), + [anon_sym_QMARK_DOT] = ACTIONS(415), + [anon_sym_STAR_DOT] = ACTIONS(415), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_import] = ACTIONS(413), + [anon_sym_as] = ACTIONS(413), + [anon_sym_package] = ACTIONS(413), + [anon_sym_AT] = ACTIONS(413), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_PLUS_PLUS] = ACTIONS(415), + [anon_sym_DASH_DASH] = ACTIONS(415), + [anon_sym_PERCENT] = ACTIONS(415), + [anon_sym_SLASH] = ACTIONS(413), + [anon_sym_PLUS] = ACTIONS(413), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(415), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_GT_GT_GT] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(413), + [anon_sym_DOT_DOT_LT] = ACTIONS(415), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(415), + [anon_sym_LT_DOT_DOT] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_EQ] = ACTIONS(413), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_in] = ACTIONS(413), + [anon_sym_BANGin] = ACTIONS(413), + [anon_sym_instanceof] = ACTIONS(413), + [anon_sym_BANGinstanceof] = ACTIONS(415), + [anon_sym_EQ_EQ] = ACTIONS(413), + [anon_sym_BANG_EQ] = ACTIONS(413), + [anon_sym_LT_EQ_GT] = ACTIONS(415), + [anon_sym_EQ_EQ_EQ] = ACTIONS(415), + [anon_sym_BANG_EQ_EQ] = ACTIONS(415), + [anon_sym_EQ_TILDE] = ACTIONS(415), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_QMARK_COLON] = ACTIONS(415), + [anon_sym_STAR_STAR] = ACTIONS(415), + [anon_sym_ATinterface] = ACTIONS(415), + [anon_sym_interface] = ACTIONS(413), + [anon_sym_class] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(413), + [anon_sym_do] = ACTIONS(413), + [anon_sym_while] = ACTIONS(413), + [anon_sym_for] = ACTIONS(413), + [anon_sym_if] = ACTIONS(413), + [anon_sym_else] = ACTIONS(413), + [anon_sym_return] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(415), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_DOLLAR_SLASH] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(413), + [anon_sym_case] = ACTIONS(413), + [anon_sym_default] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(413), + [anon_sym_try] = ACTIONS(413), + [anon_sym_catch] = ACTIONS(413), + [anon_sym_finally] = ACTIONS(413), + [anon_sym_int] = ACTIONS(413), + [anon_sym_boolean] = ACTIONS(413), + [anon_sym_char] = ACTIONS(413), + [anon_sym_short] = ACTIONS(413), + [anon_sym_long] = ACTIONS(413), + [anon_sym_float] = ACTIONS(413), + [anon_sym_double] = ACTIONS(413), + [anon_sym_void] = ACTIONS(413), + [anon_sym_public] = ACTIONS(413), + [anon_sym_protected] = ACTIONS(413), + [anon_sym_private] = ACTIONS(413), + [anon_sym_static] = ACTIONS(413), + [anon_sym_final] = ACTIONS(413), + [anon_sym_synchronized] = ACTIONS(413), + }, + [275] = { + [sym_comment] = STATE(275), + [sym_groovy_doc] = STATE(275), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(642), + [anon_sym_DOT_AT] = ACTIONS(642), + [anon_sym_QMARK_DOT] = ACTIONS(642), + [anon_sym_STAR_DOT] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LT_LT] = ACTIONS(353), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_GT_GT_GT] = ACTIONS(353), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_case] = ACTIONS(351), + [anon_sym_default] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [276] = { + [sym_comment] = STATE(276), + [sym_groovy_doc] = STATE(276), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(642), + [anon_sym_DOT_AT] = ACTIONS(642), + [anon_sym_QMARK_DOT] = ACTIONS(642), + [anon_sym_STAR_DOT] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_GT_GT_GT] = ACTIONS(652), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_case] = ACTIONS(351), + [anon_sym_default] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [277] = { + [sym_comment] = STATE(277), + [sym_groovy_doc] = STATE(277), + [sym_identifier] = ACTIONS(389), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_SEMI] = ACTIONS(391), + [anon_sym_DOT_AMP] = ACTIONS(642), + [anon_sym_DOT_AT] = ACTIONS(642), + [anon_sym_QMARK_DOT] = ACTIONS(642), + [anon_sym_STAR_DOT] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_import] = ACTIONS(389), + [anon_sym_as] = ACTIONS(646), + [anon_sym_package] = ACTIONS(389), + [anon_sym_AT] = ACTIONS(389), + [anon_sym_assert] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_GT_GT_GT] = ACTIONS(652), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_in] = ACTIONS(646), + [anon_sym_BANGin] = ACTIONS(646), + [anon_sym_instanceof] = ACTIONS(646), + [anon_sym_BANGinstanceof] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(658), + [anon_sym_BANG_EQ] = ACTIONS(658), + [anon_sym_LT_EQ_GT] = ACTIONS(660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(660), + [anon_sym_EQ_TILDE] = ACTIONS(660), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(670), + [anon_sym_QMARK_COLON] = ACTIONS(672), + [anon_sym_STAR_STAR] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(391), + [anon_sym_interface] = ACTIONS(389), + [anon_sym_class] = ACTIONS(389), + [anon_sym_COMMA] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(391), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(389), + [anon_sym_do] = ACTIONS(389), + [anon_sym_while] = ACTIONS(389), + [anon_sym_for] = ACTIONS(389), + [anon_sym_if] = ACTIONS(389), + [anon_sym_else] = ACTIONS(389), + [anon_sym_return] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(391), + [anon_sym_DQUOTE] = ACTIONS(389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(391), + [anon_sym_DOLLAR_SLASH] = ACTIONS(391), + [anon_sym_switch] = ACTIONS(389), + [anon_sym_case] = ACTIONS(389), + [anon_sym_default] = ACTIONS(389), + [anon_sym_QMARK] = ACTIONS(678), + [anon_sym_try] = ACTIONS(389), + [anon_sym_catch] = ACTIONS(389), + [anon_sym_finally] = ACTIONS(389), + [anon_sym_int] = ACTIONS(389), + [anon_sym_boolean] = ACTIONS(389), + [anon_sym_char] = ACTIONS(389), + [anon_sym_short] = ACTIONS(389), + [anon_sym_long] = ACTIONS(389), + [anon_sym_float] = ACTIONS(389), + [anon_sym_double] = ACTIONS(389), + [anon_sym_void] = ACTIONS(389), + [anon_sym_public] = ACTIONS(389), + [anon_sym_protected] = ACTIONS(389), + [anon_sym_private] = ACTIONS(389), + [anon_sym_static] = ACTIONS(389), + [anon_sym_final] = ACTIONS(389), + [anon_sym_synchronized] = ACTIONS(389), + }, + [278] = { + [sym_comment] = STATE(278), + [sym_groovy_doc] = STATE(278), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(642), + [anon_sym_DOT_AT] = ACTIONS(642), + [anon_sym_QMARK_DOT] = ACTIONS(642), + [anon_sym_STAR_DOT] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(353), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LT_LT] = ACTIONS(353), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_GT_GT_GT] = ACTIONS(353), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_case] = ACTIONS(351), + [anon_sym_default] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [279] = { + [sym_comment] = STATE(279), + [sym_groovy_doc] = STATE(279), + [sym_identifier] = ACTIONS(401), + [anon_sym_break] = ACTIONS(401), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(403), + [anon_sym_DOT_AMP] = ACTIONS(403), + [anon_sym_DOT_AT] = ACTIONS(403), + [anon_sym_QMARK_DOT] = ACTIONS(403), + [anon_sym_STAR_DOT] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_import] = ACTIONS(401), + [anon_sym_as] = ACTIONS(401), + [anon_sym_package] = ACTIONS(401), + [anon_sym_AT] = ACTIONS(401), + [anon_sym_assert] = ACTIONS(401), + [anon_sym_PLUS_PLUS] = ACTIONS(403), + [anon_sym_DASH_DASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_GT_GT_GT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_LT] = ACTIONS(403), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(403), + [anon_sym_LT_DOT_DOT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(403), + [anon_sym_in] = ACTIONS(401), + [anon_sym_BANGin] = ACTIONS(401), + [anon_sym_instanceof] = ACTIONS(401), + [anon_sym_BANGinstanceof] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_LT_EQ_GT] = ACTIONS(403), + [anon_sym_EQ_EQ_EQ] = ACTIONS(403), + [anon_sym_BANG_EQ_EQ] = ACTIONS(403), + [anon_sym_EQ_TILDE] = ACTIONS(403), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_QMARK_COLON] = ACTIONS(403), + [anon_sym_STAR_STAR] = ACTIONS(403), + [anon_sym_ATinterface] = ACTIONS(403), + [anon_sym_interface] = ACTIONS(401), + [anon_sym_class] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(403), + [anon_sym_RBRACE] = ACTIONS(403), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(401), + [anon_sym_do] = ACTIONS(401), + [anon_sym_while] = ACTIONS(401), + [anon_sym_for] = ACTIONS(401), + [anon_sym_if] = ACTIONS(401), + [anon_sym_else] = ACTIONS(401), + [anon_sym_return] = ACTIONS(401), + [anon_sym_SQUOTE] = ACTIONS(401), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(403), + [anon_sym_DQUOTE] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_DOLLAR_SLASH] = ACTIONS(403), + [anon_sym_switch] = ACTIONS(401), + [anon_sym_case] = ACTIONS(401), + [anon_sym_default] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_try] = ACTIONS(401), + [anon_sym_catch] = ACTIONS(401), + [anon_sym_finally] = ACTIONS(401), + [anon_sym_int] = ACTIONS(401), + [anon_sym_boolean] = ACTIONS(401), + [anon_sym_char] = ACTIONS(401), + [anon_sym_short] = ACTIONS(401), + [anon_sym_long] = ACTIONS(401), + [anon_sym_float] = ACTIONS(401), + [anon_sym_double] = ACTIONS(401), + [anon_sym_void] = ACTIONS(401), + [anon_sym_public] = ACTIONS(401), + [anon_sym_protected] = ACTIONS(401), + [anon_sym_private] = ACTIONS(401), + [anon_sym_static] = ACTIONS(401), + [anon_sym_final] = ACTIONS(401), + [anon_sym_synchronized] = ACTIONS(401), + }, + [280] = { + [sym_comment] = STATE(280), + [sym_groovy_doc] = STATE(280), + [sym_identifier] = ACTIONS(405), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(407), + [anon_sym_DOT_AMP] = ACTIONS(407), + [anon_sym_DOT_AT] = ACTIONS(407), + [anon_sym_QMARK_DOT] = ACTIONS(407), + [anon_sym_STAR_DOT] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_import] = ACTIONS(405), + [anon_sym_as] = ACTIONS(405), + [anon_sym_package] = ACTIONS(405), + [anon_sym_AT] = ACTIONS(405), + [anon_sym_assert] = ACTIONS(405), + [anon_sym_PLUS_PLUS] = ACTIONS(407), + [anon_sym_DASH_DASH] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_LT_LT] = ACTIONS(407), + [anon_sym_GT_GT] = ACTIONS(405), + [anon_sym_GT_GT_GT] = ACTIONS(407), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT_LT] = ACTIONS(407), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(407), + [anon_sym_LT_DOT_DOT] = ACTIONS(405), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(405), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_in] = ACTIONS(405), + [anon_sym_BANGin] = ACTIONS(405), + [anon_sym_instanceof] = ACTIONS(405), + [anon_sym_BANGinstanceof] = ACTIONS(407), + [anon_sym_EQ_EQ] = ACTIONS(405), + [anon_sym_BANG_EQ] = ACTIONS(405), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_EQ_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ_EQ] = ACTIONS(407), + [anon_sym_EQ_TILDE] = ACTIONS(407), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(405), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [anon_sym_QMARK_COLON] = ACTIONS(407), + [anon_sym_STAR_STAR] = ACTIONS(407), + [anon_sym_ATinterface] = ACTIONS(407), + [anon_sym_interface] = ACTIONS(405), + [anon_sym_class] = ACTIONS(405), + [anon_sym_COMMA] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_RBRACE] = ACTIONS(407), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(405), + [anon_sym_do] = ACTIONS(405), + [anon_sym_while] = ACTIONS(405), + [anon_sym_for] = ACTIONS(405), + [anon_sym_if] = ACTIONS(405), + [anon_sym_else] = ACTIONS(405), + [anon_sym_return] = ACTIONS(405), + [anon_sym_SQUOTE] = ACTIONS(405), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(405), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(407), + [anon_sym_DOLLAR_SLASH] = ACTIONS(407), + [anon_sym_switch] = ACTIONS(405), + [anon_sym_case] = ACTIONS(405), + [anon_sym_default] = ACTIONS(405), + [anon_sym_QMARK] = ACTIONS(405), + [anon_sym_try] = ACTIONS(405), + [anon_sym_catch] = ACTIONS(405), + [anon_sym_finally] = ACTIONS(405), + [anon_sym_int] = ACTIONS(405), + [anon_sym_boolean] = ACTIONS(405), + [anon_sym_char] = ACTIONS(405), + [anon_sym_short] = ACTIONS(405), + [anon_sym_long] = ACTIONS(405), + [anon_sym_float] = ACTIONS(405), + [anon_sym_double] = ACTIONS(405), + [anon_sym_void] = ACTIONS(405), + [anon_sym_public] = ACTIONS(405), + [anon_sym_protected] = ACTIONS(405), + [anon_sym_private] = ACTIONS(405), + [anon_sym_static] = ACTIONS(405), + [anon_sym_final] = ACTIONS(405), + [anon_sym_synchronized] = ACTIONS(405), + }, + [281] = { + [sym_comment] = STATE(281), + [sym_groovy_doc] = STATE(281), + [sym_identifier] = ACTIONS(409), + [anon_sym_break] = ACTIONS(409), + [anon_sym_continue] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(411), + [anon_sym_DOT_AMP] = ACTIONS(411), + [anon_sym_DOT_AT] = ACTIONS(411), + [anon_sym_QMARK_DOT] = ACTIONS(411), + [anon_sym_STAR_DOT] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(409), + [anon_sym_import] = ACTIONS(409), + [anon_sym_as] = ACTIONS(409), + [anon_sym_package] = ACTIONS(409), + [anon_sym_AT] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_PLUS_PLUS] = ACTIONS(411), + [anon_sym_DASH_DASH] = ACTIONS(411), + [anon_sym_PERCENT] = ACTIONS(411), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_LT_LT] = ACTIONS(411), + [anon_sym_GT_GT] = ACTIONS(409), + [anon_sym_GT_GT_GT] = ACTIONS(411), + [anon_sym_DOT_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT_LT] = ACTIONS(411), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(411), + [anon_sym_LT_DOT_DOT] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_LT_EQ] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_GT_EQ] = ACTIONS(411), + [anon_sym_in] = ACTIONS(409), + [anon_sym_BANGin] = ACTIONS(409), + [anon_sym_instanceof] = ACTIONS(409), + [anon_sym_BANGinstanceof] = ACTIONS(411), + [anon_sym_EQ_EQ] = ACTIONS(409), + [anon_sym_BANG_EQ] = ACTIONS(409), + [anon_sym_LT_EQ_GT] = ACTIONS(411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(411), + [anon_sym_EQ_TILDE] = ACTIONS(411), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_CARET] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(411), + [anon_sym_PIPE_PIPE] = ACTIONS(411), + [anon_sym_QMARK_COLON] = ACTIONS(411), + [anon_sym_STAR_STAR] = ACTIONS(411), + [anon_sym_ATinterface] = ACTIONS(411), + [anon_sym_interface] = ACTIONS(409), + [anon_sym_class] = ACTIONS(409), + [anon_sym_COMMA] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_RBRACE] = ACTIONS(411), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(409), + [anon_sym_do] = ACTIONS(409), + [anon_sym_while] = ACTIONS(409), + [anon_sym_for] = ACTIONS(409), + [anon_sym_if] = ACTIONS(409), + [anon_sym_else] = ACTIONS(409), + [anon_sym_return] = ACTIONS(409), + [anon_sym_SQUOTE] = ACTIONS(409), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(411), + [anon_sym_DOLLAR_SLASH] = ACTIONS(411), + [anon_sym_switch] = ACTIONS(409), + [anon_sym_case] = ACTIONS(409), + [anon_sym_default] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(409), + [anon_sym_try] = ACTIONS(409), + [anon_sym_catch] = ACTIONS(409), + [anon_sym_finally] = ACTIONS(409), + [anon_sym_int] = ACTIONS(409), + [anon_sym_boolean] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_short] = ACTIONS(409), + [anon_sym_long] = ACTIONS(409), + [anon_sym_float] = ACTIONS(409), + [anon_sym_double] = ACTIONS(409), + [anon_sym_void] = ACTIONS(409), + [anon_sym_public] = ACTIONS(409), + [anon_sym_protected] = ACTIONS(409), + [anon_sym_private] = ACTIONS(409), + [anon_sym_static] = ACTIONS(409), + [anon_sym_final] = ACTIONS(409), + [anon_sym_synchronized] = ACTIONS(409), + }, + [282] = { + [sym_comment] = STATE(282), + [sym_groovy_doc] = STATE(282), + [ts_builtin_sym_end] = ACTIONS(93), + [sym_identifier] = ACTIONS(99), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_DOT_AMP] = ACTIONS(93), + [anon_sym_DOT_AT] = ACTIONS(93), + [anon_sym_QMARK_DOT] = ACTIONS(93), + [anon_sym_STAR_DOT] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(97), + [anon_sym_import] = ACTIONS(99), + [anon_sym_as] = ACTIONS(99), + [anon_sym_package] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(93), + [anon_sym_SLASH] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(99), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_LT_LT] = ACTIONS(93), + [anon_sym_GT_GT] = ACTIONS(99), + [anon_sym_GT_GT_GT] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(99), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_in] = ACTIONS(99), + [anon_sym_BANGin] = ACTIONS(99), + [anon_sym_instanceof] = ACTIONS(99), + [anon_sym_BANGinstanceof] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_LT_EQ_GT] = ACTIONS(93), + [anon_sym_EQ_EQ_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ_EQ] = ACTIONS(93), + [anon_sym_EQ_TILDE] = ACTIONS(93), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(99), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(93), + [anon_sym_ATinterface] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(99), + [anon_sym_class] = ACTIONS(99), + [anon_sym_COMMA] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(93), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(99), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(99), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(99), + [anon_sym_if] = ACTIONS(99), + [anon_sym_else] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(101), + [anon_sym_pipeline] = ACTIONS(99), + [anon_sym_return] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_SLASH] = ACTIONS(93), + [anon_sym_switch] = ACTIONS(99), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_int] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_char] = ACTIONS(99), + [anon_sym_short] = ACTIONS(99), + [anon_sym_long] = ACTIONS(99), + [anon_sym_float] = ACTIONS(99), + [anon_sym_double] = ACTIONS(99), + [anon_sym_void] = ACTIONS(99), + [anon_sym_public] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_static] = ACTIONS(99), + [anon_sym_final] = ACTIONS(99), + [anon_sym_synchronized] = ACTIONS(99), + }, + [283] = { + [sym_comment] = STATE(283), + [sym_groovy_doc] = STATE(283), + [sym_identifier] = ACTIONS(329), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_DOT_AMP] = ACTIONS(331), + [anon_sym_DOT_AT] = ACTIONS(331), + [anon_sym_QMARK_DOT] = ACTIONS(331), + [anon_sym_STAR_DOT] = ACTIONS(331), + [anon_sym_STAR] = ACTIONS(329), + [anon_sym_import] = ACTIONS(329), + [anon_sym_as] = ACTIONS(329), + [anon_sym_package] = ACTIONS(329), + [anon_sym_AT] = ACTIONS(329), + [anon_sym_assert] = ACTIONS(329), + [anon_sym_PLUS_PLUS] = ACTIONS(331), + [anon_sym_DASH_DASH] = ACTIONS(331), + [anon_sym_PERCENT] = ACTIONS(331), + [anon_sym_SLASH] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(329), + [anon_sym_DASH] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(331), + [anon_sym_DOT_DOT] = ACTIONS(329), + [anon_sym_DOT_DOT_LT] = ACTIONS(331), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(331), + [anon_sym_LT_DOT_DOT] = ACTIONS(329), + [anon_sym_LT] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(329), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_GT_EQ] = ACTIONS(331), + [anon_sym_in] = ACTIONS(329), + [anon_sym_BANGin] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANGinstanceof] = ACTIONS(331), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_LT_EQ_GT] = ACTIONS(331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(331), + [anon_sym_EQ_TILDE] = ACTIONS(331), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(331), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(331), + [anon_sym_QMARK_COLON] = ACTIONS(331), + [anon_sym_STAR_STAR] = ACTIONS(331), + [anon_sym_ATinterface] = ACTIONS(331), + [anon_sym_interface] = ACTIONS(329), + [anon_sym_class] = ACTIONS(329), + [anon_sym_COMMA] = ACTIONS(331), + [anon_sym_LBRACE] = ACTIONS(331), + [anon_sym_RBRACE] = ACTIONS(331), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(329), + [anon_sym_do] = ACTIONS(329), + [anon_sym_while] = ACTIONS(329), + [anon_sym_for] = ACTIONS(329), + [anon_sym_if] = ACTIONS(329), + [anon_sym_else] = ACTIONS(329), + [anon_sym_return] = ACTIONS(329), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(329), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(331), + [anon_sym_DOLLAR_SLASH] = ACTIONS(331), + [anon_sym_switch] = ACTIONS(329), + [anon_sym_case] = ACTIONS(329), + [anon_sym_default] = ACTIONS(329), + [anon_sym_QMARK] = ACTIONS(329), + [anon_sym_try] = ACTIONS(329), + [anon_sym_catch] = ACTIONS(329), + [anon_sym_finally] = ACTIONS(329), + [anon_sym_int] = ACTIONS(329), + [anon_sym_boolean] = ACTIONS(329), + [anon_sym_char] = ACTIONS(329), + [anon_sym_short] = ACTIONS(329), + [anon_sym_long] = ACTIONS(329), + [anon_sym_float] = ACTIONS(329), + [anon_sym_double] = ACTIONS(329), + [anon_sym_void] = ACTIONS(329), + [anon_sym_public] = ACTIONS(329), + [anon_sym_protected] = ACTIONS(329), + [anon_sym_private] = ACTIONS(329), + [anon_sym_static] = ACTIONS(329), + [anon_sym_final] = ACTIONS(329), + [anon_sym_synchronized] = ACTIONS(329), + }, + [284] = { + [sym_comment] = STATE(284), + [sym_groovy_doc] = STATE(284), + [sym_identifier] = ACTIONS(429), + [anon_sym_break] = ACTIONS(429), + [anon_sym_continue] = ACTIONS(429), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_DOT_AMP] = ACTIONS(431), + [anon_sym_DOT_AT] = ACTIONS(431), + [anon_sym_QMARK_DOT] = ACTIONS(431), + [anon_sym_STAR_DOT] = ACTIONS(431), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_import] = ACTIONS(429), + [anon_sym_as] = ACTIONS(429), + [anon_sym_package] = ACTIONS(429), + [anon_sym_AT] = ACTIONS(429), + [anon_sym_assert] = ACTIONS(429), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(431), + [anon_sym_GT_GT] = ACTIONS(429), + [anon_sym_GT_GT_GT] = ACTIONS(431), + [anon_sym_DOT_DOT] = ACTIONS(429), + [anon_sym_DOT_DOT_LT] = ACTIONS(431), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(431), + [anon_sym_LT_DOT_DOT] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LT_EQ] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_EQ] = ACTIONS(431), + [anon_sym_in] = ACTIONS(429), + [anon_sym_BANGin] = ACTIONS(429), + [anon_sym_instanceof] = ACTIONS(429), + [anon_sym_BANGinstanceof] = ACTIONS(431), + [anon_sym_EQ_EQ] = ACTIONS(429), + [anon_sym_BANG_EQ] = ACTIONS(429), + [anon_sym_LT_EQ_GT] = ACTIONS(431), + [anon_sym_EQ_EQ_EQ] = ACTIONS(431), + [anon_sym_BANG_EQ_EQ] = ACTIONS(431), + [anon_sym_EQ_TILDE] = ACTIONS(431), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(431), + [anon_sym_PIPE_PIPE] = ACTIONS(431), + [anon_sym_QMARK_COLON] = ACTIONS(431), + [anon_sym_STAR_STAR] = ACTIONS(431), + [anon_sym_ATinterface] = ACTIONS(431), + [anon_sym_interface] = ACTIONS(429), + [anon_sym_class] = ACTIONS(429), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_RBRACE] = ACTIONS(431), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(429), + [anon_sym_do] = ACTIONS(429), + [anon_sym_while] = ACTIONS(429), + [anon_sym_for] = ACTIONS(429), + [anon_sym_if] = ACTIONS(429), + [anon_sym_else] = ACTIONS(429), + [anon_sym_return] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(429), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(429), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(431), + [anon_sym_DOLLAR_SLASH] = ACTIONS(431), + [anon_sym_switch] = ACTIONS(429), + [anon_sym_case] = ACTIONS(429), + [anon_sym_default] = ACTIONS(429), + [anon_sym_QMARK] = ACTIONS(429), + [anon_sym_try] = ACTIONS(429), + [anon_sym_catch] = ACTIONS(429), + [anon_sym_finally] = ACTIONS(429), + [anon_sym_int] = ACTIONS(429), + [anon_sym_boolean] = ACTIONS(429), + [anon_sym_char] = ACTIONS(429), + [anon_sym_short] = ACTIONS(429), + [anon_sym_long] = ACTIONS(429), + [anon_sym_float] = ACTIONS(429), + [anon_sym_double] = ACTIONS(429), + [anon_sym_void] = ACTIONS(429), + [anon_sym_public] = ACTIONS(429), + [anon_sym_protected] = ACTIONS(429), + [anon_sym_private] = ACTIONS(429), + [anon_sym_static] = ACTIONS(429), + [anon_sym_final] = ACTIONS(429), + [anon_sym_synchronized] = ACTIONS(429), + }, + [285] = { + [sym_comment] = STATE(285), + [sym_groovy_doc] = STATE(285), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(642), + [anon_sym_DOT_AT] = ACTIONS(642), + [anon_sym_QMARK_DOT] = ACTIONS(642), + [anon_sym_STAR_DOT] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(646), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_GT_GT_GT] = ACTIONS(652), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_in] = ACTIONS(646), + [anon_sym_BANGin] = ACTIONS(646), + [anon_sym_instanceof] = ACTIONS(646), + [anon_sym_BANGinstanceof] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(658), + [anon_sym_BANG_EQ] = ACTIONS(658), + [anon_sym_LT_EQ_GT] = ACTIONS(660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(660), + [anon_sym_EQ_TILDE] = ACTIONS(660), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_case] = ACTIONS(351), + [anon_sym_default] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [286] = { + [sym_comment] = STATE(286), + [sym_groovy_doc] = STATE(286), + [sym_identifier] = ACTIONS(259), + [anon_sym_break] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(259), + [anon_sym_SEMI] = ACTIONS(261), + [anon_sym_DOT_AMP] = ACTIONS(261), + [anon_sym_DOT_AT] = ACTIONS(261), + [anon_sym_QMARK_DOT] = ACTIONS(261), + [anon_sym_STAR_DOT] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(259), + [anon_sym_import] = ACTIONS(259), + [anon_sym_as] = ACTIONS(259), + [anon_sym_package] = ACTIONS(259), + [anon_sym_AT] = ACTIONS(259), + [anon_sym_assert] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(261), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_GT_GT_GT] = ACTIONS(261), + [anon_sym_DOT_DOT] = ACTIONS(259), + [anon_sym_DOT_DOT_LT] = ACTIONS(261), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(261), + [anon_sym_LT_DOT_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(259), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_GT_EQ] = ACTIONS(261), + [anon_sym_in] = ACTIONS(259), + [anon_sym_BANGin] = ACTIONS(259), + [anon_sym_instanceof] = ACTIONS(259), + [anon_sym_BANGinstanceof] = ACTIONS(261), + [anon_sym_EQ_EQ] = ACTIONS(259), + [anon_sym_BANG_EQ] = ACTIONS(259), + [anon_sym_LT_EQ_GT] = ACTIONS(261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(261), + [anon_sym_BANG_EQ_EQ] = ACTIONS(261), + [anon_sym_EQ_TILDE] = ACTIONS(261), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_CARET] = ACTIONS(261), + [anon_sym_PIPE] = ACTIONS(259), + [anon_sym_AMP_AMP] = ACTIONS(261), + [anon_sym_PIPE_PIPE] = ACTIONS(261), + [anon_sym_QMARK_COLON] = ACTIONS(261), + [anon_sym_STAR_STAR] = ACTIONS(261), + [anon_sym_ATinterface] = ACTIONS(261), + [anon_sym_interface] = ACTIONS(259), + [anon_sym_class] = ACTIONS(259), + [anon_sym_COMMA] = ACTIONS(261), + [anon_sym_LBRACE] = ACTIONS(261), + [anon_sym_RBRACE] = ACTIONS(261), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(259), + [anon_sym_do] = ACTIONS(259), + [anon_sym_while] = ACTIONS(259), + [anon_sym_for] = ACTIONS(259), + [anon_sym_if] = ACTIONS(259), + [anon_sym_else] = ACTIONS(259), + [anon_sym_return] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(261), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_SLASH] = ACTIONS(261), + [anon_sym_switch] = ACTIONS(259), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(259), + [anon_sym_QMARK] = ACTIONS(259), + [anon_sym_try] = ACTIONS(259), + [anon_sym_catch] = ACTIONS(259), + [anon_sym_finally] = ACTIONS(259), + [anon_sym_int] = ACTIONS(259), + [anon_sym_boolean] = ACTIONS(259), + [anon_sym_char] = ACTIONS(259), + [anon_sym_short] = ACTIONS(259), + [anon_sym_long] = ACTIONS(259), + [anon_sym_float] = ACTIONS(259), + [anon_sym_double] = ACTIONS(259), + [anon_sym_void] = ACTIONS(259), + [anon_sym_public] = ACTIONS(259), + [anon_sym_protected] = ACTIONS(259), + [anon_sym_private] = ACTIONS(259), + [anon_sym_static] = ACTIONS(259), + [anon_sym_final] = ACTIONS(259), + [anon_sym_synchronized] = ACTIONS(259), + }, + [287] = { + [sym_comment] = STATE(287), + [sym_groovy_doc] = STATE(287), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(642), + [anon_sym_DOT_AT] = ACTIONS(642), + [anon_sym_QMARK_DOT] = ACTIONS(642), + [anon_sym_STAR_DOT] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_LT_LT] = ACTIONS(353), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_GT_GT_GT] = ACTIONS(353), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_case] = ACTIONS(351), + [anon_sym_default] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [288] = { + [sym_comment] = STATE(288), + [sym_groovy_doc] = STATE(288), + [sym_identifier] = ACTIONS(363), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(365), + [anon_sym_DOT_AMP] = ACTIONS(365), + [anon_sym_DOT_AT] = ACTIONS(365), + [anon_sym_QMARK_DOT] = ACTIONS(365), + [anon_sym_STAR_DOT] = ACTIONS(365), + [anon_sym_STAR] = ACTIONS(363), + [anon_sym_import] = ACTIONS(363), + [anon_sym_as] = ACTIONS(363), + [anon_sym_package] = ACTIONS(363), + [anon_sym_AT] = ACTIONS(363), + [anon_sym_assert] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(365), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(363), + [anon_sym_DASH] = ACTIONS(363), + [anon_sym_LT_LT] = ACTIONS(365), + [anon_sym_GT_GT] = ACTIONS(363), + [anon_sym_GT_GT_GT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(363), + [anon_sym_DOT_DOT_LT] = ACTIONS(365), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(365), + [anon_sym_LT_DOT_DOT] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(363), + [anon_sym_LT_EQ] = ACTIONS(363), + [anon_sym_GT] = ACTIONS(363), + [anon_sym_GT_EQ] = ACTIONS(365), + [anon_sym_in] = ACTIONS(363), + [anon_sym_BANGin] = ACTIONS(363), + [anon_sym_instanceof] = ACTIONS(363), + [anon_sym_BANGinstanceof] = ACTIONS(365), + [anon_sym_EQ_EQ] = ACTIONS(363), + [anon_sym_BANG_EQ] = ACTIONS(363), + [anon_sym_LT_EQ_GT] = ACTIONS(365), + [anon_sym_EQ_EQ_EQ] = ACTIONS(365), + [anon_sym_BANG_EQ_EQ] = ACTIONS(365), + [anon_sym_EQ_TILDE] = ACTIONS(365), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(365), + [anon_sym_AMP] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(363), + [anon_sym_AMP_AMP] = ACTIONS(365), + [anon_sym_PIPE_PIPE] = ACTIONS(365), + [anon_sym_QMARK_COLON] = ACTIONS(365), + [anon_sym_STAR_STAR] = ACTIONS(365), + [anon_sym_ATinterface] = ACTIONS(365), + [anon_sym_interface] = ACTIONS(363), + [anon_sym_class] = ACTIONS(363), + [anon_sym_COMMA] = ACTIONS(365), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_RBRACE] = ACTIONS(365), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(363), + [anon_sym_do] = ACTIONS(363), + [anon_sym_while] = ACTIONS(363), + [anon_sym_for] = ACTIONS(363), + [anon_sym_if] = ACTIONS(363), + [anon_sym_else] = ACTIONS(363), + [anon_sym_return] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(363), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(365), + [anon_sym_DQUOTE] = ACTIONS(363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(365), + [anon_sym_DOLLAR_SLASH] = ACTIONS(365), + [anon_sym_switch] = ACTIONS(363), + [anon_sym_case] = ACTIONS(363), + [anon_sym_default] = ACTIONS(363), + [anon_sym_QMARK] = ACTIONS(363), + [anon_sym_try] = ACTIONS(363), + [anon_sym_catch] = ACTIONS(363), + [anon_sym_finally] = ACTIONS(363), + [anon_sym_int] = ACTIONS(363), + [anon_sym_boolean] = ACTIONS(363), + [anon_sym_char] = ACTIONS(363), + [anon_sym_short] = ACTIONS(363), + [anon_sym_long] = ACTIONS(363), + [anon_sym_float] = ACTIONS(363), + [anon_sym_double] = ACTIONS(363), + [anon_sym_void] = ACTIONS(363), + [anon_sym_public] = ACTIONS(363), + [anon_sym_protected] = ACTIONS(363), + [anon_sym_private] = ACTIONS(363), + [anon_sym_static] = ACTIONS(363), + [anon_sym_final] = ACTIONS(363), + [anon_sym_synchronized] = ACTIONS(363), + }, + [289] = { + [sym_comment] = STATE(289), + [sym_groovy_doc] = STATE(289), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(642), + [anon_sym_DOT_AT] = ACTIONS(642), + [anon_sym_QMARK_DOT] = ACTIONS(642), + [anon_sym_STAR_DOT] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(646), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_GT_GT_GT] = ACTIONS(652), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_in] = ACTIONS(646), + [anon_sym_BANGin] = ACTIONS(646), + [anon_sym_instanceof] = ACTIONS(646), + [anon_sym_BANGinstanceof] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(658), + [anon_sym_BANG_EQ] = ACTIONS(658), + [anon_sym_LT_EQ_GT] = ACTIONS(660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(660), + [anon_sym_EQ_TILDE] = ACTIONS(660), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(670), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_case] = ACTIONS(351), + [anon_sym_default] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [290] = { + [sym_comment] = STATE(290), + [sym_groovy_doc] = STATE(290), + [sym_identifier] = ACTIONS(421), + [anon_sym_break] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_SEMI] = ACTIONS(423), + [anon_sym_DOT_AMP] = ACTIONS(423), + [anon_sym_DOT_AT] = ACTIONS(423), + [anon_sym_QMARK_DOT] = ACTIONS(423), + [anon_sym_STAR_DOT] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(421), + [anon_sym_import] = ACTIONS(421), + [anon_sym_as] = ACTIONS(421), + [anon_sym_package] = ACTIONS(421), + [anon_sym_AT] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_PLUS_PLUS] = ACTIONS(423), + [anon_sym_DASH_DASH] = ACTIONS(423), + [anon_sym_PERCENT] = ACTIONS(423), + [anon_sym_SLASH] = ACTIONS(421), + [anon_sym_PLUS] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(421), + [anon_sym_LT_LT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(421), + [anon_sym_GT_GT_GT] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(421), + [anon_sym_DOT_DOT_LT] = ACTIONS(423), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(423), + [anon_sym_LT_DOT_DOT] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_LT_EQ] = ACTIONS(421), + [anon_sym_GT] = ACTIONS(421), + [anon_sym_GT_EQ] = ACTIONS(423), + [anon_sym_in] = ACTIONS(421), + [anon_sym_BANGin] = ACTIONS(421), + [anon_sym_instanceof] = ACTIONS(421), + [anon_sym_BANGinstanceof] = ACTIONS(423), + [anon_sym_EQ_EQ] = ACTIONS(421), + [anon_sym_BANG_EQ] = ACTIONS(421), + [anon_sym_LT_EQ_GT] = ACTIONS(423), + [anon_sym_EQ_EQ_EQ] = ACTIONS(423), + [anon_sym_BANG_EQ_EQ] = ACTIONS(423), + [anon_sym_EQ_TILDE] = ACTIONS(423), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(421), + [anon_sym_CARET] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_AMP_AMP] = ACTIONS(423), + [anon_sym_PIPE_PIPE] = ACTIONS(423), + [anon_sym_QMARK_COLON] = ACTIONS(423), + [anon_sym_STAR_STAR] = ACTIONS(423), + [anon_sym_ATinterface] = ACTIONS(423), + [anon_sym_interface] = ACTIONS(421), + [anon_sym_class] = ACTIONS(421), + [anon_sym_COMMA] = ACTIONS(423), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_RBRACE] = ACTIONS(423), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(421), + [anon_sym_do] = ACTIONS(421), + [anon_sym_while] = ACTIONS(421), + [anon_sym_for] = ACTIONS(421), + [anon_sym_if] = ACTIONS(421), + [anon_sym_else] = ACTIONS(421), + [anon_sym_return] = ACTIONS(421), + [anon_sym_SQUOTE] = ACTIONS(421), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(423), + [anon_sym_DQUOTE] = ACTIONS(421), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(423), + [anon_sym_DOLLAR_SLASH] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(421), + [anon_sym_case] = ACTIONS(421), + [anon_sym_default] = ACTIONS(421), + [anon_sym_QMARK] = ACTIONS(421), + [anon_sym_try] = ACTIONS(421), + [anon_sym_catch] = ACTIONS(421), + [anon_sym_finally] = ACTIONS(421), + [anon_sym_int] = ACTIONS(421), + [anon_sym_boolean] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_short] = ACTIONS(421), + [anon_sym_long] = ACTIONS(421), + [anon_sym_float] = ACTIONS(421), + [anon_sym_double] = ACTIONS(421), + [anon_sym_void] = ACTIONS(421), + [anon_sym_public] = ACTIONS(421), + [anon_sym_protected] = ACTIONS(421), + [anon_sym_private] = ACTIONS(421), + [anon_sym_static] = ACTIONS(421), + [anon_sym_final] = ACTIONS(421), + [anon_sym_synchronized] = ACTIONS(421), + }, + [291] = { + [sym_comment] = STATE(291), + [sym_groovy_doc] = STATE(291), + [sym_identifier] = ACTIONS(413), + [anon_sym_break] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_DOT_AMP] = ACTIONS(642), + [anon_sym_DOT_AT] = ACTIONS(642), + [anon_sym_QMARK_DOT] = ACTIONS(642), + [anon_sym_STAR_DOT] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_import] = ACTIONS(413), + [anon_sym_as] = ACTIONS(413), + [anon_sym_package] = ACTIONS(413), + [anon_sym_AT] = ACTIONS(413), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_PLUS_PLUS] = ACTIONS(415), + [anon_sym_DASH_DASH] = ACTIONS(415), + [anon_sym_PERCENT] = ACTIONS(415), + [anon_sym_SLASH] = ACTIONS(413), + [anon_sym_PLUS] = ACTIONS(413), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(415), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_GT_GT_GT] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(413), + [anon_sym_DOT_DOT_LT] = ACTIONS(415), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(415), + [anon_sym_LT_DOT_DOT] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_EQ] = ACTIONS(413), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_in] = ACTIONS(413), + [anon_sym_BANGin] = ACTIONS(413), + [anon_sym_instanceof] = ACTIONS(413), + [anon_sym_BANGinstanceof] = ACTIONS(415), + [anon_sym_EQ_EQ] = ACTIONS(413), + [anon_sym_BANG_EQ] = ACTIONS(413), + [anon_sym_LT_EQ_GT] = ACTIONS(415), + [anon_sym_EQ_EQ_EQ] = ACTIONS(415), + [anon_sym_BANG_EQ_EQ] = ACTIONS(415), + [anon_sym_EQ_TILDE] = ACTIONS(415), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_QMARK_COLON] = ACTIONS(415), + [anon_sym_STAR_STAR] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(415), + [anon_sym_interface] = ACTIONS(413), + [anon_sym_class] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(413), + [anon_sym_do] = ACTIONS(413), + [anon_sym_while] = ACTIONS(413), + [anon_sym_for] = ACTIONS(413), + [anon_sym_if] = ACTIONS(413), + [anon_sym_else] = ACTIONS(413), + [anon_sym_return] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(415), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_DOLLAR_SLASH] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(413), + [anon_sym_case] = ACTIONS(413), + [anon_sym_default] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(413), + [anon_sym_try] = ACTIONS(413), + [anon_sym_catch] = ACTIONS(413), + [anon_sym_finally] = ACTIONS(413), + [anon_sym_int] = ACTIONS(413), + [anon_sym_boolean] = ACTIONS(413), + [anon_sym_char] = ACTIONS(413), + [anon_sym_short] = ACTIONS(413), + [anon_sym_long] = ACTIONS(413), + [anon_sym_float] = ACTIONS(413), + [anon_sym_double] = ACTIONS(413), + [anon_sym_void] = ACTIONS(413), + [anon_sym_public] = ACTIONS(413), + [anon_sym_protected] = ACTIONS(413), + [anon_sym_private] = ACTIONS(413), + [anon_sym_static] = ACTIONS(413), + [anon_sym_final] = ACTIONS(413), + [anon_sym_synchronized] = ACTIONS(413), + }, + [292] = { + [sym_comment] = STATE(292), + [sym_groovy_doc] = STATE(292), + [sym_identifier] = ACTIONS(433), + [anon_sym_break] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_DOT_AMP] = ACTIONS(435), + [anon_sym_DOT_AT] = ACTIONS(435), + [anon_sym_QMARK_DOT] = ACTIONS(435), + [anon_sym_STAR_DOT] = ACTIONS(435), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_import] = ACTIONS(433), + [anon_sym_as] = ACTIONS(433), + [anon_sym_package] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_assert] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PERCENT] = ACTIONS(435), + [anon_sym_SLASH] = ACTIONS(433), + [anon_sym_PLUS] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_LT_LT] = ACTIONS(435), + [anon_sym_GT_GT] = ACTIONS(433), + [anon_sym_GT_GT_GT] = ACTIONS(435), + [anon_sym_DOT_DOT] = ACTIONS(433), + [anon_sym_DOT_DOT_LT] = ACTIONS(435), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(435), + [anon_sym_LT_DOT_DOT] = ACTIONS(433), + [anon_sym_LT] = ACTIONS(433), + [anon_sym_LT_EQ] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(433), + [anon_sym_GT_EQ] = ACTIONS(435), + [anon_sym_in] = ACTIONS(433), + [anon_sym_BANGin] = ACTIONS(433), + [anon_sym_instanceof] = ACTIONS(433), + [anon_sym_BANGinstanceof] = ACTIONS(435), + [anon_sym_EQ_EQ] = ACTIONS(433), + [anon_sym_BANG_EQ] = ACTIONS(433), + [anon_sym_LT_EQ_GT] = ACTIONS(435), + [anon_sym_EQ_EQ_EQ] = ACTIONS(435), + [anon_sym_BANG_EQ_EQ] = ACTIONS(435), + [anon_sym_EQ_TILDE] = ACTIONS(435), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(435), + [anon_sym_AMP] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(433), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_QMARK_COLON] = ACTIONS(435), + [anon_sym_STAR_STAR] = ACTIONS(435), + [anon_sym_ATinterface] = ACTIONS(435), + [anon_sym_interface] = ACTIONS(433), + [anon_sym_class] = ACTIONS(433), + [anon_sym_COMMA] = ACTIONS(435), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_RBRACE] = ACTIONS(435), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(433), + [anon_sym_do] = ACTIONS(433), + [anon_sym_while] = ACTIONS(433), + [anon_sym_for] = ACTIONS(433), + [anon_sym_if] = ACTIONS(433), + [anon_sym_else] = ACTIONS(433), + [anon_sym_return] = ACTIONS(433), + [anon_sym_SQUOTE] = ACTIONS(433), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(433), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(435), + [anon_sym_DOLLAR_SLASH] = ACTIONS(435), + [anon_sym_switch] = ACTIONS(433), + [anon_sym_case] = ACTIONS(433), + [anon_sym_default] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [anon_sym_try] = ACTIONS(433), + [anon_sym_catch] = ACTIONS(433), + [anon_sym_finally] = ACTIONS(433), + [anon_sym_int] = ACTIONS(433), + [anon_sym_boolean] = ACTIONS(433), + [anon_sym_char] = ACTIONS(433), + [anon_sym_short] = ACTIONS(433), + [anon_sym_long] = ACTIONS(433), + [anon_sym_float] = ACTIONS(433), + [anon_sym_double] = ACTIONS(433), + [anon_sym_void] = ACTIONS(433), + [anon_sym_public] = ACTIONS(433), + [anon_sym_protected] = ACTIONS(433), + [anon_sym_private] = ACTIONS(433), + [anon_sym_static] = ACTIONS(433), + [anon_sym_final] = ACTIONS(433), + [anon_sym_synchronized] = ACTIONS(433), + }, + [293] = { + [sym_comment] = STATE(293), + [sym_groovy_doc] = STATE(293), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(642), + [anon_sym_DOT_AT] = ACTIONS(642), + [anon_sym_QMARK_DOT] = ACTIONS(642), + [anon_sym_STAR_DOT] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(353), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LT_LT] = ACTIONS(353), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_GT_GT_GT] = ACTIONS(353), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_case] = ACTIONS(351), + [anon_sym_default] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [294] = { + [sym_comment] = STATE(294), + [sym_groovy_doc] = STATE(294), + [sym_identifier] = ACTIONS(367), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(369), + [anon_sym_DOT_AMP] = ACTIONS(642), + [anon_sym_DOT_AT] = ACTIONS(642), + [anon_sym_QMARK_DOT] = ACTIONS(642), + [anon_sym_STAR_DOT] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_import] = ACTIONS(367), + [anon_sym_as] = ACTIONS(646), + [anon_sym_package] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(367), + [anon_sym_assert] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_GT_GT_GT] = ACTIONS(652), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_in] = ACTIONS(646), + [anon_sym_BANGin] = ACTIONS(646), + [anon_sym_instanceof] = ACTIONS(646), + [anon_sym_BANGinstanceof] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(658), + [anon_sym_BANG_EQ] = ACTIONS(658), + [anon_sym_LT_EQ_GT] = ACTIONS(660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(660), + [anon_sym_EQ_TILDE] = ACTIONS(660), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(670), + [anon_sym_QMARK_COLON] = ACTIONS(672), + [anon_sym_STAR_STAR] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(369), + [anon_sym_interface] = ACTIONS(367), + [anon_sym_class] = ACTIONS(367), + [anon_sym_COMMA] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(369), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(367), + [anon_sym_do] = ACTIONS(367), + [anon_sym_while] = ACTIONS(367), + [anon_sym_for] = ACTIONS(367), + [anon_sym_if] = ACTIONS(367), + [anon_sym_else] = ACTIONS(367), + [anon_sym_return] = ACTIONS(367), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR_SLASH] = ACTIONS(369), + [anon_sym_switch] = ACTIONS(367), + [anon_sym_case] = ACTIONS(367), + [anon_sym_default] = ACTIONS(367), + [anon_sym_QMARK] = ACTIONS(678), + [anon_sym_try] = ACTIONS(367), + [anon_sym_catch] = ACTIONS(367), + [anon_sym_finally] = ACTIONS(367), + [anon_sym_int] = ACTIONS(367), + [anon_sym_boolean] = ACTIONS(367), + [anon_sym_char] = ACTIONS(367), + [anon_sym_short] = ACTIONS(367), + [anon_sym_long] = ACTIONS(367), + [anon_sym_float] = ACTIONS(367), + [anon_sym_double] = ACTIONS(367), + [anon_sym_void] = ACTIONS(367), + [anon_sym_public] = ACTIONS(367), + [anon_sym_protected] = ACTIONS(367), + [anon_sym_private] = ACTIONS(367), + [anon_sym_static] = ACTIONS(367), + [anon_sym_final] = ACTIONS(367), + [anon_sym_synchronized] = ACTIONS(367), + }, + [295] = { + [sym_comment] = STATE(295), + [sym_groovy_doc] = STATE(295), + [ts_builtin_sym_end] = ACTIONS(331), + [sym_identifier] = ACTIONS(329), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_DOT_AMP] = ACTIONS(331), + [anon_sym_DOT_AT] = ACTIONS(331), + [anon_sym_QMARK_DOT] = ACTIONS(331), + [anon_sym_STAR_DOT] = ACTIONS(331), + [anon_sym_STAR] = ACTIONS(329), + [anon_sym_import] = ACTIONS(329), + [anon_sym_as] = ACTIONS(329), + [anon_sym_package] = ACTIONS(329), + [anon_sym_AT] = ACTIONS(329), + [anon_sym_assert] = ACTIONS(329), + [anon_sym_PLUS_PLUS] = ACTIONS(331), + [anon_sym_DASH_DASH] = ACTIONS(331), + [anon_sym_PERCENT] = ACTIONS(331), + [anon_sym_SLASH] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(329), + [anon_sym_DASH] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(331), + [anon_sym_DOT_DOT] = ACTIONS(329), + [anon_sym_DOT_DOT_LT] = ACTIONS(331), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(331), + [anon_sym_LT_DOT_DOT] = ACTIONS(329), + [anon_sym_LT] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(329), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_GT_EQ] = ACTIONS(331), + [anon_sym_in] = ACTIONS(329), + [anon_sym_BANGin] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANGinstanceof] = ACTIONS(331), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_LT_EQ_GT] = ACTIONS(331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(331), + [anon_sym_EQ_TILDE] = ACTIONS(331), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(331), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(331), + [anon_sym_QMARK_COLON] = ACTIONS(331), + [anon_sym_STAR_STAR] = ACTIONS(331), + [anon_sym_ATinterface] = ACTIONS(331), + [anon_sym_interface] = ACTIONS(329), + [anon_sym_class] = ACTIONS(329), + [anon_sym_COMMA] = ACTIONS(331), + [anon_sym_LBRACE] = ACTIONS(331), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(329), + [anon_sym_do] = ACTIONS(329), + [anon_sym_while] = ACTIONS(329), + [anon_sym_for] = ACTIONS(329), + [anon_sym_if] = ACTIONS(329), + [anon_sym_else] = ACTIONS(329), + [anon_sym_COLON] = ACTIONS(684), + [anon_sym_pipeline] = ACTIONS(329), + [anon_sym_return] = ACTIONS(329), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(329), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(331), + [anon_sym_DOLLAR_SLASH] = ACTIONS(331), + [anon_sym_switch] = ACTIONS(329), + [anon_sym_QMARK] = ACTIONS(329), + [anon_sym_try] = ACTIONS(329), + [anon_sym_catch] = ACTIONS(329), + [anon_sym_finally] = ACTIONS(329), + [anon_sym_int] = ACTIONS(329), + [anon_sym_boolean] = ACTIONS(329), + [anon_sym_char] = ACTIONS(329), + [anon_sym_short] = ACTIONS(329), + [anon_sym_long] = ACTIONS(329), + [anon_sym_float] = ACTIONS(329), + [anon_sym_double] = ACTIONS(329), + [anon_sym_void] = ACTIONS(329), + [anon_sym_public] = ACTIONS(329), + [anon_sym_protected] = ACTIONS(329), + [anon_sym_private] = ACTIONS(329), + [anon_sym_static] = ACTIONS(329), + [anon_sym_final] = ACTIONS(329), + [anon_sym_synchronized] = ACTIONS(329), + }, + [296] = { + [sym_comment] = STATE(296), + [sym_groovy_doc] = STATE(296), + [sym_identifier] = ACTIONS(371), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(371), + [anon_sym_SEMI] = ACTIONS(373), + [anon_sym_DOT_AMP] = ACTIONS(642), + [anon_sym_DOT_AT] = ACTIONS(642), + [anon_sym_QMARK_DOT] = ACTIONS(642), + [anon_sym_STAR_DOT] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_import] = ACTIONS(371), + [anon_sym_as] = ACTIONS(646), + [anon_sym_package] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_PLUS_PLUS] = ACTIONS(373), + [anon_sym_DASH_DASH] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_GT_GT_GT] = ACTIONS(652), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_in] = ACTIONS(646), + [anon_sym_BANGin] = ACTIONS(646), + [anon_sym_instanceof] = ACTIONS(646), + [anon_sym_BANGinstanceof] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(658), + [anon_sym_BANG_EQ] = ACTIONS(658), + [anon_sym_LT_EQ_GT] = ACTIONS(660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(660), + [anon_sym_EQ_TILDE] = ACTIONS(660), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(670), + [anon_sym_QMARK_COLON] = ACTIONS(672), + [anon_sym_STAR_STAR] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(373), + [anon_sym_interface] = ACTIONS(371), + [anon_sym_class] = ACTIONS(371), + [anon_sym_COMMA] = ACTIONS(373), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_RBRACE] = ACTIONS(373), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(371), + [anon_sym_do] = ACTIONS(371), + [anon_sym_while] = ACTIONS(371), + [anon_sym_for] = ACTIONS(371), + [anon_sym_if] = ACTIONS(371), + [anon_sym_else] = ACTIONS(371), + [anon_sym_return] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_SLASH] = ACTIONS(373), + [anon_sym_switch] = ACTIONS(371), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(371), + [anon_sym_QMARK] = ACTIONS(678), + [anon_sym_try] = ACTIONS(371), + [anon_sym_catch] = ACTIONS(371), + [anon_sym_finally] = ACTIONS(371), + [anon_sym_int] = ACTIONS(371), + [anon_sym_boolean] = ACTIONS(371), + [anon_sym_char] = ACTIONS(371), + [anon_sym_short] = ACTIONS(371), + [anon_sym_long] = ACTIONS(371), + [anon_sym_float] = ACTIONS(371), + [anon_sym_double] = ACTIONS(371), + [anon_sym_void] = ACTIONS(371), + [anon_sym_public] = ACTIONS(371), + [anon_sym_protected] = ACTIONS(371), + [anon_sym_private] = ACTIONS(371), + [anon_sym_static] = ACTIONS(371), + [anon_sym_final] = ACTIONS(371), + [anon_sym_synchronized] = ACTIONS(371), + }, + [297] = { + [sym_comment] = STATE(297), + [sym_groovy_doc] = STATE(297), + [sym_identifier] = ACTIONS(375), + [anon_sym_break] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(377), + [anon_sym_DOT_AMP] = ACTIONS(642), + [anon_sym_DOT_AT] = ACTIONS(642), + [anon_sym_QMARK_DOT] = ACTIONS(642), + [anon_sym_STAR_DOT] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_import] = ACTIONS(375), + [anon_sym_as] = ACTIONS(646), + [anon_sym_package] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(375), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_PLUS_PLUS] = ACTIONS(377), + [anon_sym_DASH_DASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_GT_GT_GT] = ACTIONS(652), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_in] = ACTIONS(646), + [anon_sym_BANGin] = ACTIONS(646), + [anon_sym_instanceof] = ACTIONS(646), + [anon_sym_BANGinstanceof] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(658), + [anon_sym_BANG_EQ] = ACTIONS(658), + [anon_sym_LT_EQ_GT] = ACTIONS(660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(660), + [anon_sym_EQ_TILDE] = ACTIONS(660), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(670), + [anon_sym_QMARK_COLON] = ACTIONS(672), + [anon_sym_STAR_STAR] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(377), + [anon_sym_interface] = ACTIONS(375), + [anon_sym_class] = ACTIONS(375), + [anon_sym_COMMA] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_RBRACE] = ACTIONS(377), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(375), + [anon_sym_do] = ACTIONS(375), + [anon_sym_while] = ACTIONS(375), + [anon_sym_for] = ACTIONS(375), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(375), + [anon_sym_return] = ACTIONS(375), + [anon_sym_SQUOTE] = ACTIONS(375), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_DOLLAR_SLASH] = ACTIONS(377), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_case] = ACTIONS(375), + [anon_sym_default] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(678), + [anon_sym_try] = ACTIONS(375), + [anon_sym_catch] = ACTIONS(375), + [anon_sym_finally] = ACTIONS(375), + [anon_sym_int] = ACTIONS(375), + [anon_sym_boolean] = ACTIONS(375), + [anon_sym_char] = ACTIONS(375), + [anon_sym_short] = ACTIONS(375), + [anon_sym_long] = ACTIONS(375), + [anon_sym_float] = ACTIONS(375), + [anon_sym_double] = ACTIONS(375), + [anon_sym_void] = ACTIONS(375), + [anon_sym_public] = ACTIONS(375), + [anon_sym_protected] = ACTIONS(375), + [anon_sym_private] = ACTIONS(375), + [anon_sym_static] = ACTIONS(375), + [anon_sym_final] = ACTIONS(375), + [anon_sym_synchronized] = ACTIONS(375), + }, + [298] = { + [sym_comment] = STATE(298), + [sym_groovy_doc] = STATE(298), + [sym_identifier] = ACTIONS(99), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_DOT_AMP] = ACTIONS(93), + [anon_sym_DOT_AT] = ACTIONS(93), + [anon_sym_QMARK_DOT] = ACTIONS(93), + [anon_sym_STAR_DOT] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_import] = ACTIONS(99), + [anon_sym_as] = ACTIONS(99), + [anon_sym_package] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(93), + [anon_sym_SLASH] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(99), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_LT_LT] = ACTIONS(93), + [anon_sym_GT_GT] = ACTIONS(99), + [anon_sym_GT_GT_GT] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(99), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_in] = ACTIONS(99), + [anon_sym_BANGin] = ACTIONS(99), + [anon_sym_instanceof] = ACTIONS(99), + [anon_sym_BANGinstanceof] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_LT_EQ_GT] = ACTIONS(93), + [anon_sym_EQ_EQ_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ_EQ] = ACTIONS(93), + [anon_sym_EQ_TILDE] = ACTIONS(93), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(99), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(93), + [anon_sym_ATinterface] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(99), + [anon_sym_class] = ACTIONS(99), + [anon_sym_COMMA] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_RBRACE] = ACTIONS(93), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(99), + [anon_sym_do] = ACTIONS(99), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(99), + [anon_sym_if] = ACTIONS(99), + [anon_sym_else] = ACTIONS(99), + [anon_sym_return] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_SLASH] = ACTIONS(93), + [anon_sym_switch] = ACTIONS(99), + [anon_sym_case] = ACTIONS(99), + [anon_sym_default] = ACTIONS(99), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(99), + [anon_sym_finally] = ACTIONS(99), + [anon_sym_int] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_char] = ACTIONS(99), + [anon_sym_short] = ACTIONS(99), + [anon_sym_long] = ACTIONS(99), + [anon_sym_float] = ACTIONS(99), + [anon_sym_double] = ACTIONS(99), + [anon_sym_void] = ACTIONS(99), + [anon_sym_public] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_static] = ACTIONS(99), + [anon_sym_final] = ACTIONS(99), + [anon_sym_synchronized] = ACTIONS(99), + }, + [299] = { + [sym_comment] = STATE(299), + [sym_groovy_doc] = STATE(299), + [ts_builtin_sym_end] = ACTIONS(93), + [sym_identifier] = ACTIONS(99), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_DOT_AMP] = ACTIONS(93), + [anon_sym_DOT_AT] = ACTIONS(93), + [anon_sym_QMARK_DOT] = ACTIONS(93), + [anon_sym_STAR_DOT] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_import] = ACTIONS(99), + [anon_sym_as] = ACTIONS(99), + [anon_sym_package] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(93), + [anon_sym_SLASH] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(99), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_LT_LT] = ACTIONS(93), + [anon_sym_GT_GT] = ACTIONS(99), + [anon_sym_GT_GT_GT] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(99), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_in] = ACTIONS(99), + [anon_sym_BANGin] = ACTIONS(99), + [anon_sym_instanceof] = ACTIONS(99), + [anon_sym_BANGinstanceof] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_LT_EQ_GT] = ACTIONS(93), + [anon_sym_EQ_EQ_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ_EQ] = ACTIONS(93), + [anon_sym_EQ_TILDE] = ACTIONS(93), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(99), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(93), + [anon_sym_ATinterface] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(99), + [anon_sym_class] = ACTIONS(99), + [anon_sym_COMMA] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(93), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(99), + [anon_sym_do] = ACTIONS(99), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(99), + [anon_sym_if] = ACTIONS(99), + [anon_sym_else] = ACTIONS(99), + [anon_sym_COLON] = ACTIONS(620), + [anon_sym_pipeline] = ACTIONS(99), + [anon_sym_return] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_SLASH] = ACTIONS(93), + [anon_sym_switch] = ACTIONS(99), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(99), + [anon_sym_finally] = ACTIONS(99), + [anon_sym_int] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_char] = ACTIONS(99), + [anon_sym_short] = ACTIONS(99), + [anon_sym_long] = ACTIONS(99), + [anon_sym_float] = ACTIONS(99), + [anon_sym_double] = ACTIONS(99), + [anon_sym_void] = ACTIONS(99), + [anon_sym_public] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_static] = ACTIONS(99), + [anon_sym_final] = ACTIONS(99), + [anon_sym_synchronized] = ACTIONS(99), + }, + [300] = { + [sym_comment] = STATE(300), + [sym_groovy_doc] = STATE(300), + [aux_sym__juxt_argument_list_repeat1] = STATE(953), + [ts_builtin_sym_end] = ACTIONS(289), + [sym_identifier] = ACTIONS(287), + [anon_sym_break] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_DOT_AMP] = ACTIONS(686), + [anon_sym_DOT_AT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(686), + [anon_sym_STAR_DOT] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_import] = ACTIONS(287), + [anon_sym_as] = ACTIONS(690), + [anon_sym_package] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_assert] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(289), + [anon_sym_DASH_DASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(696), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_GT_GT_GT] = ACTIONS(696), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_in] = ACTIONS(690), + [anon_sym_BANGin] = ACTIONS(690), + [anon_sym_instanceof] = ACTIONS(690), + [anon_sym_BANGinstanceof] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(702), + [anon_sym_BANG_EQ] = ACTIONS(702), + [anon_sym_LT_EQ_GT] = ACTIONS(704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(704), + [anon_sym_EQ_TILDE] = ACTIONS(704), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(704), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(710), + [anon_sym_AMP_AMP] = ACTIONS(712), + [anon_sym_PIPE_PIPE] = ACTIONS(714), + [anon_sym_QMARK_COLON] = ACTIONS(716), + [anon_sym_STAR_STAR] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(289), + [anon_sym_interface] = ACTIONS(287), + [anon_sym_class] = ACTIONS(287), + [anon_sym_COMMA] = ACTIONS(720), + [anon_sym_LBRACE] = ACTIONS(289), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(287), + [anon_sym_do] = ACTIONS(287), + [anon_sym_while] = ACTIONS(287), + [anon_sym_for] = ACTIONS(287), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(287), + [anon_sym_pipeline] = ACTIONS(287), + [anon_sym_return] = ACTIONS(287), + [anon_sym_SQUOTE] = ACTIONS(287), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR_SLASH] = ACTIONS(289), + [anon_sym_switch] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(722), + [anon_sym_try] = ACTIONS(287), + [anon_sym_catch] = ACTIONS(287), + [anon_sym_finally] = ACTIONS(287), + [anon_sym_int] = ACTIONS(287), + [anon_sym_boolean] = ACTIONS(287), + [anon_sym_char] = ACTIONS(287), + [anon_sym_short] = ACTIONS(287), + [anon_sym_long] = ACTIONS(287), + [anon_sym_float] = ACTIONS(287), + [anon_sym_double] = ACTIONS(287), + [anon_sym_void] = ACTIONS(287), + [anon_sym_public] = ACTIONS(287), + [anon_sym_protected] = ACTIONS(287), + [anon_sym_private] = ACTIONS(287), + [anon_sym_static] = ACTIONS(287), + [anon_sym_final] = ACTIONS(287), + [anon_sym_synchronized] = ACTIONS(287), + }, + [301] = { + [sym_comment] = STATE(301), + [sym_groovy_doc] = STATE(301), + [sym_identifier] = ACTIONS(425), + [anon_sym_break] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(425), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_DOT_AMP] = ACTIONS(427), + [anon_sym_DOT_AT] = ACTIONS(427), + [anon_sym_QMARK_DOT] = ACTIONS(427), + [anon_sym_STAR_DOT] = ACTIONS(427), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_import] = ACTIONS(425), + [anon_sym_as] = ACTIONS(425), + [anon_sym_package] = ACTIONS(425), + [anon_sym_AT] = ACTIONS(425), + [anon_sym_assert] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(427), + [anon_sym_DASH_DASH] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(425), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_LT_LT] = ACTIONS(427), + [anon_sym_GT_GT] = ACTIONS(425), + [anon_sym_GT_GT_GT] = ACTIONS(427), + [anon_sym_DOT_DOT] = ACTIONS(425), + [anon_sym_DOT_DOT_LT] = ACTIONS(427), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(427), + [anon_sym_LT_DOT_DOT] = ACTIONS(425), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_LT_EQ] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(425), + [anon_sym_GT_EQ] = ACTIONS(427), + [anon_sym_in] = ACTIONS(425), + [anon_sym_BANGin] = ACTIONS(425), + [anon_sym_instanceof] = ACTIONS(425), + [anon_sym_BANGinstanceof] = ACTIONS(427), + [anon_sym_EQ_EQ] = ACTIONS(425), + [anon_sym_BANG_EQ] = ACTIONS(425), + [anon_sym_LT_EQ_GT] = ACTIONS(427), + [anon_sym_EQ_EQ_EQ] = ACTIONS(427), + [anon_sym_BANG_EQ_EQ] = ACTIONS(427), + [anon_sym_EQ_TILDE] = ACTIONS(427), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_PIPE] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(427), + [anon_sym_PIPE_PIPE] = ACTIONS(427), + [anon_sym_QMARK_COLON] = ACTIONS(427), + [anon_sym_STAR_STAR] = ACTIONS(427), + [anon_sym_ATinterface] = ACTIONS(427), + [anon_sym_interface] = ACTIONS(425), + [anon_sym_class] = ACTIONS(425), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(427), + [anon_sym_RBRACE] = ACTIONS(427), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(425), + [anon_sym_do] = ACTIONS(425), + [anon_sym_while] = ACTIONS(425), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(425), + [anon_sym_else] = ACTIONS(425), + [anon_sym_return] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(425), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(425), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR_SLASH] = ACTIONS(427), + [anon_sym_switch] = ACTIONS(425), + [anon_sym_case] = ACTIONS(425), + [anon_sym_default] = ACTIONS(425), + [anon_sym_QMARK] = ACTIONS(425), + [anon_sym_try] = ACTIONS(425), + [anon_sym_catch] = ACTIONS(425), + [anon_sym_finally] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_char] = ACTIONS(425), + [anon_sym_short] = ACTIONS(425), + [anon_sym_long] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_double] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_static] = ACTIONS(425), + [anon_sym_final] = ACTIONS(425), + [anon_sym_synchronized] = ACTIONS(425), + }, + [302] = { + [sym_comment] = STATE(302), + [sym_groovy_doc] = STATE(302), + [sym_identifier] = ACTIONS(417), + [anon_sym_break] = ACTIONS(417), + [anon_sym_continue] = ACTIONS(417), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_DOT_AMP] = ACTIONS(419), + [anon_sym_DOT_AT] = ACTIONS(419), + [anon_sym_QMARK_DOT] = ACTIONS(419), + [anon_sym_STAR_DOT] = ACTIONS(419), + [anon_sym_STAR] = ACTIONS(417), + [anon_sym_import] = ACTIONS(417), + [anon_sym_as] = ACTIONS(417), + [anon_sym_package] = ACTIONS(417), + [anon_sym_AT] = ACTIONS(417), + [anon_sym_assert] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(417), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(417), + [anon_sym_LT_LT] = ACTIONS(419), + [anon_sym_GT_GT] = ACTIONS(417), + [anon_sym_GT_GT_GT] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(417), + [anon_sym_DOT_DOT_LT] = ACTIONS(419), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(419), + [anon_sym_LT_DOT_DOT] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_LT_EQ] = ACTIONS(417), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_in] = ACTIONS(417), + [anon_sym_BANGin] = ACTIONS(417), + [anon_sym_instanceof] = ACTIONS(417), + [anon_sym_BANGinstanceof] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(417), + [anon_sym_BANG_EQ] = ACTIONS(417), + [anon_sym_LT_EQ_GT] = ACTIONS(419), + [anon_sym_EQ_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ_EQ] = ACTIONS(419), + [anon_sym_EQ_TILDE] = ACTIONS(419), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(419), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_CARET] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_QMARK_COLON] = ACTIONS(419), + [anon_sym_STAR_STAR] = ACTIONS(419), + [anon_sym_ATinterface] = ACTIONS(419), + [anon_sym_interface] = ACTIONS(417), + [anon_sym_class] = ACTIONS(417), + [anon_sym_COMMA] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(419), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(417), + [anon_sym_do] = ACTIONS(417), + [anon_sym_while] = ACTIONS(417), + [anon_sym_for] = ACTIONS(417), + [anon_sym_if] = ACTIONS(417), + [anon_sym_else] = ACTIONS(417), + [anon_sym_return] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(419), + [anon_sym_DQUOTE] = ACTIONS(417), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(419), + [anon_sym_DOLLAR_SLASH] = ACTIONS(419), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_case] = ACTIONS(417), + [anon_sym_default] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(417), + [anon_sym_try] = ACTIONS(417), + [anon_sym_catch] = ACTIONS(417), + [anon_sym_finally] = ACTIONS(417), + [anon_sym_int] = ACTIONS(417), + [anon_sym_boolean] = ACTIONS(417), + [anon_sym_char] = ACTIONS(417), + [anon_sym_short] = ACTIONS(417), + [anon_sym_long] = ACTIONS(417), + [anon_sym_float] = ACTIONS(417), + [anon_sym_double] = ACTIONS(417), + [anon_sym_void] = ACTIONS(417), + [anon_sym_public] = ACTIONS(417), + [anon_sym_protected] = ACTIONS(417), + [anon_sym_private] = ACTIONS(417), + [anon_sym_static] = ACTIONS(417), + [anon_sym_final] = ACTIONS(417), + [anon_sym_synchronized] = ACTIONS(417), + }, + [303] = { + [sym_comment] = STATE(303), + [sym_groovy_doc] = STATE(303), + [sym_identifier] = ACTIONS(359), + [anon_sym_break] = ACTIONS(359), + [anon_sym_continue] = ACTIONS(359), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym_DOT_AMP] = ACTIONS(361), + [anon_sym_DOT_AT] = ACTIONS(361), + [anon_sym_QMARK_DOT] = ACTIONS(361), + [anon_sym_STAR_DOT] = ACTIONS(361), + [anon_sym_STAR] = ACTIONS(359), + [anon_sym_import] = ACTIONS(359), + [anon_sym_as] = ACTIONS(359), + [anon_sym_package] = ACTIONS(359), + [anon_sym_AT] = ACTIONS(359), + [anon_sym_assert] = ACTIONS(359), + [anon_sym_PLUS_PLUS] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(361), + [anon_sym_PERCENT] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(359), + [anon_sym_DASH] = ACTIONS(359), + [anon_sym_LT_LT] = ACTIONS(361), + [anon_sym_GT_GT] = ACTIONS(359), + [anon_sym_GT_GT_GT] = ACTIONS(361), + [anon_sym_DOT_DOT] = ACTIONS(359), + [anon_sym_DOT_DOT_LT] = ACTIONS(361), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(361), + [anon_sym_LT_DOT_DOT] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(359), + [anon_sym_LT_EQ] = ACTIONS(359), + [anon_sym_GT] = ACTIONS(359), + [anon_sym_GT_EQ] = ACTIONS(361), + [anon_sym_in] = ACTIONS(359), + [anon_sym_BANGin] = ACTIONS(359), + [anon_sym_instanceof] = ACTIONS(359), + [anon_sym_BANGinstanceof] = ACTIONS(361), + [anon_sym_EQ_EQ] = ACTIONS(359), + [anon_sym_BANG_EQ] = ACTIONS(359), + [anon_sym_LT_EQ_GT] = ACTIONS(361), + [anon_sym_EQ_EQ_EQ] = ACTIONS(361), + [anon_sym_BANG_EQ_EQ] = ACTIONS(361), + [anon_sym_EQ_TILDE] = ACTIONS(361), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(361), + [anon_sym_AMP] = ACTIONS(359), + [anon_sym_CARET] = ACTIONS(361), + [anon_sym_PIPE] = ACTIONS(359), + [anon_sym_AMP_AMP] = ACTIONS(361), + [anon_sym_PIPE_PIPE] = ACTIONS(361), + [anon_sym_QMARK_COLON] = ACTIONS(361), + [anon_sym_STAR_STAR] = ACTIONS(361), + [anon_sym_ATinterface] = ACTIONS(361), + [anon_sym_interface] = ACTIONS(359), + [anon_sym_class] = ACTIONS(359), + [anon_sym_COMMA] = ACTIONS(361), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_RBRACE] = ACTIONS(361), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(359), + [anon_sym_do] = ACTIONS(359), + [anon_sym_while] = ACTIONS(359), + [anon_sym_for] = ACTIONS(359), + [anon_sym_if] = ACTIONS(359), + [anon_sym_else] = ACTIONS(359), + [anon_sym_return] = ACTIONS(359), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(361), + [anon_sym_DOLLAR_SLASH] = ACTIONS(361), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(359), + [anon_sym_QMARK] = ACTIONS(359), + [anon_sym_try] = ACTIONS(359), + [anon_sym_catch] = ACTIONS(359), + [anon_sym_finally] = ACTIONS(359), + [anon_sym_int] = ACTIONS(359), + [anon_sym_boolean] = ACTIONS(359), + [anon_sym_char] = ACTIONS(359), + [anon_sym_short] = ACTIONS(359), + [anon_sym_long] = ACTIONS(359), + [anon_sym_float] = ACTIONS(359), + [anon_sym_double] = ACTIONS(359), + [anon_sym_void] = ACTIONS(359), + [anon_sym_public] = ACTIONS(359), + [anon_sym_protected] = ACTIONS(359), + [anon_sym_private] = ACTIONS(359), + [anon_sym_static] = ACTIONS(359), + [anon_sym_final] = ACTIONS(359), + [anon_sym_synchronized] = ACTIONS(359), + }, + [304] = { + [sym_comment] = STATE(304), + [sym_groovy_doc] = STATE(304), + [sym_identifier] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_DOT_AMP] = ACTIONS(387), + [anon_sym_DOT_AT] = ACTIONS(387), + [anon_sym_QMARK_DOT] = ACTIONS(387), + [anon_sym_STAR_DOT] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(385), + [anon_sym_import] = ACTIONS(385), + [anon_sym_as] = ACTIONS(385), + [anon_sym_package] = ACTIONS(385), + [anon_sym_AT] = ACTIONS(385), + [anon_sym_assert] = ACTIONS(385), + [anon_sym_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_GT_GT_GT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_LT] = ACTIONS(387), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(387), + [anon_sym_LT_DOT_DOT] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_in] = ACTIONS(385), + [anon_sym_BANGin] = ACTIONS(385), + [anon_sym_instanceof] = ACTIONS(385), + [anon_sym_BANGinstanceof] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(385), + [anon_sym_BANG_EQ] = ACTIONS(385), + [anon_sym_LT_EQ_GT] = ACTIONS(387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(387), + [anon_sym_EQ_TILDE] = ACTIONS(387), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_QMARK_COLON] = ACTIONS(387), + [anon_sym_STAR_STAR] = ACTIONS(387), + [anon_sym_ATinterface] = ACTIONS(387), + [anon_sym_interface] = ACTIONS(385), + [anon_sym_class] = ACTIONS(385), + [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(387), + [anon_sym_RBRACE] = ACTIONS(387), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(385), + [anon_sym_do] = ACTIONS(385), + [anon_sym_while] = ACTIONS(385), + [anon_sym_for] = ACTIONS(385), + [anon_sym_if] = ACTIONS(385), + [anon_sym_else] = ACTIONS(385), + [anon_sym_return] = ACTIONS(385), + [anon_sym_SQUOTE] = ACTIONS(385), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(387), + [anon_sym_DQUOTE] = ACTIONS(385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_SLASH] = ACTIONS(387), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_case] = ACTIONS(385), + [anon_sym_default] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_try] = ACTIONS(385), + [anon_sym_catch] = ACTIONS(385), + [anon_sym_finally] = ACTIONS(385), + [anon_sym_int] = ACTIONS(385), + [anon_sym_boolean] = ACTIONS(385), + [anon_sym_char] = ACTIONS(385), + [anon_sym_short] = ACTIONS(385), + [anon_sym_long] = ACTIONS(385), + [anon_sym_float] = ACTIONS(385), + [anon_sym_double] = ACTIONS(385), + [anon_sym_void] = ACTIONS(385), + [anon_sym_public] = ACTIONS(385), + [anon_sym_protected] = ACTIONS(385), + [anon_sym_private] = ACTIONS(385), + [anon_sym_static] = ACTIONS(385), + [anon_sym_final] = ACTIONS(385), + [anon_sym_synchronized] = ACTIONS(385), + }, + [305] = { + [sym_comment] = STATE(305), + [sym_groovy_doc] = STATE(305), + [sym_identifier] = ACTIONS(393), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_DOT_AMP] = ACTIONS(395), + [anon_sym_DOT_AT] = ACTIONS(395), + [anon_sym_QMARK_DOT] = ACTIONS(395), + [anon_sym_STAR_DOT] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_import] = ACTIONS(393), + [anon_sym_as] = ACTIONS(393), + [anon_sym_package] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(393), + [anon_sym_assert] = ACTIONS(393), + [anon_sym_PLUS_PLUS] = ACTIONS(395), + [anon_sym_DASH_DASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_GT_GT_GT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_LT] = ACTIONS(395), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(395), + [anon_sym_LT_DOT_DOT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(395), + [anon_sym_in] = ACTIONS(393), + [anon_sym_BANGin] = ACTIONS(393), + [anon_sym_instanceof] = ACTIONS(393), + [anon_sym_BANGinstanceof] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_LT_EQ_GT] = ACTIONS(395), + [anon_sym_EQ_EQ_EQ] = ACTIONS(395), + [anon_sym_BANG_EQ_EQ] = ACTIONS(395), + [anon_sym_EQ_TILDE] = ACTIONS(395), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_AMP_AMP] = ACTIONS(395), + [anon_sym_PIPE_PIPE] = ACTIONS(395), + [anon_sym_QMARK_COLON] = ACTIONS(395), + [anon_sym_STAR_STAR] = ACTIONS(395), + [anon_sym_ATinterface] = ACTIONS(395), + [anon_sym_interface] = ACTIONS(393), + [anon_sym_class] = ACTIONS(393), + [anon_sym_COMMA] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(393), + [anon_sym_do] = ACTIONS(393), + [anon_sym_while] = ACTIONS(393), + [anon_sym_for] = ACTIONS(393), + [anon_sym_if] = ACTIONS(393), + [anon_sym_else] = ACTIONS(393), + [anon_sym_return] = ACTIONS(393), + [anon_sym_SQUOTE] = ACTIONS(393), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(395), + [anon_sym_DQUOTE] = ACTIONS(393), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(395), + [anon_sym_DOLLAR_SLASH] = ACTIONS(395), + [anon_sym_switch] = ACTIONS(393), + [anon_sym_case] = ACTIONS(393), + [anon_sym_default] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_try] = ACTIONS(393), + [anon_sym_catch] = ACTIONS(393), + [anon_sym_finally] = ACTIONS(393), + [anon_sym_int] = ACTIONS(393), + [anon_sym_boolean] = ACTIONS(393), + [anon_sym_char] = ACTIONS(393), + [anon_sym_short] = ACTIONS(393), + [anon_sym_long] = ACTIONS(393), + [anon_sym_float] = ACTIONS(393), + [anon_sym_double] = ACTIONS(393), + [anon_sym_void] = ACTIONS(393), + [anon_sym_public] = ACTIONS(393), + [anon_sym_protected] = ACTIONS(393), + [anon_sym_private] = ACTIONS(393), + [anon_sym_static] = ACTIONS(393), + [anon_sym_final] = ACTIONS(393), + [anon_sym_synchronized] = ACTIONS(393), + }, + [306] = { + [sym_comment] = STATE(306), + [sym_groovy_doc] = STATE(306), + [ts_builtin_sym_end] = ACTIONS(269), + [sym_identifier] = ACTIONS(267), + [anon_sym_break] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(267), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_DOT_AMP] = ACTIONS(269), + [anon_sym_DOT_AT] = ACTIONS(269), + [anon_sym_QMARK_DOT] = ACTIONS(269), + [anon_sym_STAR_DOT] = ACTIONS(269), + [anon_sym_STAR] = ACTIONS(267), + [anon_sym_import] = ACTIONS(267), + [anon_sym_as] = ACTIONS(267), + [anon_sym_package] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(267), + [anon_sym_assert] = ACTIONS(267), + [anon_sym_PLUS_PLUS] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(269), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_GT_GT] = ACTIONS(267), + [anon_sym_GT_GT_GT] = ACTIONS(269), + [anon_sym_DOT_DOT] = ACTIONS(267), + [anon_sym_DOT_DOT_LT] = ACTIONS(269), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(269), + [anon_sym_LT_DOT_DOT] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(267), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_in] = ACTIONS(267), + [anon_sym_BANGin] = ACTIONS(267), + [anon_sym_instanceof] = ACTIONS(267), + [anon_sym_BANGinstanceof] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(267), + [anon_sym_BANG_EQ] = ACTIONS(267), + [anon_sym_LT_EQ_GT] = ACTIONS(269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(269), + [anon_sym_EQ_TILDE] = ACTIONS(269), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(267), + [anon_sym_AMP_AMP] = ACTIONS(269), + [anon_sym_PIPE_PIPE] = ACTIONS(269), + [anon_sym_QMARK_COLON] = ACTIONS(269), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_ATinterface] = ACTIONS(269), + [anon_sym_interface] = ACTIONS(267), + [anon_sym_class] = ACTIONS(267), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(269), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(267), + [anon_sym_do] = ACTIONS(267), + [anon_sym_while] = ACTIONS(267), + [anon_sym_for] = ACTIONS(267), + [anon_sym_if] = ACTIONS(267), + [anon_sym_else] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(269), + [anon_sym_pipeline] = ACTIONS(267), + [anon_sym_return] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(267), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(267), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(269), + [anon_sym_DOLLAR_SLASH] = ACTIONS(269), + [anon_sym_switch] = ACTIONS(267), + [anon_sym_QMARK] = ACTIONS(267), + [anon_sym_try] = ACTIONS(267), + [anon_sym_catch] = ACTIONS(267), + [anon_sym_finally] = ACTIONS(267), + [anon_sym_int] = ACTIONS(267), + [anon_sym_boolean] = ACTIONS(267), + [anon_sym_char] = ACTIONS(267), + [anon_sym_short] = ACTIONS(267), + [anon_sym_long] = ACTIONS(267), + [anon_sym_float] = ACTIONS(267), + [anon_sym_double] = ACTIONS(267), + [anon_sym_void] = ACTIONS(267), + [anon_sym_public] = ACTIONS(267), + [anon_sym_protected] = ACTIONS(267), + [anon_sym_private] = ACTIONS(267), + [anon_sym_static] = ACTIONS(267), + [anon_sym_final] = ACTIONS(267), + [anon_sym_synchronized] = ACTIONS(267), + }, + [307] = { + [sym_comment] = STATE(307), + [sym_groovy_doc] = STATE(307), + [sym_identifier] = ACTIONS(397), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_SEMI] = ACTIONS(399), + [anon_sym_DOT_AMP] = ACTIONS(399), + [anon_sym_DOT_AT] = ACTIONS(399), + [anon_sym_QMARK_DOT] = ACTIONS(399), + [anon_sym_STAR_DOT] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_import] = ACTIONS(397), + [anon_sym_as] = ACTIONS(397), + [anon_sym_package] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(397), + [anon_sym_assert] = ACTIONS(397), + [anon_sym_PLUS_PLUS] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_GT_GT_GT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_LT] = ACTIONS(399), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(399), + [anon_sym_LT_DOT_DOT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_in] = ACTIONS(397), + [anon_sym_BANGin] = ACTIONS(397), + [anon_sym_instanceof] = ACTIONS(397), + [anon_sym_BANGinstanceof] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_LT_EQ_GT] = ACTIONS(399), + [anon_sym_EQ_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ_EQ] = ACTIONS(399), + [anon_sym_EQ_TILDE] = ACTIONS(399), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(399), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_QMARK_COLON] = ACTIONS(399), + [anon_sym_STAR_STAR] = ACTIONS(399), + [anon_sym_ATinterface] = ACTIONS(399), + [anon_sym_interface] = ACTIONS(397), + [anon_sym_class] = ACTIONS(397), + [anon_sym_COMMA] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_RBRACE] = ACTIONS(399), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(397), + [anon_sym_do] = ACTIONS(397), + [anon_sym_while] = ACTIONS(397), + [anon_sym_for] = ACTIONS(397), + [anon_sym_if] = ACTIONS(397), + [anon_sym_else] = ACTIONS(397), + [anon_sym_return] = ACTIONS(397), + [anon_sym_SQUOTE] = ACTIONS(397), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(399), + [anon_sym_DQUOTE] = ACTIONS(397), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(399), + [anon_sym_DOLLAR_SLASH] = ACTIONS(399), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_case] = ACTIONS(397), + [anon_sym_default] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_try] = ACTIONS(397), + [anon_sym_catch] = ACTIONS(397), + [anon_sym_finally] = ACTIONS(397), + [anon_sym_int] = ACTIONS(397), + [anon_sym_boolean] = ACTIONS(397), + [anon_sym_char] = ACTIONS(397), + [anon_sym_short] = ACTIONS(397), + [anon_sym_long] = ACTIONS(397), + [anon_sym_float] = ACTIONS(397), + [anon_sym_double] = ACTIONS(397), + [anon_sym_void] = ACTIONS(397), + [anon_sym_public] = ACTIONS(397), + [anon_sym_protected] = ACTIONS(397), + [anon_sym_private] = ACTIONS(397), + [anon_sym_static] = ACTIONS(397), + [anon_sym_final] = ACTIONS(397), + [anon_sym_synchronized] = ACTIONS(397), + }, + [308] = { + [sym_comment] = STATE(308), + [sym_groovy_doc] = STATE(308), + [sym_identifier] = ACTIONS(505), + [anon_sym_break] = ACTIONS(505), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_DOT_AMP] = ACTIONS(642), + [anon_sym_DOT_AT] = ACTIONS(642), + [anon_sym_QMARK_DOT] = ACTIONS(642), + [anon_sym_STAR_DOT] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_import] = ACTIONS(505), + [anon_sym_as] = ACTIONS(646), + [anon_sym_package] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(505), + [anon_sym_assert] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_GT_GT_GT] = ACTIONS(652), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_in] = ACTIONS(646), + [anon_sym_BANGin] = ACTIONS(646), + [anon_sym_instanceof] = ACTIONS(646), + [anon_sym_BANGinstanceof] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(658), + [anon_sym_BANG_EQ] = ACTIONS(658), + [anon_sym_LT_EQ_GT] = ACTIONS(660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(660), + [anon_sym_EQ_TILDE] = ACTIONS(660), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(670), + [anon_sym_QMARK_COLON] = ACTIONS(672), + [anon_sym_STAR_STAR] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(507), + [anon_sym_interface] = ACTIONS(505), + [anon_sym_class] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(507), + [anon_sym_RBRACE] = ACTIONS(507), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(505), + [anon_sym_do] = ACTIONS(505), + [anon_sym_while] = ACTIONS(505), + [anon_sym_for] = ACTIONS(505), + [anon_sym_if] = ACTIONS(505), + [anon_sym_else] = ACTIONS(505), + [anon_sym_return] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(507), + [anon_sym_DOLLAR_SLASH] = ACTIONS(507), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(505), + [anon_sym_default] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(678), + [anon_sym_try] = ACTIONS(505), + [anon_sym_catch] = ACTIONS(505), + [anon_sym_finally] = ACTIONS(505), + [anon_sym_int] = ACTIONS(505), + [anon_sym_boolean] = ACTIONS(505), + [anon_sym_char] = ACTIONS(505), + [anon_sym_short] = ACTIONS(505), + [anon_sym_long] = ACTIONS(505), + [anon_sym_float] = ACTIONS(505), + [anon_sym_double] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_public] = ACTIONS(505), + [anon_sym_protected] = ACTIONS(505), + [anon_sym_private] = ACTIONS(505), + [anon_sym_static] = ACTIONS(505), + [anon_sym_final] = ACTIONS(505), + [anon_sym_synchronized] = ACTIONS(505), + }, + [309] = { + [sym_comment] = STATE(309), + [sym_groovy_doc] = STATE(309), + [sym_identifier] = ACTIONS(483), + [anon_sym_break] = ACTIONS(483), + [anon_sym_continue] = ACTIONS(483), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_DOT_AMP] = ACTIONS(642), + [anon_sym_DOT_AT] = ACTIONS(642), + [anon_sym_QMARK_DOT] = ACTIONS(642), + [anon_sym_STAR_DOT] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_import] = ACTIONS(483), + [anon_sym_as] = ACTIONS(646), + [anon_sym_package] = ACTIONS(483), + [anon_sym_AT] = ACTIONS(483), + [anon_sym_assert] = ACTIONS(483), + [anon_sym_PLUS_PLUS] = ACTIONS(485), + [anon_sym_DASH_DASH] = ACTIONS(485), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_GT_GT_GT] = ACTIONS(652), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_in] = ACTIONS(646), + [anon_sym_BANGin] = ACTIONS(646), + [anon_sym_instanceof] = ACTIONS(646), + [anon_sym_BANGinstanceof] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(658), + [anon_sym_BANG_EQ] = ACTIONS(658), + [anon_sym_LT_EQ_GT] = ACTIONS(660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(660), + [anon_sym_EQ_TILDE] = ACTIONS(660), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(670), + [anon_sym_QMARK_COLON] = ACTIONS(672), + [anon_sym_STAR_STAR] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(485), + [anon_sym_interface] = ACTIONS(483), + [anon_sym_class] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_RBRACE] = ACTIONS(485), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(483), + [anon_sym_do] = ACTIONS(483), + [anon_sym_while] = ACTIONS(483), + [anon_sym_for] = ACTIONS(483), + [anon_sym_if] = ACTIONS(483), + [anon_sym_else] = ACTIONS(483), + [anon_sym_return] = ACTIONS(483), + [anon_sym_SQUOTE] = ACTIONS(483), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(485), + [anon_sym_DQUOTE] = ACTIONS(483), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(485), + [anon_sym_DOLLAR_SLASH] = ACTIONS(485), + [anon_sym_switch] = ACTIONS(483), + [anon_sym_case] = ACTIONS(483), + [anon_sym_default] = ACTIONS(483), + [anon_sym_QMARK] = ACTIONS(678), + [anon_sym_try] = ACTIONS(483), + [anon_sym_catch] = ACTIONS(483), + [anon_sym_finally] = ACTIONS(483), + [anon_sym_int] = ACTIONS(483), + [anon_sym_boolean] = ACTIONS(483), + [anon_sym_char] = ACTIONS(483), + [anon_sym_short] = ACTIONS(483), + [anon_sym_long] = ACTIONS(483), + [anon_sym_float] = ACTIONS(483), + [anon_sym_double] = ACTIONS(483), + [anon_sym_void] = ACTIONS(483), + [anon_sym_public] = ACTIONS(483), + [anon_sym_protected] = ACTIONS(483), + [anon_sym_private] = ACTIONS(483), + [anon_sym_static] = ACTIONS(483), + [anon_sym_final] = ACTIONS(483), + [anon_sym_synchronized] = ACTIONS(483), + }, + [310] = { + [sym_comment] = STATE(310), + [sym_groovy_doc] = STATE(310), + [ts_builtin_sym_end] = ACTIONS(361), + [sym_identifier] = ACTIONS(359), + [anon_sym_break] = ACTIONS(359), + [anon_sym_continue] = ACTIONS(359), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym_DOT_AMP] = ACTIONS(361), + [anon_sym_DOT_AT] = ACTIONS(361), + [anon_sym_QMARK_DOT] = ACTIONS(361), + [anon_sym_STAR_DOT] = ACTIONS(361), + [anon_sym_STAR] = ACTIONS(359), + [anon_sym_import] = ACTIONS(359), + [anon_sym_as] = ACTIONS(359), + [anon_sym_package] = ACTIONS(359), + [anon_sym_AT] = ACTIONS(359), + [anon_sym_assert] = ACTIONS(359), + [anon_sym_PLUS_PLUS] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(361), + [anon_sym_PERCENT] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(359), + [anon_sym_DASH] = ACTIONS(359), + [anon_sym_LT_LT] = ACTIONS(361), + [anon_sym_GT_GT] = ACTIONS(359), + [anon_sym_GT_GT_GT] = ACTIONS(361), + [anon_sym_DOT_DOT] = ACTIONS(359), + [anon_sym_DOT_DOT_LT] = ACTIONS(361), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(361), + [anon_sym_LT_DOT_DOT] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(359), + [anon_sym_LT_EQ] = ACTIONS(359), + [anon_sym_GT] = ACTIONS(359), + [anon_sym_GT_EQ] = ACTIONS(361), + [anon_sym_in] = ACTIONS(359), + [anon_sym_BANGin] = ACTIONS(359), + [anon_sym_instanceof] = ACTIONS(359), + [anon_sym_BANGinstanceof] = ACTIONS(361), + [anon_sym_EQ_EQ] = ACTIONS(359), + [anon_sym_BANG_EQ] = ACTIONS(359), + [anon_sym_LT_EQ_GT] = ACTIONS(361), + [anon_sym_EQ_EQ_EQ] = ACTIONS(361), + [anon_sym_BANG_EQ_EQ] = ACTIONS(361), + [anon_sym_EQ_TILDE] = ACTIONS(361), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(361), + [anon_sym_AMP] = ACTIONS(359), + [anon_sym_CARET] = ACTIONS(361), + [anon_sym_PIPE] = ACTIONS(359), + [anon_sym_AMP_AMP] = ACTIONS(361), + [anon_sym_PIPE_PIPE] = ACTIONS(361), + [anon_sym_QMARK_COLON] = ACTIONS(361), + [anon_sym_STAR_STAR] = ACTIONS(361), + [anon_sym_ATinterface] = ACTIONS(361), + [anon_sym_interface] = ACTIONS(359), + [anon_sym_class] = ACTIONS(359), + [anon_sym_COMMA] = ACTIONS(361), + [anon_sym_LBRACE] = ACTIONS(361), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(359), + [anon_sym_do] = ACTIONS(359), + [anon_sym_while] = ACTIONS(359), + [anon_sym_for] = ACTIONS(359), + [anon_sym_if] = ACTIONS(359), + [anon_sym_else] = ACTIONS(359), + [anon_sym_pipeline] = ACTIONS(359), + [anon_sym_return] = ACTIONS(359), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(361), + [anon_sym_DOLLAR_SLASH] = ACTIONS(361), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_QMARK] = ACTIONS(359), + [anon_sym_try] = ACTIONS(359), + [anon_sym_catch] = ACTIONS(359), + [anon_sym_finally] = ACTIONS(359), + [anon_sym_int] = ACTIONS(359), + [anon_sym_boolean] = ACTIONS(359), + [anon_sym_char] = ACTIONS(359), + [anon_sym_short] = ACTIONS(359), + [anon_sym_long] = ACTIONS(359), + [anon_sym_float] = ACTIONS(359), + [anon_sym_double] = ACTIONS(359), + [anon_sym_void] = ACTIONS(359), + [anon_sym_public] = ACTIONS(359), + [anon_sym_protected] = ACTIONS(359), + [anon_sym_private] = ACTIONS(359), + [anon_sym_static] = ACTIONS(359), + [anon_sym_final] = ACTIONS(359), + [anon_sym_synchronized] = ACTIONS(359), + }, + [311] = { + [sym_comment] = STATE(311), + [sym_groovy_doc] = STATE(311), + [ts_builtin_sym_end] = ACTIONS(93), + [sym_identifier] = ACTIONS(99), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_DOT_AMP] = ACTIONS(93), + [anon_sym_DOT_AT] = ACTIONS(93), + [anon_sym_QMARK_DOT] = ACTIONS(93), + [anon_sym_STAR_DOT] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_import] = ACTIONS(99), + [anon_sym_as] = ACTIONS(99), + [anon_sym_package] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(93), + [anon_sym_SLASH] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(99), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_LT_LT] = ACTIONS(93), + [anon_sym_GT_GT] = ACTIONS(99), + [anon_sym_GT_GT_GT] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(99), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_in] = ACTIONS(99), + [anon_sym_BANGin] = ACTIONS(99), + [anon_sym_instanceof] = ACTIONS(99), + [anon_sym_BANGinstanceof] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_LT_EQ_GT] = ACTIONS(93), + [anon_sym_EQ_EQ_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ_EQ] = ACTIONS(93), + [anon_sym_EQ_TILDE] = ACTIONS(93), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(99), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(93), + [anon_sym_ATinterface] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(99), + [anon_sym_class] = ACTIONS(99), + [anon_sym_COMMA] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(93), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(99), + [anon_sym_do] = ACTIONS(99), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(99), + [anon_sym_if] = ACTIONS(99), + [anon_sym_else] = ACTIONS(99), + [anon_sym_pipeline] = ACTIONS(99), + [anon_sym_return] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_SLASH] = ACTIONS(93), + [anon_sym_switch] = ACTIONS(99), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(99), + [anon_sym_finally] = ACTIONS(99), + [anon_sym_int] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_char] = ACTIONS(99), + [anon_sym_short] = ACTIONS(99), + [anon_sym_long] = ACTIONS(99), + [anon_sym_float] = ACTIONS(99), + [anon_sym_double] = ACTIONS(99), + [anon_sym_void] = ACTIONS(99), + [anon_sym_public] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_static] = ACTIONS(99), + [anon_sym_final] = ACTIONS(99), + [anon_sym_synchronized] = ACTIONS(99), + }, + [312] = { + [sym_comment] = STATE(312), + [sym_groovy_doc] = STATE(312), + [sym_identifier] = ACTIONS(329), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_DOT_AMP] = ACTIONS(331), + [anon_sym_DOT_AT] = ACTIONS(331), + [anon_sym_QMARK_DOT] = ACTIONS(331), + [anon_sym_STAR_DOT] = ACTIONS(331), + [anon_sym_STAR] = ACTIONS(329), + [anon_sym_import] = ACTIONS(329), + [anon_sym_as] = ACTIONS(329), + [anon_sym_package] = ACTIONS(329), + [anon_sym_AT] = ACTIONS(329), + [anon_sym_assert] = ACTIONS(329), + [anon_sym_PLUS_PLUS] = ACTIONS(331), + [anon_sym_DASH_DASH] = ACTIONS(331), + [anon_sym_PERCENT] = ACTIONS(331), + [anon_sym_SLASH] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(329), + [anon_sym_DASH] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(331), + [anon_sym_DOT_DOT] = ACTIONS(329), + [anon_sym_DOT_DOT_LT] = ACTIONS(331), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(331), + [anon_sym_LT_DOT_DOT] = ACTIONS(329), + [anon_sym_LT] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(329), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_GT_EQ] = ACTIONS(331), + [anon_sym_in] = ACTIONS(329), + [anon_sym_BANGin] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANGinstanceof] = ACTIONS(331), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_LT_EQ_GT] = ACTIONS(331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(331), + [anon_sym_EQ_TILDE] = ACTIONS(331), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(331), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(331), + [anon_sym_QMARK_COLON] = ACTIONS(331), + [anon_sym_STAR_STAR] = ACTIONS(331), + [anon_sym_ATinterface] = ACTIONS(331), + [anon_sym_interface] = ACTIONS(329), + [anon_sym_class] = ACTIONS(329), + [anon_sym_COMMA] = ACTIONS(331), + [anon_sym_LBRACE] = ACTIONS(331), + [anon_sym_RBRACE] = ACTIONS(331), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(329), + [anon_sym_do] = ACTIONS(329), + [anon_sym_while] = ACTIONS(329), + [anon_sym_for] = ACTIONS(329), + [anon_sym_if] = ACTIONS(329), + [anon_sym_else] = ACTIONS(329), + [anon_sym_COLON] = ACTIONS(724), + [anon_sym_return] = ACTIONS(329), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(329), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(331), + [anon_sym_DOLLAR_SLASH] = ACTIONS(331), + [anon_sym_switch] = ACTIONS(329), + [anon_sym_case] = ACTIONS(329), + [anon_sym_default] = ACTIONS(329), + [anon_sym_QMARK] = ACTIONS(329), + [anon_sym_try] = ACTIONS(329), + [anon_sym_int] = ACTIONS(329), + [anon_sym_boolean] = ACTIONS(329), + [anon_sym_char] = ACTIONS(329), + [anon_sym_short] = ACTIONS(329), + [anon_sym_long] = ACTIONS(329), + [anon_sym_float] = ACTIONS(329), + [anon_sym_double] = ACTIONS(329), + [anon_sym_void] = ACTIONS(329), + [anon_sym_public] = ACTIONS(329), + [anon_sym_protected] = ACTIONS(329), + [anon_sym_private] = ACTIONS(329), + [anon_sym_static] = ACTIONS(329), + [anon_sym_final] = ACTIONS(329), + [anon_sym_synchronized] = ACTIONS(329), + }, + [313] = { + [sym_comment] = STATE(313), + [sym_groovy_doc] = STATE(313), + [ts_builtin_sym_end] = ACTIONS(435), + [sym_identifier] = ACTIONS(433), + [anon_sym_break] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_DOT_AMP] = ACTIONS(435), + [anon_sym_DOT_AT] = ACTIONS(435), + [anon_sym_QMARK_DOT] = ACTIONS(435), + [anon_sym_STAR_DOT] = ACTIONS(435), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_import] = ACTIONS(433), + [anon_sym_as] = ACTIONS(433), + [anon_sym_package] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_assert] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PERCENT] = ACTIONS(435), + [anon_sym_SLASH] = ACTIONS(433), + [anon_sym_PLUS] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_LT_LT] = ACTIONS(435), + [anon_sym_GT_GT] = ACTIONS(433), + [anon_sym_GT_GT_GT] = ACTIONS(435), + [anon_sym_DOT_DOT] = ACTIONS(433), + [anon_sym_DOT_DOT_LT] = ACTIONS(435), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(435), + [anon_sym_LT_DOT_DOT] = ACTIONS(433), + [anon_sym_LT] = ACTIONS(433), + [anon_sym_LT_EQ] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(433), + [anon_sym_GT_EQ] = ACTIONS(435), + [anon_sym_in] = ACTIONS(433), + [anon_sym_BANGin] = ACTIONS(433), + [anon_sym_instanceof] = ACTIONS(433), + [anon_sym_BANGinstanceof] = ACTIONS(435), + [anon_sym_EQ_EQ] = ACTIONS(433), + [anon_sym_BANG_EQ] = ACTIONS(433), + [anon_sym_LT_EQ_GT] = ACTIONS(435), + [anon_sym_EQ_EQ_EQ] = ACTIONS(435), + [anon_sym_BANG_EQ_EQ] = ACTIONS(435), + [anon_sym_EQ_TILDE] = ACTIONS(435), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(435), + [anon_sym_AMP] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(433), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_QMARK_COLON] = ACTIONS(435), + [anon_sym_STAR_STAR] = ACTIONS(435), + [anon_sym_ATinterface] = ACTIONS(435), + [anon_sym_interface] = ACTIONS(433), + [anon_sym_class] = ACTIONS(433), + [anon_sym_COMMA] = ACTIONS(435), + [anon_sym_LBRACE] = ACTIONS(435), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(433), + [anon_sym_do] = ACTIONS(433), + [anon_sym_while] = ACTIONS(433), + [anon_sym_for] = ACTIONS(433), + [anon_sym_if] = ACTIONS(433), + [anon_sym_else] = ACTIONS(433), + [anon_sym_pipeline] = ACTIONS(433), + [anon_sym_return] = ACTIONS(433), + [anon_sym_SQUOTE] = ACTIONS(433), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(433), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(435), + [anon_sym_DOLLAR_SLASH] = ACTIONS(435), + [anon_sym_switch] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [anon_sym_try] = ACTIONS(433), + [anon_sym_catch] = ACTIONS(433), + [anon_sym_finally] = ACTIONS(433), + [anon_sym_int] = ACTIONS(433), + [anon_sym_boolean] = ACTIONS(433), + [anon_sym_char] = ACTIONS(433), + [anon_sym_short] = ACTIONS(433), + [anon_sym_long] = ACTIONS(433), + [anon_sym_float] = ACTIONS(433), + [anon_sym_double] = ACTIONS(433), + [anon_sym_void] = ACTIONS(433), + [anon_sym_public] = ACTIONS(433), + [anon_sym_protected] = ACTIONS(433), + [anon_sym_private] = ACTIONS(433), + [anon_sym_static] = ACTIONS(433), + [anon_sym_final] = ACTIONS(433), + [anon_sym_synchronized] = ACTIONS(433), + }, + [314] = { + [sym_comment] = STATE(314), + [sym_groovy_doc] = STATE(314), + [ts_builtin_sym_end] = ACTIONS(415), + [sym_identifier] = ACTIONS(413), + [anon_sym_break] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_DOT_AMP] = ACTIONS(686), + [anon_sym_DOT_AT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(686), + [anon_sym_STAR_DOT] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_import] = ACTIONS(413), + [anon_sym_as] = ACTIONS(413), + [anon_sym_package] = ACTIONS(413), + [anon_sym_AT] = ACTIONS(413), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_PLUS_PLUS] = ACTIONS(415), + [anon_sym_DASH_DASH] = ACTIONS(415), + [anon_sym_PERCENT] = ACTIONS(415), + [anon_sym_SLASH] = ACTIONS(413), + [anon_sym_PLUS] = ACTIONS(413), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(415), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_GT_GT_GT] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(413), + [anon_sym_DOT_DOT_LT] = ACTIONS(415), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(415), + [anon_sym_LT_DOT_DOT] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_EQ] = ACTIONS(413), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_in] = ACTIONS(413), + [anon_sym_BANGin] = ACTIONS(413), + [anon_sym_instanceof] = ACTIONS(413), + [anon_sym_BANGinstanceof] = ACTIONS(415), + [anon_sym_EQ_EQ] = ACTIONS(413), + [anon_sym_BANG_EQ] = ACTIONS(413), + [anon_sym_LT_EQ_GT] = ACTIONS(415), + [anon_sym_EQ_EQ_EQ] = ACTIONS(415), + [anon_sym_BANG_EQ_EQ] = ACTIONS(415), + [anon_sym_EQ_TILDE] = ACTIONS(415), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_QMARK_COLON] = ACTIONS(415), + [anon_sym_STAR_STAR] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(415), + [anon_sym_interface] = ACTIONS(413), + [anon_sym_class] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(415), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(413), + [anon_sym_do] = ACTIONS(413), + [anon_sym_while] = ACTIONS(413), + [anon_sym_for] = ACTIONS(413), + [anon_sym_if] = ACTIONS(413), + [anon_sym_else] = ACTIONS(413), + [anon_sym_pipeline] = ACTIONS(413), + [anon_sym_return] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(415), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_DOLLAR_SLASH] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(413), + [anon_sym_try] = ACTIONS(413), + [anon_sym_catch] = ACTIONS(413), + [anon_sym_finally] = ACTIONS(413), + [anon_sym_int] = ACTIONS(413), + [anon_sym_boolean] = ACTIONS(413), + [anon_sym_char] = ACTIONS(413), + [anon_sym_short] = ACTIONS(413), + [anon_sym_long] = ACTIONS(413), + [anon_sym_float] = ACTIONS(413), + [anon_sym_double] = ACTIONS(413), + [anon_sym_void] = ACTIONS(413), + [anon_sym_public] = ACTIONS(413), + [anon_sym_protected] = ACTIONS(413), + [anon_sym_private] = ACTIONS(413), + [anon_sym_static] = ACTIONS(413), + [anon_sym_final] = ACTIONS(413), + [anon_sym_synchronized] = ACTIONS(413), + }, + [315] = { + [sym_comment] = STATE(315), + [sym_groovy_doc] = STATE(315), + [sym_identifier] = ACTIONS(495), + [anon_sym_break] = ACTIONS(495), + [anon_sym_continue] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(497), + [anon_sym_DOT_AMP] = ACTIONS(642), + [anon_sym_DOT_AT] = ACTIONS(642), + [anon_sym_QMARK_DOT] = ACTIONS(642), + [anon_sym_STAR_DOT] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_import] = ACTIONS(495), + [anon_sym_as] = ACTIONS(646), + [anon_sym_package] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(495), + [anon_sym_assert] = ACTIONS(495), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_GT_GT_GT] = ACTIONS(652), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_in] = ACTIONS(646), + [anon_sym_BANGin] = ACTIONS(646), + [anon_sym_instanceof] = ACTIONS(646), + [anon_sym_BANGinstanceof] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(658), + [anon_sym_BANG_EQ] = ACTIONS(658), + [anon_sym_LT_EQ_GT] = ACTIONS(660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(660), + [anon_sym_EQ_TILDE] = ACTIONS(660), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(670), + [anon_sym_QMARK_COLON] = ACTIONS(672), + [anon_sym_STAR_STAR] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(497), + [anon_sym_interface] = ACTIONS(495), + [anon_sym_class] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(497), + [anon_sym_RBRACE] = ACTIONS(497), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(495), + [anon_sym_do] = ACTIONS(495), + [anon_sym_while] = ACTIONS(495), + [anon_sym_for] = ACTIONS(495), + [anon_sym_if] = ACTIONS(495), + [anon_sym_else] = ACTIONS(495), + [anon_sym_return] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(495), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(495), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(497), + [anon_sym_DOLLAR_SLASH] = ACTIONS(497), + [anon_sym_switch] = ACTIONS(495), + [anon_sym_case] = ACTIONS(495), + [anon_sym_default] = ACTIONS(495), + [anon_sym_QMARK] = ACTIONS(678), + [anon_sym_try] = ACTIONS(495), + [anon_sym_catch] = ACTIONS(495), + [anon_sym_finally] = ACTIONS(495), + [anon_sym_int] = ACTIONS(495), + [anon_sym_boolean] = ACTIONS(495), + [anon_sym_char] = ACTIONS(495), + [anon_sym_short] = ACTIONS(495), + [anon_sym_long] = ACTIONS(495), + [anon_sym_float] = ACTIONS(495), + [anon_sym_double] = ACTIONS(495), + [anon_sym_void] = ACTIONS(495), + [anon_sym_public] = ACTIONS(495), + [anon_sym_protected] = ACTIONS(495), + [anon_sym_private] = ACTIONS(495), + [anon_sym_static] = ACTIONS(495), + [anon_sym_final] = ACTIONS(495), + [anon_sym_synchronized] = ACTIONS(495), + }, + [316] = { + [sym_comment] = STATE(316), + [sym_groovy_doc] = STATE(316), + [ts_builtin_sym_end] = ACTIONS(423), + [sym_identifier] = ACTIONS(421), + [anon_sym_break] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_SEMI] = ACTIONS(423), + [anon_sym_DOT_AMP] = ACTIONS(423), + [anon_sym_DOT_AT] = ACTIONS(423), + [anon_sym_QMARK_DOT] = ACTIONS(423), + [anon_sym_STAR_DOT] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(421), + [anon_sym_import] = ACTIONS(421), + [anon_sym_as] = ACTIONS(421), + [anon_sym_package] = ACTIONS(421), + [anon_sym_AT] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_PLUS_PLUS] = ACTIONS(423), + [anon_sym_DASH_DASH] = ACTIONS(423), + [anon_sym_PERCENT] = ACTIONS(423), + [anon_sym_SLASH] = ACTIONS(421), + [anon_sym_PLUS] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(421), + [anon_sym_LT_LT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(421), + [anon_sym_GT_GT_GT] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(421), + [anon_sym_DOT_DOT_LT] = ACTIONS(423), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(423), + [anon_sym_LT_DOT_DOT] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_LT_EQ] = ACTIONS(421), + [anon_sym_GT] = ACTIONS(421), + [anon_sym_GT_EQ] = ACTIONS(423), + [anon_sym_in] = ACTIONS(421), + [anon_sym_BANGin] = ACTIONS(421), + [anon_sym_instanceof] = ACTIONS(421), + [anon_sym_BANGinstanceof] = ACTIONS(423), + [anon_sym_EQ_EQ] = ACTIONS(421), + [anon_sym_BANG_EQ] = ACTIONS(421), + [anon_sym_LT_EQ_GT] = ACTIONS(423), + [anon_sym_EQ_EQ_EQ] = ACTIONS(423), + [anon_sym_BANG_EQ_EQ] = ACTIONS(423), + [anon_sym_EQ_TILDE] = ACTIONS(423), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(421), + [anon_sym_CARET] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_AMP_AMP] = ACTIONS(423), + [anon_sym_PIPE_PIPE] = ACTIONS(423), + [anon_sym_QMARK_COLON] = ACTIONS(423), + [anon_sym_STAR_STAR] = ACTIONS(423), + [anon_sym_ATinterface] = ACTIONS(423), + [anon_sym_interface] = ACTIONS(421), + [anon_sym_class] = ACTIONS(421), + [anon_sym_COMMA] = ACTIONS(423), + [anon_sym_LBRACE] = ACTIONS(423), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(421), + [anon_sym_do] = ACTIONS(421), + [anon_sym_while] = ACTIONS(421), + [anon_sym_for] = ACTIONS(421), + [anon_sym_if] = ACTIONS(421), + [anon_sym_else] = ACTIONS(421), + [anon_sym_pipeline] = ACTIONS(421), + [anon_sym_return] = ACTIONS(421), + [anon_sym_SQUOTE] = ACTIONS(421), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(423), + [anon_sym_DQUOTE] = ACTIONS(421), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(423), + [anon_sym_DOLLAR_SLASH] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(421), + [anon_sym_QMARK] = ACTIONS(421), + [anon_sym_try] = ACTIONS(421), + [anon_sym_catch] = ACTIONS(421), + [anon_sym_finally] = ACTIONS(421), + [anon_sym_int] = ACTIONS(421), + [anon_sym_boolean] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_short] = ACTIONS(421), + [anon_sym_long] = ACTIONS(421), + [anon_sym_float] = ACTIONS(421), + [anon_sym_double] = ACTIONS(421), + [anon_sym_void] = ACTIONS(421), + [anon_sym_public] = ACTIONS(421), + [anon_sym_protected] = ACTIONS(421), + [anon_sym_private] = ACTIONS(421), + [anon_sym_static] = ACTIONS(421), + [anon_sym_final] = ACTIONS(421), + [anon_sym_synchronized] = ACTIONS(421), + }, + [317] = { + [sym_comment] = STATE(317), + [sym_groovy_doc] = STATE(317), + [sym_identifier] = ACTIONS(487), + [anon_sym_break] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_SEMI] = ACTIONS(489), + [anon_sym_DOT_AMP] = ACTIONS(642), + [anon_sym_DOT_AT] = ACTIONS(642), + [anon_sym_QMARK_DOT] = ACTIONS(642), + [anon_sym_STAR_DOT] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_import] = ACTIONS(487), + [anon_sym_as] = ACTIONS(646), + [anon_sym_package] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(487), + [anon_sym_assert] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(489), + [anon_sym_DASH_DASH] = ACTIONS(489), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_GT_GT_GT] = ACTIONS(652), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_in] = ACTIONS(646), + [anon_sym_BANGin] = ACTIONS(646), + [anon_sym_instanceof] = ACTIONS(646), + [anon_sym_BANGinstanceof] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(658), + [anon_sym_BANG_EQ] = ACTIONS(658), + [anon_sym_LT_EQ_GT] = ACTIONS(660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(660), + [anon_sym_EQ_TILDE] = ACTIONS(660), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(670), + [anon_sym_QMARK_COLON] = ACTIONS(672), + [anon_sym_STAR_STAR] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(489), + [anon_sym_interface] = ACTIONS(487), + [anon_sym_class] = ACTIONS(487), + [anon_sym_LBRACE] = ACTIONS(489), + [anon_sym_RBRACE] = ACTIONS(489), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(487), + [anon_sym_do] = ACTIONS(487), + [anon_sym_while] = ACTIONS(487), + [anon_sym_for] = ACTIONS(487), + [anon_sym_if] = ACTIONS(487), + [anon_sym_else] = ACTIONS(487), + [anon_sym_return] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(487), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(489), + [anon_sym_DQUOTE] = ACTIONS(487), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(489), + [anon_sym_DOLLAR_SLASH] = ACTIONS(489), + [anon_sym_switch] = ACTIONS(487), + [anon_sym_case] = ACTIONS(487), + [anon_sym_default] = ACTIONS(487), + [anon_sym_QMARK] = ACTIONS(678), + [anon_sym_try] = ACTIONS(487), + [anon_sym_catch] = ACTIONS(487), + [anon_sym_finally] = ACTIONS(487), + [anon_sym_int] = ACTIONS(487), + [anon_sym_boolean] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_short] = ACTIONS(487), + [anon_sym_long] = ACTIONS(487), + [anon_sym_float] = ACTIONS(487), + [anon_sym_double] = ACTIONS(487), + [anon_sym_void] = ACTIONS(487), + [anon_sym_public] = ACTIONS(487), + [anon_sym_protected] = ACTIONS(487), + [anon_sym_private] = ACTIONS(487), + [anon_sym_static] = ACTIONS(487), + [anon_sym_final] = ACTIONS(487), + [anon_sym_synchronized] = ACTIONS(487), + }, + [318] = { + [sym_comment] = STATE(318), + [sym_groovy_doc] = STATE(318), + [ts_builtin_sym_end] = ACTIONS(415), + [sym_identifier] = ACTIONS(413), + [anon_sym_break] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_DOT_AMP] = ACTIONS(415), + [anon_sym_DOT_AT] = ACTIONS(415), + [anon_sym_QMARK_DOT] = ACTIONS(415), + [anon_sym_STAR_DOT] = ACTIONS(415), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_import] = ACTIONS(413), + [anon_sym_as] = ACTIONS(413), + [anon_sym_package] = ACTIONS(413), + [anon_sym_AT] = ACTIONS(413), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_PLUS_PLUS] = ACTIONS(415), + [anon_sym_DASH_DASH] = ACTIONS(415), + [anon_sym_PERCENT] = ACTIONS(415), + [anon_sym_SLASH] = ACTIONS(413), + [anon_sym_PLUS] = ACTIONS(413), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(415), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_GT_GT_GT] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(413), + [anon_sym_DOT_DOT_LT] = ACTIONS(415), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(415), + [anon_sym_LT_DOT_DOT] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_EQ] = ACTIONS(413), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_in] = ACTIONS(413), + [anon_sym_BANGin] = ACTIONS(413), + [anon_sym_instanceof] = ACTIONS(413), + [anon_sym_BANGinstanceof] = ACTIONS(415), + [anon_sym_EQ_EQ] = ACTIONS(413), + [anon_sym_BANG_EQ] = ACTIONS(413), + [anon_sym_LT_EQ_GT] = ACTIONS(415), + [anon_sym_EQ_EQ_EQ] = ACTIONS(415), + [anon_sym_BANG_EQ_EQ] = ACTIONS(415), + [anon_sym_EQ_TILDE] = ACTIONS(415), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_QMARK_COLON] = ACTIONS(415), + [anon_sym_STAR_STAR] = ACTIONS(415), + [anon_sym_ATinterface] = ACTIONS(415), + [anon_sym_interface] = ACTIONS(413), + [anon_sym_class] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(415), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(413), + [anon_sym_do] = ACTIONS(413), + [anon_sym_while] = ACTIONS(413), + [anon_sym_for] = ACTIONS(413), + [anon_sym_if] = ACTIONS(413), + [anon_sym_else] = ACTIONS(413), + [anon_sym_pipeline] = ACTIONS(413), + [anon_sym_return] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(415), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_DOLLAR_SLASH] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(413), + [anon_sym_try] = ACTIONS(413), + [anon_sym_catch] = ACTIONS(413), + [anon_sym_finally] = ACTIONS(413), + [anon_sym_int] = ACTIONS(413), + [anon_sym_boolean] = ACTIONS(413), + [anon_sym_char] = ACTIONS(413), + [anon_sym_short] = ACTIONS(413), + [anon_sym_long] = ACTIONS(413), + [anon_sym_float] = ACTIONS(413), + [anon_sym_double] = ACTIONS(413), + [anon_sym_void] = ACTIONS(413), + [anon_sym_public] = ACTIONS(413), + [anon_sym_protected] = ACTIONS(413), + [anon_sym_private] = ACTIONS(413), + [anon_sym_static] = ACTIONS(413), + [anon_sym_final] = ACTIONS(413), + [anon_sym_synchronized] = ACTIONS(413), + }, + [319] = { + [sym_comment] = STATE(319), + [sym_groovy_doc] = STATE(319), + [aux_sym__juxt_argument_list_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(287), + [anon_sym_break] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_DOT_AMP] = ACTIONS(726), + [anon_sym_DOT_AT] = ACTIONS(726), + [anon_sym_QMARK_DOT] = ACTIONS(726), + [anon_sym_STAR_DOT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_import] = ACTIONS(287), + [anon_sym_as] = ACTIONS(730), + [anon_sym_package] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_assert] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(289), + [anon_sym_DASH_DASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(732), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_LT_LT] = ACTIONS(736), + [anon_sym_GT_GT] = ACTIONS(738), + [anon_sym_GT_GT_GT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(738), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_in] = ACTIONS(730), + [anon_sym_BANGin] = ACTIONS(730), + [anon_sym_instanceof] = ACTIONS(730), + [anon_sym_BANGinstanceof] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_LT_EQ_GT] = ACTIONS(744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(744), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(752), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [anon_sym_QMARK_COLON] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(289), + [anon_sym_interface] = ACTIONS(287), + [anon_sym_class] = ACTIONS(287), + [anon_sym_COMMA] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(289), + [anon_sym_RBRACE] = ACTIONS(289), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(287), + [anon_sym_do] = ACTIONS(287), + [anon_sym_while] = ACTIONS(287), + [anon_sym_for] = ACTIONS(287), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(287), + [anon_sym_return] = ACTIONS(287), + [anon_sym_SQUOTE] = ACTIONS(287), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR_SLASH] = ACTIONS(289), + [anon_sym_switch] = ACTIONS(287), + [anon_sym_case] = ACTIONS(287), + [anon_sym_default] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(762), + [anon_sym_try] = ACTIONS(287), + [anon_sym_int] = ACTIONS(287), + [anon_sym_boolean] = ACTIONS(287), + [anon_sym_char] = ACTIONS(287), + [anon_sym_short] = ACTIONS(287), + [anon_sym_long] = ACTIONS(287), + [anon_sym_float] = ACTIONS(287), + [anon_sym_double] = ACTIONS(287), + [anon_sym_void] = ACTIONS(287), + [anon_sym_public] = ACTIONS(287), + [anon_sym_protected] = ACTIONS(287), + [anon_sym_private] = ACTIONS(287), + [anon_sym_static] = ACTIONS(287), + [anon_sym_final] = ACTIONS(287), + [anon_sym_synchronized] = ACTIONS(287), + }, + [320] = { + [sym_comment] = STATE(320), + [sym_groovy_doc] = STATE(320), + [ts_builtin_sym_end] = ACTIONS(331), + [sym_identifier] = ACTIONS(329), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_DOT_AMP] = ACTIONS(331), + [anon_sym_DOT_AT] = ACTIONS(331), + [anon_sym_QMARK_DOT] = ACTIONS(331), + [anon_sym_STAR_DOT] = ACTIONS(331), + [anon_sym_STAR] = ACTIONS(329), + [anon_sym_import] = ACTIONS(329), + [anon_sym_as] = ACTIONS(329), + [anon_sym_package] = ACTIONS(329), + [anon_sym_AT] = ACTIONS(329), + [anon_sym_assert] = ACTIONS(329), + [anon_sym_PLUS_PLUS] = ACTIONS(331), + [anon_sym_DASH_DASH] = ACTIONS(331), + [anon_sym_PERCENT] = ACTIONS(331), + [anon_sym_SLASH] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(329), + [anon_sym_DASH] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(331), + [anon_sym_DOT_DOT] = ACTIONS(329), + [anon_sym_DOT_DOT_LT] = ACTIONS(331), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(331), + [anon_sym_LT_DOT_DOT] = ACTIONS(329), + [anon_sym_LT] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(329), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_GT_EQ] = ACTIONS(331), + [anon_sym_in] = ACTIONS(329), + [anon_sym_BANGin] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANGinstanceof] = ACTIONS(331), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_LT_EQ_GT] = ACTIONS(331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(331), + [anon_sym_EQ_TILDE] = ACTIONS(331), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(331), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(331), + [anon_sym_QMARK_COLON] = ACTIONS(331), + [anon_sym_STAR_STAR] = ACTIONS(331), + [anon_sym_ATinterface] = ACTIONS(331), + [anon_sym_interface] = ACTIONS(329), + [anon_sym_class] = ACTIONS(329), + [anon_sym_COMMA] = ACTIONS(331), + [anon_sym_LBRACE] = ACTIONS(331), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(329), + [anon_sym_do] = ACTIONS(329), + [anon_sym_while] = ACTIONS(329), + [anon_sym_for] = ACTIONS(329), + [anon_sym_if] = ACTIONS(329), + [anon_sym_else] = ACTIONS(329), + [anon_sym_pipeline] = ACTIONS(329), + [anon_sym_return] = ACTIONS(329), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(329), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(331), + [anon_sym_DOLLAR_SLASH] = ACTIONS(331), + [anon_sym_switch] = ACTIONS(329), + [anon_sym_QMARK] = ACTIONS(329), + [anon_sym_try] = ACTIONS(329), + [anon_sym_catch] = ACTIONS(329), + [anon_sym_finally] = ACTIONS(329), + [anon_sym_int] = ACTIONS(329), + [anon_sym_boolean] = ACTIONS(329), + [anon_sym_char] = ACTIONS(329), + [anon_sym_short] = ACTIONS(329), + [anon_sym_long] = ACTIONS(329), + [anon_sym_float] = ACTIONS(329), + [anon_sym_double] = ACTIONS(329), + [anon_sym_void] = ACTIONS(329), + [anon_sym_public] = ACTIONS(329), + [anon_sym_protected] = ACTIONS(329), + [anon_sym_private] = ACTIONS(329), + [anon_sym_static] = ACTIONS(329), + [anon_sym_final] = ACTIONS(329), + [anon_sym_synchronized] = ACTIONS(329), + }, + [321] = { + [sym_comment] = STATE(321), + [sym_groovy_doc] = STATE(321), + [ts_builtin_sym_end] = ACTIONS(411), + [sym_identifier] = ACTIONS(409), + [anon_sym_break] = ACTIONS(409), + [anon_sym_continue] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(411), + [anon_sym_DOT_AMP] = ACTIONS(411), + [anon_sym_DOT_AT] = ACTIONS(411), + [anon_sym_QMARK_DOT] = ACTIONS(411), + [anon_sym_STAR_DOT] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(409), + [anon_sym_import] = ACTIONS(409), + [anon_sym_as] = ACTIONS(409), + [anon_sym_package] = ACTIONS(409), + [anon_sym_AT] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_PLUS_PLUS] = ACTIONS(411), + [anon_sym_DASH_DASH] = ACTIONS(411), + [anon_sym_PERCENT] = ACTIONS(411), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_LT_LT] = ACTIONS(411), + [anon_sym_GT_GT] = ACTIONS(409), + [anon_sym_GT_GT_GT] = ACTIONS(411), + [anon_sym_DOT_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT_LT] = ACTIONS(411), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(411), + [anon_sym_LT_DOT_DOT] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_LT_EQ] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_GT_EQ] = ACTIONS(411), + [anon_sym_in] = ACTIONS(409), + [anon_sym_BANGin] = ACTIONS(409), + [anon_sym_instanceof] = ACTIONS(409), + [anon_sym_BANGinstanceof] = ACTIONS(411), + [anon_sym_EQ_EQ] = ACTIONS(409), + [anon_sym_BANG_EQ] = ACTIONS(409), + [anon_sym_LT_EQ_GT] = ACTIONS(411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(411), + [anon_sym_EQ_TILDE] = ACTIONS(411), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_CARET] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(411), + [anon_sym_PIPE_PIPE] = ACTIONS(411), + [anon_sym_QMARK_COLON] = ACTIONS(411), + [anon_sym_STAR_STAR] = ACTIONS(411), + [anon_sym_ATinterface] = ACTIONS(411), + [anon_sym_interface] = ACTIONS(409), + [anon_sym_class] = ACTIONS(409), + [anon_sym_COMMA] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(409), + [anon_sym_do] = ACTIONS(409), + [anon_sym_while] = ACTIONS(409), + [anon_sym_for] = ACTIONS(409), + [anon_sym_if] = ACTIONS(409), + [anon_sym_else] = ACTIONS(409), + [anon_sym_pipeline] = ACTIONS(409), + [anon_sym_return] = ACTIONS(409), + [anon_sym_SQUOTE] = ACTIONS(409), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(411), + [anon_sym_DOLLAR_SLASH] = ACTIONS(411), + [anon_sym_switch] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(409), + [anon_sym_try] = ACTIONS(409), + [anon_sym_catch] = ACTIONS(409), + [anon_sym_finally] = ACTIONS(409), + [anon_sym_int] = ACTIONS(409), + [anon_sym_boolean] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_short] = ACTIONS(409), + [anon_sym_long] = ACTIONS(409), + [anon_sym_float] = ACTIONS(409), + [anon_sym_double] = ACTIONS(409), + [anon_sym_void] = ACTIONS(409), + [anon_sym_public] = ACTIONS(409), + [anon_sym_protected] = ACTIONS(409), + [anon_sym_private] = ACTIONS(409), + [anon_sym_static] = ACTIONS(409), + [anon_sym_final] = ACTIONS(409), + [anon_sym_synchronized] = ACTIONS(409), + }, + [322] = { + [sym_comment] = STATE(322), + [sym_groovy_doc] = STATE(322), + [ts_builtin_sym_end] = ACTIONS(407), + [sym_identifier] = ACTIONS(405), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(407), + [anon_sym_DOT_AMP] = ACTIONS(407), + [anon_sym_DOT_AT] = ACTIONS(407), + [anon_sym_QMARK_DOT] = ACTIONS(407), + [anon_sym_STAR_DOT] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_import] = ACTIONS(405), + [anon_sym_as] = ACTIONS(405), + [anon_sym_package] = ACTIONS(405), + [anon_sym_AT] = ACTIONS(405), + [anon_sym_assert] = ACTIONS(405), + [anon_sym_PLUS_PLUS] = ACTIONS(407), + [anon_sym_DASH_DASH] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_LT_LT] = ACTIONS(407), + [anon_sym_GT_GT] = ACTIONS(405), + [anon_sym_GT_GT_GT] = ACTIONS(407), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT_LT] = ACTIONS(407), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(407), + [anon_sym_LT_DOT_DOT] = ACTIONS(405), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(405), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_in] = ACTIONS(405), + [anon_sym_BANGin] = ACTIONS(405), + [anon_sym_instanceof] = ACTIONS(405), + [anon_sym_BANGinstanceof] = ACTIONS(407), + [anon_sym_EQ_EQ] = ACTIONS(405), + [anon_sym_BANG_EQ] = ACTIONS(405), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_EQ_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ_EQ] = ACTIONS(407), + [anon_sym_EQ_TILDE] = ACTIONS(407), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(405), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [anon_sym_QMARK_COLON] = ACTIONS(407), + [anon_sym_STAR_STAR] = ACTIONS(407), + [anon_sym_ATinterface] = ACTIONS(407), + [anon_sym_interface] = ACTIONS(405), + [anon_sym_class] = ACTIONS(405), + [anon_sym_COMMA] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(407), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(405), + [anon_sym_do] = ACTIONS(405), + [anon_sym_while] = ACTIONS(405), + [anon_sym_for] = ACTIONS(405), + [anon_sym_if] = ACTIONS(405), + [anon_sym_else] = ACTIONS(405), + [anon_sym_pipeline] = ACTIONS(405), + [anon_sym_return] = ACTIONS(405), + [anon_sym_SQUOTE] = ACTIONS(405), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(405), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(407), + [anon_sym_DOLLAR_SLASH] = ACTIONS(407), + [anon_sym_switch] = ACTIONS(405), + [anon_sym_QMARK] = ACTIONS(405), + [anon_sym_try] = ACTIONS(405), + [anon_sym_catch] = ACTIONS(405), + [anon_sym_finally] = ACTIONS(405), + [anon_sym_int] = ACTIONS(405), + [anon_sym_boolean] = ACTIONS(405), + [anon_sym_char] = ACTIONS(405), + [anon_sym_short] = ACTIONS(405), + [anon_sym_long] = ACTIONS(405), + [anon_sym_float] = ACTIONS(405), + [anon_sym_double] = ACTIONS(405), + [anon_sym_void] = ACTIONS(405), + [anon_sym_public] = ACTIONS(405), + [anon_sym_protected] = ACTIONS(405), + [anon_sym_private] = ACTIONS(405), + [anon_sym_static] = ACTIONS(405), + [anon_sym_final] = ACTIONS(405), + [anon_sym_synchronized] = ACTIONS(405), + }, + [323] = { + [sym_comment] = STATE(323), + [sym_groovy_doc] = STATE(323), + [ts_builtin_sym_end] = ACTIONS(403), + [sym_identifier] = ACTIONS(401), + [anon_sym_break] = ACTIONS(401), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(403), + [anon_sym_DOT_AMP] = ACTIONS(403), + [anon_sym_DOT_AT] = ACTIONS(403), + [anon_sym_QMARK_DOT] = ACTIONS(403), + [anon_sym_STAR_DOT] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_import] = ACTIONS(401), + [anon_sym_as] = ACTIONS(401), + [anon_sym_package] = ACTIONS(401), + [anon_sym_AT] = ACTIONS(401), + [anon_sym_assert] = ACTIONS(401), + [anon_sym_PLUS_PLUS] = ACTIONS(403), + [anon_sym_DASH_DASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_GT_GT_GT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_LT] = ACTIONS(403), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(403), + [anon_sym_LT_DOT_DOT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(403), + [anon_sym_in] = ACTIONS(401), + [anon_sym_BANGin] = ACTIONS(401), + [anon_sym_instanceof] = ACTIONS(401), + [anon_sym_BANGinstanceof] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_LT_EQ_GT] = ACTIONS(403), + [anon_sym_EQ_EQ_EQ] = ACTIONS(403), + [anon_sym_BANG_EQ_EQ] = ACTIONS(403), + [anon_sym_EQ_TILDE] = ACTIONS(403), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_QMARK_COLON] = ACTIONS(403), + [anon_sym_STAR_STAR] = ACTIONS(403), + [anon_sym_ATinterface] = ACTIONS(403), + [anon_sym_interface] = ACTIONS(401), + [anon_sym_class] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(403), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(401), + [anon_sym_do] = ACTIONS(401), + [anon_sym_while] = ACTIONS(401), + [anon_sym_for] = ACTIONS(401), + [anon_sym_if] = ACTIONS(401), + [anon_sym_else] = ACTIONS(401), + [anon_sym_pipeline] = ACTIONS(401), + [anon_sym_return] = ACTIONS(401), + [anon_sym_SQUOTE] = ACTIONS(401), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(403), + [anon_sym_DQUOTE] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_DOLLAR_SLASH] = ACTIONS(403), + [anon_sym_switch] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_try] = ACTIONS(401), + [anon_sym_catch] = ACTIONS(401), + [anon_sym_finally] = ACTIONS(401), + [anon_sym_int] = ACTIONS(401), + [anon_sym_boolean] = ACTIONS(401), + [anon_sym_char] = ACTIONS(401), + [anon_sym_short] = ACTIONS(401), + [anon_sym_long] = ACTIONS(401), + [anon_sym_float] = ACTIONS(401), + [anon_sym_double] = ACTIONS(401), + [anon_sym_void] = ACTIONS(401), + [anon_sym_public] = ACTIONS(401), + [anon_sym_protected] = ACTIONS(401), + [anon_sym_private] = ACTIONS(401), + [anon_sym_static] = ACTIONS(401), + [anon_sym_final] = ACTIONS(401), + [anon_sym_synchronized] = ACTIONS(401), + }, + [324] = { + [sym_comment] = STATE(324), + [sym_groovy_doc] = STATE(324), + [ts_builtin_sym_end] = ACTIONS(353), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(686), + [anon_sym_DOT_AT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(686), + [anon_sym_STAR_DOT] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(353), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LT_LT] = ACTIONS(353), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_GT_GT_GT] = ACTIONS(353), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_pipeline] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [325] = { + [sym_comment] = STATE(325), + [sym_groovy_doc] = STATE(325), + [sym_identifier] = ACTIONS(473), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_DOT_AMP] = ACTIONS(642), + [anon_sym_DOT_AT] = ACTIONS(642), + [anon_sym_QMARK_DOT] = ACTIONS(642), + [anon_sym_STAR_DOT] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_import] = ACTIONS(473), + [anon_sym_as] = ACTIONS(646), + [anon_sym_package] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(473), + [anon_sym_assert] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_GT_GT_GT] = ACTIONS(652), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_in] = ACTIONS(646), + [anon_sym_BANGin] = ACTIONS(646), + [anon_sym_instanceof] = ACTIONS(646), + [anon_sym_BANGinstanceof] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(658), + [anon_sym_BANG_EQ] = ACTIONS(658), + [anon_sym_LT_EQ_GT] = ACTIONS(660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(660), + [anon_sym_EQ_TILDE] = ACTIONS(660), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(670), + [anon_sym_QMARK_COLON] = ACTIONS(672), + [anon_sym_STAR_STAR] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(475), + [anon_sym_interface] = ACTIONS(473), + [anon_sym_class] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_RBRACE] = ACTIONS(475), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(473), + [anon_sym_do] = ACTIONS(473), + [anon_sym_while] = ACTIONS(473), + [anon_sym_for] = ACTIONS(473), + [anon_sym_if] = ACTIONS(473), + [anon_sym_else] = ACTIONS(473), + [anon_sym_return] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_SLASH] = ACTIONS(475), + [anon_sym_switch] = ACTIONS(473), + [anon_sym_case] = ACTIONS(473), + [anon_sym_default] = ACTIONS(473), + [anon_sym_QMARK] = ACTIONS(678), + [anon_sym_try] = ACTIONS(473), + [anon_sym_catch] = ACTIONS(473), + [anon_sym_finally] = ACTIONS(473), + [anon_sym_int] = ACTIONS(473), + [anon_sym_boolean] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_short] = ACTIONS(473), + [anon_sym_long] = ACTIONS(473), + [anon_sym_float] = ACTIONS(473), + [anon_sym_double] = ACTIONS(473), + [anon_sym_void] = ACTIONS(473), + [anon_sym_public] = ACTIONS(473), + [anon_sym_protected] = ACTIONS(473), + [anon_sym_private] = ACTIONS(473), + [anon_sym_static] = ACTIONS(473), + [anon_sym_final] = ACTIONS(473), + [anon_sym_synchronized] = ACTIONS(473), + }, + [326] = { + [sym_comment] = STATE(326), + [sym_groovy_doc] = STATE(326), + [ts_builtin_sym_end] = ACTIONS(353), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(686), + [anon_sym_DOT_AT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(686), + [anon_sym_STAR_DOT] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(696), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_GT_GT_GT] = ACTIONS(696), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_pipeline] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [327] = { + [sym_comment] = STATE(327), + [sym_groovy_doc] = STATE(327), + [ts_builtin_sym_end] = ACTIONS(353), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(686), + [anon_sym_DOT_AT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(686), + [anon_sym_STAR_DOT] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LT_LT] = ACTIONS(353), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_GT_GT_GT] = ACTIONS(353), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_pipeline] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [328] = { + [sym_comment] = STATE(328), + [sym_groovy_doc] = STATE(328), + [ts_builtin_sym_end] = ACTIONS(353), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(686), + [anon_sym_DOT_AT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(686), + [anon_sym_STAR_DOT] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(353), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_GT_GT_GT] = ACTIONS(353), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_pipeline] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [329] = { + [sym_comment] = STATE(329), + [sym_groovy_doc] = STATE(329), + [ts_builtin_sym_end] = ACTIONS(353), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(686), + [anon_sym_DOT_AT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(686), + [anon_sym_STAR_DOT] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(690), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(696), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_GT_GT_GT] = ACTIONS(696), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_in] = ACTIONS(690), + [anon_sym_BANGin] = ACTIONS(690), + [anon_sym_instanceof] = ACTIONS(690), + [anon_sym_BANGinstanceof] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_pipeline] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [330] = { + [sym_comment] = STATE(330), + [sym_groovy_doc] = STATE(330), + [ts_builtin_sym_end] = ACTIONS(353), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(686), + [anon_sym_DOT_AT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(686), + [anon_sym_STAR_DOT] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(690), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(696), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_GT_GT_GT] = ACTIONS(696), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_in] = ACTIONS(690), + [anon_sym_BANGin] = ACTIONS(690), + [anon_sym_instanceof] = ACTIONS(690), + [anon_sym_BANGinstanceof] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(702), + [anon_sym_BANG_EQ] = ACTIONS(702), + [anon_sym_LT_EQ_GT] = ACTIONS(704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(704), + [anon_sym_EQ_TILDE] = ACTIONS(704), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(704), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_pipeline] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [331] = { + [sym_comment] = STATE(331), + [sym_groovy_doc] = STATE(331), + [ts_builtin_sym_end] = ACTIONS(353), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(686), + [anon_sym_DOT_AT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(686), + [anon_sym_STAR_DOT] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(690), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(696), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_GT_GT_GT] = ACTIONS(696), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_in] = ACTIONS(690), + [anon_sym_BANGin] = ACTIONS(690), + [anon_sym_instanceof] = ACTIONS(690), + [anon_sym_BANGinstanceof] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(702), + [anon_sym_BANG_EQ] = ACTIONS(702), + [anon_sym_LT_EQ_GT] = ACTIONS(704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(704), + [anon_sym_EQ_TILDE] = ACTIONS(704), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(704), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_pipeline] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [332] = { + [sym_comment] = STATE(332), + [sym_groovy_doc] = STATE(332), + [ts_builtin_sym_end] = ACTIONS(353), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(686), + [anon_sym_DOT_AT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(686), + [anon_sym_STAR_DOT] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(690), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(696), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_GT_GT_GT] = ACTIONS(696), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_in] = ACTIONS(690), + [anon_sym_BANGin] = ACTIONS(690), + [anon_sym_instanceof] = ACTIONS(690), + [anon_sym_BANGinstanceof] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(702), + [anon_sym_BANG_EQ] = ACTIONS(702), + [anon_sym_LT_EQ_GT] = ACTIONS(704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(704), + [anon_sym_EQ_TILDE] = ACTIONS(704), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(704), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_pipeline] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [333] = { + [sym_comment] = STATE(333), + [sym_groovy_doc] = STATE(333), + [ts_builtin_sym_end] = ACTIONS(377), + [sym_identifier] = ACTIONS(375), + [anon_sym_break] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(377), + [anon_sym_DOT_AMP] = ACTIONS(686), + [anon_sym_DOT_AT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(686), + [anon_sym_STAR_DOT] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_import] = ACTIONS(375), + [anon_sym_as] = ACTIONS(690), + [anon_sym_package] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(375), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_PLUS_PLUS] = ACTIONS(377), + [anon_sym_DASH_DASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(696), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_GT_GT_GT] = ACTIONS(696), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_in] = ACTIONS(690), + [anon_sym_BANGin] = ACTIONS(690), + [anon_sym_instanceof] = ACTIONS(690), + [anon_sym_BANGinstanceof] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(702), + [anon_sym_BANG_EQ] = ACTIONS(702), + [anon_sym_LT_EQ_GT] = ACTIONS(704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(704), + [anon_sym_EQ_TILDE] = ACTIONS(704), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(704), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(710), + [anon_sym_AMP_AMP] = ACTIONS(712), + [anon_sym_PIPE_PIPE] = ACTIONS(714), + [anon_sym_QMARK_COLON] = ACTIONS(716), + [anon_sym_STAR_STAR] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(377), + [anon_sym_interface] = ACTIONS(375), + [anon_sym_class] = ACTIONS(375), + [anon_sym_COMMA] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(377), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(375), + [anon_sym_do] = ACTIONS(375), + [anon_sym_while] = ACTIONS(375), + [anon_sym_for] = ACTIONS(375), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(375), + [anon_sym_pipeline] = ACTIONS(375), + [anon_sym_return] = ACTIONS(375), + [anon_sym_SQUOTE] = ACTIONS(375), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_DOLLAR_SLASH] = ACTIONS(377), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(722), + [anon_sym_try] = ACTIONS(375), + [anon_sym_catch] = ACTIONS(375), + [anon_sym_finally] = ACTIONS(375), + [anon_sym_int] = ACTIONS(375), + [anon_sym_boolean] = ACTIONS(375), + [anon_sym_char] = ACTIONS(375), + [anon_sym_short] = ACTIONS(375), + [anon_sym_long] = ACTIONS(375), + [anon_sym_float] = ACTIONS(375), + [anon_sym_double] = ACTIONS(375), + [anon_sym_void] = ACTIONS(375), + [anon_sym_public] = ACTIONS(375), + [anon_sym_protected] = ACTIONS(375), + [anon_sym_private] = ACTIONS(375), + [anon_sym_static] = ACTIONS(375), + [anon_sym_final] = ACTIONS(375), + [anon_sym_synchronized] = ACTIONS(375), + }, + [334] = { + [sym_comment] = STATE(334), + [sym_groovy_doc] = STATE(334), + [ts_builtin_sym_end] = ACTIONS(353), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(686), + [anon_sym_DOT_AT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(686), + [anon_sym_STAR_DOT] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(690), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(696), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_GT_GT_GT] = ACTIONS(696), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_in] = ACTIONS(690), + [anon_sym_BANGin] = ACTIONS(690), + [anon_sym_instanceof] = ACTIONS(690), + [anon_sym_BANGinstanceof] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(702), + [anon_sym_BANG_EQ] = ACTIONS(702), + [anon_sym_LT_EQ_GT] = ACTIONS(704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(704), + [anon_sym_EQ_TILDE] = ACTIONS(704), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(704), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(710), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_pipeline] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [335] = { + [sym_comment] = STATE(335), + [sym_groovy_doc] = STATE(335), + [ts_builtin_sym_end] = ACTIONS(353), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(686), + [anon_sym_DOT_AT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(686), + [anon_sym_STAR_DOT] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(690), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(696), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_GT_GT_GT] = ACTIONS(696), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_in] = ACTIONS(690), + [anon_sym_BANGin] = ACTIONS(690), + [anon_sym_instanceof] = ACTIONS(690), + [anon_sym_BANGinstanceof] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(702), + [anon_sym_BANG_EQ] = ACTIONS(702), + [anon_sym_LT_EQ_GT] = ACTIONS(704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(704), + [anon_sym_EQ_TILDE] = ACTIONS(704), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(704), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(710), + [anon_sym_AMP_AMP] = ACTIONS(712), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_pipeline] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [336] = { + [sym_comment] = STATE(336), + [sym_groovy_doc] = STATE(336), + [ts_builtin_sym_end] = ACTIONS(353), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(686), + [anon_sym_DOT_AT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(686), + [anon_sym_STAR_DOT] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(690), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(696), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_GT_GT_GT] = ACTIONS(696), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_in] = ACTIONS(690), + [anon_sym_BANGin] = ACTIONS(690), + [anon_sym_instanceof] = ACTIONS(690), + [anon_sym_BANGinstanceof] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(702), + [anon_sym_BANG_EQ] = ACTIONS(702), + [anon_sym_LT_EQ_GT] = ACTIONS(704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(704), + [anon_sym_EQ_TILDE] = ACTIONS(704), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(704), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(710), + [anon_sym_AMP_AMP] = ACTIONS(712), + [anon_sym_PIPE_PIPE] = ACTIONS(714), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_pipeline] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [337] = { + [sym_comment] = STATE(337), + [sym_groovy_doc] = STATE(337), + [ts_builtin_sym_end] = ACTIONS(353), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(686), + [anon_sym_DOT_AT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(686), + [anon_sym_STAR_DOT] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(353), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LT_LT] = ACTIONS(353), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_GT_GT_GT] = ACTIONS(353), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_pipeline] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_catch] = ACTIONS(351), + [anon_sym_finally] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [338] = { + [sym_comment] = STATE(338), + [sym_groovy_doc] = STATE(338), + [sym_identifier] = ACTIONS(501), + [anon_sym_break] = ACTIONS(501), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_SEMI] = ACTIONS(503), + [anon_sym_DOT_AMP] = ACTIONS(642), + [anon_sym_DOT_AT] = ACTIONS(642), + [anon_sym_QMARK_DOT] = ACTIONS(642), + [anon_sym_STAR_DOT] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_import] = ACTIONS(501), + [anon_sym_as] = ACTIONS(646), + [anon_sym_package] = ACTIONS(501), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_assert] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(503), + [anon_sym_DASH_DASH] = ACTIONS(503), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_GT_GT_GT] = ACTIONS(652), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_in] = ACTIONS(646), + [anon_sym_BANGin] = ACTIONS(646), + [anon_sym_instanceof] = ACTIONS(646), + [anon_sym_BANGinstanceof] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(658), + [anon_sym_BANG_EQ] = ACTIONS(658), + [anon_sym_LT_EQ_GT] = ACTIONS(660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(660), + [anon_sym_EQ_TILDE] = ACTIONS(660), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(670), + [anon_sym_QMARK_COLON] = ACTIONS(672), + [anon_sym_STAR_STAR] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(503), + [anon_sym_interface] = ACTIONS(501), + [anon_sym_class] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(503), + [anon_sym_RBRACE] = ACTIONS(503), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(501), + [anon_sym_do] = ACTIONS(501), + [anon_sym_while] = ACTIONS(501), + [anon_sym_for] = ACTIONS(501), + [anon_sym_if] = ACTIONS(501), + [anon_sym_else] = ACTIONS(501), + [anon_sym_return] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(503), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(503), + [anon_sym_DOLLAR_SLASH] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(501), + [anon_sym_case] = ACTIONS(501), + [anon_sym_default] = ACTIONS(501), + [anon_sym_QMARK] = ACTIONS(678), + [anon_sym_try] = ACTIONS(501), + [anon_sym_catch] = ACTIONS(501), + [anon_sym_finally] = ACTIONS(501), + [anon_sym_int] = ACTIONS(501), + [anon_sym_boolean] = ACTIONS(501), + [anon_sym_char] = ACTIONS(501), + [anon_sym_short] = ACTIONS(501), + [anon_sym_long] = ACTIONS(501), + [anon_sym_float] = ACTIONS(501), + [anon_sym_double] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_public] = ACTIONS(501), + [anon_sym_protected] = ACTIONS(501), + [anon_sym_private] = ACTIONS(501), + [anon_sym_static] = ACTIONS(501), + [anon_sym_final] = ACTIONS(501), + [anon_sym_synchronized] = ACTIONS(501), + }, + [339] = { + [sym_comment] = STATE(339), + [sym_groovy_doc] = STATE(339), + [sym_identifier] = ACTIONS(267), + [anon_sym_break] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(267), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_DOT_AMP] = ACTIONS(269), + [anon_sym_DOT_AT] = ACTIONS(269), + [anon_sym_QMARK_DOT] = ACTIONS(269), + [anon_sym_STAR_DOT] = ACTIONS(269), + [anon_sym_STAR] = ACTIONS(267), + [anon_sym_import] = ACTIONS(267), + [anon_sym_as] = ACTIONS(267), + [anon_sym_package] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(267), + [anon_sym_assert] = ACTIONS(267), + [anon_sym_PLUS_PLUS] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(269), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_GT_GT] = ACTIONS(267), + [anon_sym_GT_GT_GT] = ACTIONS(269), + [anon_sym_DOT_DOT] = ACTIONS(267), + [anon_sym_DOT_DOT_LT] = ACTIONS(269), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(269), + [anon_sym_LT_DOT_DOT] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(267), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_in] = ACTIONS(267), + [anon_sym_BANGin] = ACTIONS(267), + [anon_sym_instanceof] = ACTIONS(267), + [anon_sym_BANGinstanceof] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(267), + [anon_sym_BANG_EQ] = ACTIONS(267), + [anon_sym_LT_EQ_GT] = ACTIONS(269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(269), + [anon_sym_EQ_TILDE] = ACTIONS(269), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(267), + [anon_sym_AMP_AMP] = ACTIONS(269), + [anon_sym_PIPE_PIPE] = ACTIONS(269), + [anon_sym_QMARK_COLON] = ACTIONS(269), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_ATinterface] = ACTIONS(269), + [anon_sym_interface] = ACTIONS(267), + [anon_sym_class] = ACTIONS(267), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_RBRACE] = ACTIONS(269), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(267), + [anon_sym_do] = ACTIONS(267), + [anon_sym_while] = ACTIONS(267), + [anon_sym_for] = ACTIONS(267), + [anon_sym_if] = ACTIONS(267), + [anon_sym_else] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(269), + [anon_sym_return] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(267), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(267), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(269), + [anon_sym_DOLLAR_SLASH] = ACTIONS(269), + [anon_sym_switch] = ACTIONS(267), + [anon_sym_case] = ACTIONS(267), + [anon_sym_default] = ACTIONS(267), + [anon_sym_QMARK] = ACTIONS(267), + [anon_sym_try] = ACTIONS(267), + [anon_sym_int] = ACTIONS(267), + [anon_sym_boolean] = ACTIONS(267), + [anon_sym_char] = ACTIONS(267), + [anon_sym_short] = ACTIONS(267), + [anon_sym_long] = ACTIONS(267), + [anon_sym_float] = ACTIONS(267), + [anon_sym_double] = ACTIONS(267), + [anon_sym_void] = ACTIONS(267), + [anon_sym_public] = ACTIONS(267), + [anon_sym_protected] = ACTIONS(267), + [anon_sym_private] = ACTIONS(267), + [anon_sym_static] = ACTIONS(267), + [anon_sym_final] = ACTIONS(267), + [anon_sym_synchronized] = ACTIONS(267), + }, + [340] = { + [sym_comment] = STATE(340), + [sym_groovy_doc] = STATE(340), + [ts_builtin_sym_end] = ACTIONS(391), + [sym_identifier] = ACTIONS(389), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_SEMI] = ACTIONS(391), + [anon_sym_DOT_AMP] = ACTIONS(686), + [anon_sym_DOT_AT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(686), + [anon_sym_STAR_DOT] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_import] = ACTIONS(389), + [anon_sym_as] = ACTIONS(690), + [anon_sym_package] = ACTIONS(389), + [anon_sym_AT] = ACTIONS(389), + [anon_sym_assert] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(696), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_GT_GT_GT] = ACTIONS(696), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_in] = ACTIONS(690), + [anon_sym_BANGin] = ACTIONS(690), + [anon_sym_instanceof] = ACTIONS(690), + [anon_sym_BANGinstanceof] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(702), + [anon_sym_BANG_EQ] = ACTIONS(702), + [anon_sym_LT_EQ_GT] = ACTIONS(704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(704), + [anon_sym_EQ_TILDE] = ACTIONS(704), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(704), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(710), + [anon_sym_AMP_AMP] = ACTIONS(712), + [anon_sym_PIPE_PIPE] = ACTIONS(714), + [anon_sym_QMARK_COLON] = ACTIONS(716), + [anon_sym_STAR_STAR] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(391), + [anon_sym_interface] = ACTIONS(389), + [anon_sym_class] = ACTIONS(389), + [anon_sym_COMMA] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(389), + [anon_sym_do] = ACTIONS(389), + [anon_sym_while] = ACTIONS(389), + [anon_sym_for] = ACTIONS(389), + [anon_sym_if] = ACTIONS(389), + [anon_sym_else] = ACTIONS(389), + [anon_sym_pipeline] = ACTIONS(389), + [anon_sym_return] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(391), + [anon_sym_DQUOTE] = ACTIONS(389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(391), + [anon_sym_DOLLAR_SLASH] = ACTIONS(391), + [anon_sym_switch] = ACTIONS(389), + [anon_sym_QMARK] = ACTIONS(722), + [anon_sym_try] = ACTIONS(389), + [anon_sym_catch] = ACTIONS(389), + [anon_sym_finally] = ACTIONS(389), + [anon_sym_int] = ACTIONS(389), + [anon_sym_boolean] = ACTIONS(389), + [anon_sym_char] = ACTIONS(389), + [anon_sym_short] = ACTIONS(389), + [anon_sym_long] = ACTIONS(389), + [anon_sym_float] = ACTIONS(389), + [anon_sym_double] = ACTIONS(389), + [anon_sym_void] = ACTIONS(389), + [anon_sym_public] = ACTIONS(389), + [anon_sym_protected] = ACTIONS(389), + [anon_sym_private] = ACTIONS(389), + [anon_sym_static] = ACTIONS(389), + [anon_sym_final] = ACTIONS(389), + [anon_sym_synchronized] = ACTIONS(389), + }, + [341] = { + [sym_comment] = STATE(341), + [sym_groovy_doc] = STATE(341), + [sym_identifier] = ACTIONS(491), + [anon_sym_break] = ACTIONS(491), + [anon_sym_continue] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(493), + [anon_sym_DOT_AMP] = ACTIONS(642), + [anon_sym_DOT_AT] = ACTIONS(642), + [anon_sym_QMARK_DOT] = ACTIONS(642), + [anon_sym_STAR_DOT] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_import] = ACTIONS(491), + [anon_sym_as] = ACTIONS(646), + [anon_sym_package] = ACTIONS(491), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_assert] = ACTIONS(491), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_GT_GT_GT] = ACTIONS(652), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_in] = ACTIONS(646), + [anon_sym_BANGin] = ACTIONS(646), + [anon_sym_instanceof] = ACTIONS(646), + [anon_sym_BANGinstanceof] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(658), + [anon_sym_BANG_EQ] = ACTIONS(658), + [anon_sym_LT_EQ_GT] = ACTIONS(660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(660), + [anon_sym_EQ_TILDE] = ACTIONS(660), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(670), + [anon_sym_QMARK_COLON] = ACTIONS(672), + [anon_sym_STAR_STAR] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(493), + [anon_sym_interface] = ACTIONS(491), + [anon_sym_class] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_RBRACE] = ACTIONS(493), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(491), + [anon_sym_do] = ACTIONS(491), + [anon_sym_while] = ACTIONS(491), + [anon_sym_for] = ACTIONS(491), + [anon_sym_if] = ACTIONS(491), + [anon_sym_else] = ACTIONS(491), + [anon_sym_return] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(491), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(491), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(493), + [anon_sym_DOLLAR_SLASH] = ACTIONS(493), + [anon_sym_switch] = ACTIONS(491), + [anon_sym_case] = ACTIONS(491), + [anon_sym_default] = ACTIONS(491), + [anon_sym_QMARK] = ACTIONS(678), + [anon_sym_try] = ACTIONS(491), + [anon_sym_catch] = ACTIONS(491), + [anon_sym_finally] = ACTIONS(491), + [anon_sym_int] = ACTIONS(491), + [anon_sym_boolean] = ACTIONS(491), + [anon_sym_char] = ACTIONS(491), + [anon_sym_short] = ACTIONS(491), + [anon_sym_long] = ACTIONS(491), + [anon_sym_float] = ACTIONS(491), + [anon_sym_double] = ACTIONS(491), + [anon_sym_void] = ACTIONS(491), + [anon_sym_public] = ACTIONS(491), + [anon_sym_protected] = ACTIONS(491), + [anon_sym_private] = ACTIONS(491), + [anon_sym_static] = ACTIONS(491), + [anon_sym_final] = ACTIONS(491), + [anon_sym_synchronized] = ACTIONS(491), + }, + [342] = { + [sym_comment] = STATE(342), + [sym_groovy_doc] = STATE(342), + [ts_builtin_sym_end] = ACTIONS(261), + [sym_identifier] = ACTIONS(259), + [anon_sym_break] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(259), + [anon_sym_SEMI] = ACTIONS(261), + [anon_sym_DOT_AMP] = ACTIONS(261), + [anon_sym_DOT_AT] = ACTIONS(261), + [anon_sym_QMARK_DOT] = ACTIONS(261), + [anon_sym_STAR_DOT] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(259), + [anon_sym_import] = ACTIONS(259), + [anon_sym_as] = ACTIONS(259), + [anon_sym_package] = ACTIONS(259), + [anon_sym_AT] = ACTIONS(259), + [anon_sym_assert] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(261), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_GT_GT_GT] = ACTIONS(261), + [anon_sym_DOT_DOT] = ACTIONS(259), + [anon_sym_DOT_DOT_LT] = ACTIONS(261), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(261), + [anon_sym_LT_DOT_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(259), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_GT_EQ] = ACTIONS(261), + [anon_sym_in] = ACTIONS(259), + [anon_sym_BANGin] = ACTIONS(259), + [anon_sym_instanceof] = ACTIONS(259), + [anon_sym_BANGinstanceof] = ACTIONS(261), + [anon_sym_EQ_EQ] = ACTIONS(259), + [anon_sym_BANG_EQ] = ACTIONS(259), + [anon_sym_LT_EQ_GT] = ACTIONS(261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(261), + [anon_sym_BANG_EQ_EQ] = ACTIONS(261), + [anon_sym_EQ_TILDE] = ACTIONS(261), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_CARET] = ACTIONS(261), + [anon_sym_PIPE] = ACTIONS(259), + [anon_sym_AMP_AMP] = ACTIONS(261), + [anon_sym_PIPE_PIPE] = ACTIONS(261), + [anon_sym_QMARK_COLON] = ACTIONS(261), + [anon_sym_STAR_STAR] = ACTIONS(261), + [anon_sym_ATinterface] = ACTIONS(261), + [anon_sym_interface] = ACTIONS(259), + [anon_sym_class] = ACTIONS(259), + [anon_sym_COMMA] = ACTIONS(261), + [anon_sym_LBRACE] = ACTIONS(261), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(259), + [anon_sym_do] = ACTIONS(259), + [anon_sym_while] = ACTIONS(259), + [anon_sym_for] = ACTIONS(259), + [anon_sym_if] = ACTIONS(259), + [anon_sym_else] = ACTIONS(259), + [anon_sym_pipeline] = ACTIONS(259), + [anon_sym_return] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(261), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_SLASH] = ACTIONS(261), + [anon_sym_switch] = ACTIONS(259), + [anon_sym_QMARK] = ACTIONS(259), + [anon_sym_try] = ACTIONS(259), + [anon_sym_catch] = ACTIONS(259), + [anon_sym_finally] = ACTIONS(259), + [anon_sym_int] = ACTIONS(259), + [anon_sym_boolean] = ACTIONS(259), + [anon_sym_char] = ACTIONS(259), + [anon_sym_short] = ACTIONS(259), + [anon_sym_long] = ACTIONS(259), + [anon_sym_float] = ACTIONS(259), + [anon_sym_double] = ACTIONS(259), + [anon_sym_void] = ACTIONS(259), + [anon_sym_public] = ACTIONS(259), + [anon_sym_protected] = ACTIONS(259), + [anon_sym_private] = ACTIONS(259), + [anon_sym_static] = ACTIONS(259), + [anon_sym_final] = ACTIONS(259), + [anon_sym_synchronized] = ACTIONS(259), + }, + [343] = { + [sym_comment] = STATE(343), + [sym_groovy_doc] = STATE(343), + [ts_builtin_sym_end] = ACTIONS(357), + [sym_identifier] = ACTIONS(355), + [anon_sym_break] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_DOT_AMP] = ACTIONS(357), + [anon_sym_DOT_AT] = ACTIONS(357), + [anon_sym_QMARK_DOT] = ACTIONS(357), + [anon_sym_STAR_DOT] = ACTIONS(357), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_import] = ACTIONS(355), + [anon_sym_as] = ACTIONS(355), + [anon_sym_package] = ACTIONS(355), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_assert] = ACTIONS(355), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(355), + [anon_sym_PLUS] = ACTIONS(355), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_LT_LT] = ACTIONS(357), + [anon_sym_GT_GT] = ACTIONS(355), + [anon_sym_GT_GT_GT] = ACTIONS(357), + [anon_sym_DOT_DOT] = ACTIONS(355), + [anon_sym_DOT_DOT_LT] = ACTIONS(357), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(357), + [anon_sym_LT_DOT_DOT] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_LT_EQ] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_EQ] = ACTIONS(357), + [anon_sym_in] = ACTIONS(355), + [anon_sym_BANGin] = ACTIONS(355), + [anon_sym_instanceof] = ACTIONS(355), + [anon_sym_BANGinstanceof] = ACTIONS(357), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_BANG_EQ] = ACTIONS(355), + [anon_sym_LT_EQ_GT] = ACTIONS(357), + [anon_sym_EQ_EQ_EQ] = ACTIONS(357), + [anon_sym_BANG_EQ_EQ] = ACTIONS(357), + [anon_sym_EQ_TILDE] = ACTIONS(357), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_CARET] = ACTIONS(357), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(357), + [anon_sym_PIPE_PIPE] = ACTIONS(357), + [anon_sym_QMARK_COLON] = ACTIONS(357), + [anon_sym_STAR_STAR] = ACTIONS(357), + [anon_sym_ATinterface] = ACTIONS(357), + [anon_sym_interface] = ACTIONS(355), + [anon_sym_class] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(357), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(355), + [anon_sym_do] = ACTIONS(355), + [anon_sym_while] = ACTIONS(355), + [anon_sym_for] = ACTIONS(355), + [anon_sym_if] = ACTIONS(355), + [anon_sym_else] = ACTIONS(355), + [anon_sym_pipeline] = ACTIONS(355), + [anon_sym_return] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(355), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(357), + [anon_sym_DOLLAR_SLASH] = ACTIONS(357), + [anon_sym_switch] = ACTIONS(355), + [anon_sym_QMARK] = ACTIONS(355), + [anon_sym_try] = ACTIONS(355), + [anon_sym_catch] = ACTIONS(355), + [anon_sym_finally] = ACTIONS(355), + [anon_sym_int] = ACTIONS(355), + [anon_sym_boolean] = ACTIONS(355), + [anon_sym_char] = ACTIONS(355), + [anon_sym_short] = ACTIONS(355), + [anon_sym_long] = ACTIONS(355), + [anon_sym_float] = ACTIONS(355), + [anon_sym_double] = ACTIONS(355), + [anon_sym_void] = ACTIONS(355), + [anon_sym_public] = ACTIONS(355), + [anon_sym_protected] = ACTIONS(355), + [anon_sym_private] = ACTIONS(355), + [anon_sym_static] = ACTIONS(355), + [anon_sym_final] = ACTIONS(355), + [anon_sym_synchronized] = ACTIONS(355), + }, + [344] = { + [sym_comment] = STATE(344), + [sym_groovy_doc] = STATE(344), + [ts_builtin_sym_end] = ACTIONS(381), + [sym_identifier] = ACTIONS(379), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_DOT_AMP] = ACTIONS(381), + [anon_sym_DOT_AT] = ACTIONS(381), + [anon_sym_QMARK_DOT] = ACTIONS(381), + [anon_sym_STAR_DOT] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(379), + [anon_sym_import] = ACTIONS(379), + [anon_sym_as] = ACTIONS(379), + [anon_sym_package] = ACTIONS(379), + [anon_sym_AT] = ACTIONS(379), + [anon_sym_assert] = ACTIONS(379), + [anon_sym_PLUS_PLUS] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(379), + [anon_sym_DASH] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(379), + [anon_sym_GT_GT_GT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_LT] = ACTIONS(381), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(381), + [anon_sym_LT_DOT_DOT] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_in] = ACTIONS(379), + [anon_sym_BANGin] = ACTIONS(379), + [anon_sym_instanceof] = ACTIONS(379), + [anon_sym_BANGinstanceof] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT_EQ_GT] = ACTIONS(381), + [anon_sym_EQ_EQ_EQ] = ACTIONS(381), + [anon_sym_BANG_EQ_EQ] = ACTIONS(381), + [anon_sym_EQ_TILDE] = ACTIONS(381), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [anon_sym_QMARK_COLON] = ACTIONS(381), + [anon_sym_STAR_STAR] = ACTIONS(381), + [anon_sym_ATinterface] = ACTIONS(381), + [anon_sym_interface] = ACTIONS(379), + [anon_sym_class] = ACTIONS(379), + [anon_sym_COMMA] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(381), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(379), + [anon_sym_do] = ACTIONS(379), + [anon_sym_while] = ACTIONS(379), + [anon_sym_for] = ACTIONS(379), + [anon_sym_if] = ACTIONS(379), + [anon_sym_else] = ACTIONS(379), + [anon_sym_pipeline] = ACTIONS(379), + [anon_sym_return] = ACTIONS(379), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(381), + [anon_sym_DOLLAR_SLASH] = ACTIONS(381), + [anon_sym_switch] = ACTIONS(379), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_try] = ACTIONS(379), + [anon_sym_catch] = ACTIONS(379), + [anon_sym_finally] = ACTIONS(379), + [anon_sym_int] = ACTIONS(379), + [anon_sym_boolean] = ACTIONS(379), + [anon_sym_char] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [anon_sym_long] = ACTIONS(379), + [anon_sym_float] = ACTIONS(379), + [anon_sym_double] = ACTIONS(379), + [anon_sym_void] = ACTIONS(379), + [anon_sym_public] = ACTIONS(379), + [anon_sym_protected] = ACTIONS(379), + [anon_sym_private] = ACTIONS(379), + [anon_sym_static] = ACTIONS(379), + [anon_sym_final] = ACTIONS(379), + [anon_sym_synchronized] = ACTIONS(379), + }, + [345] = { + [sym_comment] = STATE(345), + [sym_groovy_doc] = STATE(345), + [ts_builtin_sym_end] = ACTIONS(427), + [sym_identifier] = ACTIONS(425), + [anon_sym_break] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(425), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_DOT_AMP] = ACTIONS(427), + [anon_sym_DOT_AT] = ACTIONS(427), + [anon_sym_QMARK_DOT] = ACTIONS(427), + [anon_sym_STAR_DOT] = ACTIONS(427), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_import] = ACTIONS(425), + [anon_sym_as] = ACTIONS(425), + [anon_sym_package] = ACTIONS(425), + [anon_sym_AT] = ACTIONS(425), + [anon_sym_assert] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(427), + [anon_sym_DASH_DASH] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(425), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_LT_LT] = ACTIONS(427), + [anon_sym_GT_GT] = ACTIONS(425), + [anon_sym_GT_GT_GT] = ACTIONS(427), + [anon_sym_DOT_DOT] = ACTIONS(425), + [anon_sym_DOT_DOT_LT] = ACTIONS(427), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(427), + [anon_sym_LT_DOT_DOT] = ACTIONS(425), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_LT_EQ] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(425), + [anon_sym_GT_EQ] = ACTIONS(427), + [anon_sym_in] = ACTIONS(425), + [anon_sym_BANGin] = ACTIONS(425), + [anon_sym_instanceof] = ACTIONS(425), + [anon_sym_BANGinstanceof] = ACTIONS(427), + [anon_sym_EQ_EQ] = ACTIONS(425), + [anon_sym_BANG_EQ] = ACTIONS(425), + [anon_sym_LT_EQ_GT] = ACTIONS(427), + [anon_sym_EQ_EQ_EQ] = ACTIONS(427), + [anon_sym_BANG_EQ_EQ] = ACTIONS(427), + [anon_sym_EQ_TILDE] = ACTIONS(427), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_PIPE] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(427), + [anon_sym_PIPE_PIPE] = ACTIONS(427), + [anon_sym_QMARK_COLON] = ACTIONS(427), + [anon_sym_STAR_STAR] = ACTIONS(427), + [anon_sym_ATinterface] = ACTIONS(427), + [anon_sym_interface] = ACTIONS(425), + [anon_sym_class] = ACTIONS(425), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(427), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(425), + [anon_sym_do] = ACTIONS(425), + [anon_sym_while] = ACTIONS(425), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(425), + [anon_sym_else] = ACTIONS(425), + [anon_sym_pipeline] = ACTIONS(425), + [anon_sym_return] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(425), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(425), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR_SLASH] = ACTIONS(427), + [anon_sym_switch] = ACTIONS(425), + [anon_sym_QMARK] = ACTIONS(425), + [anon_sym_try] = ACTIONS(425), + [anon_sym_catch] = ACTIONS(425), + [anon_sym_finally] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_char] = ACTIONS(425), + [anon_sym_short] = ACTIONS(425), + [anon_sym_long] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_double] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_static] = ACTIONS(425), + [anon_sym_final] = ACTIONS(425), + [anon_sym_synchronized] = ACTIONS(425), + }, + [346] = { + [sym_comment] = STATE(346), + [sym_groovy_doc] = STATE(346), + [ts_builtin_sym_end] = ACTIONS(419), + [sym_identifier] = ACTIONS(417), + [anon_sym_break] = ACTIONS(417), + [anon_sym_continue] = ACTIONS(417), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_DOT_AMP] = ACTIONS(419), + [anon_sym_DOT_AT] = ACTIONS(419), + [anon_sym_QMARK_DOT] = ACTIONS(419), + [anon_sym_STAR_DOT] = ACTIONS(419), + [anon_sym_STAR] = ACTIONS(417), + [anon_sym_import] = ACTIONS(417), + [anon_sym_as] = ACTIONS(417), + [anon_sym_package] = ACTIONS(417), + [anon_sym_AT] = ACTIONS(417), + [anon_sym_assert] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(417), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(417), + [anon_sym_LT_LT] = ACTIONS(419), + [anon_sym_GT_GT] = ACTIONS(417), + [anon_sym_GT_GT_GT] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(417), + [anon_sym_DOT_DOT_LT] = ACTIONS(419), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(419), + [anon_sym_LT_DOT_DOT] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_LT_EQ] = ACTIONS(417), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_in] = ACTIONS(417), + [anon_sym_BANGin] = ACTIONS(417), + [anon_sym_instanceof] = ACTIONS(417), + [anon_sym_BANGinstanceof] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(417), + [anon_sym_BANG_EQ] = ACTIONS(417), + [anon_sym_LT_EQ_GT] = ACTIONS(419), + [anon_sym_EQ_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ_EQ] = ACTIONS(419), + [anon_sym_EQ_TILDE] = ACTIONS(419), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(419), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_CARET] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_QMARK_COLON] = ACTIONS(419), + [anon_sym_STAR_STAR] = ACTIONS(419), + [anon_sym_ATinterface] = ACTIONS(419), + [anon_sym_interface] = ACTIONS(417), + [anon_sym_class] = ACTIONS(417), + [anon_sym_COMMA] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(419), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(417), + [anon_sym_do] = ACTIONS(417), + [anon_sym_while] = ACTIONS(417), + [anon_sym_for] = ACTIONS(417), + [anon_sym_if] = ACTIONS(417), + [anon_sym_else] = ACTIONS(417), + [anon_sym_pipeline] = ACTIONS(417), + [anon_sym_return] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(419), + [anon_sym_DQUOTE] = ACTIONS(417), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(419), + [anon_sym_DOLLAR_SLASH] = ACTIONS(419), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(417), + [anon_sym_try] = ACTIONS(417), + [anon_sym_catch] = ACTIONS(417), + [anon_sym_finally] = ACTIONS(417), + [anon_sym_int] = ACTIONS(417), + [anon_sym_boolean] = ACTIONS(417), + [anon_sym_char] = ACTIONS(417), + [anon_sym_short] = ACTIONS(417), + [anon_sym_long] = ACTIONS(417), + [anon_sym_float] = ACTIONS(417), + [anon_sym_double] = ACTIONS(417), + [anon_sym_void] = ACTIONS(417), + [anon_sym_public] = ACTIONS(417), + [anon_sym_protected] = ACTIONS(417), + [anon_sym_private] = ACTIONS(417), + [anon_sym_static] = ACTIONS(417), + [anon_sym_final] = ACTIONS(417), + [anon_sym_synchronized] = ACTIONS(417), + }, + [347] = { + [sym_comment] = STATE(347), + [sym_groovy_doc] = STATE(347), + [ts_builtin_sym_end] = ACTIONS(399), + [sym_identifier] = ACTIONS(397), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_SEMI] = ACTIONS(399), + [anon_sym_DOT_AMP] = ACTIONS(399), + [anon_sym_DOT_AT] = ACTIONS(399), + [anon_sym_QMARK_DOT] = ACTIONS(399), + [anon_sym_STAR_DOT] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_import] = ACTIONS(397), + [anon_sym_as] = ACTIONS(397), + [anon_sym_package] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(397), + [anon_sym_assert] = ACTIONS(397), + [anon_sym_PLUS_PLUS] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_GT_GT_GT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_LT] = ACTIONS(399), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(399), + [anon_sym_LT_DOT_DOT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_in] = ACTIONS(397), + [anon_sym_BANGin] = ACTIONS(397), + [anon_sym_instanceof] = ACTIONS(397), + [anon_sym_BANGinstanceof] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_LT_EQ_GT] = ACTIONS(399), + [anon_sym_EQ_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ_EQ] = ACTIONS(399), + [anon_sym_EQ_TILDE] = ACTIONS(399), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(399), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_QMARK_COLON] = ACTIONS(399), + [anon_sym_STAR_STAR] = ACTIONS(399), + [anon_sym_ATinterface] = ACTIONS(399), + [anon_sym_interface] = ACTIONS(397), + [anon_sym_class] = ACTIONS(397), + [anon_sym_COMMA] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(399), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(397), + [anon_sym_do] = ACTIONS(397), + [anon_sym_while] = ACTIONS(397), + [anon_sym_for] = ACTIONS(397), + [anon_sym_if] = ACTIONS(397), + [anon_sym_else] = ACTIONS(397), + [anon_sym_pipeline] = ACTIONS(397), + [anon_sym_return] = ACTIONS(397), + [anon_sym_SQUOTE] = ACTIONS(397), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(399), + [anon_sym_DQUOTE] = ACTIONS(397), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(399), + [anon_sym_DOLLAR_SLASH] = ACTIONS(399), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_try] = ACTIONS(397), + [anon_sym_catch] = ACTIONS(397), + [anon_sym_finally] = ACTIONS(397), + [anon_sym_int] = ACTIONS(397), + [anon_sym_boolean] = ACTIONS(397), + [anon_sym_char] = ACTIONS(397), + [anon_sym_short] = ACTIONS(397), + [anon_sym_long] = ACTIONS(397), + [anon_sym_float] = ACTIONS(397), + [anon_sym_double] = ACTIONS(397), + [anon_sym_void] = ACTIONS(397), + [anon_sym_public] = ACTIONS(397), + [anon_sym_protected] = ACTIONS(397), + [anon_sym_private] = ACTIONS(397), + [anon_sym_static] = ACTIONS(397), + [anon_sym_final] = ACTIONS(397), + [anon_sym_synchronized] = ACTIONS(397), + }, + [348] = { + [sym_comment] = STATE(348), + [sym_groovy_doc] = STATE(348), + [ts_builtin_sym_end] = ACTIONS(373), + [sym_identifier] = ACTIONS(371), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(371), + [anon_sym_SEMI] = ACTIONS(373), + [anon_sym_DOT_AMP] = ACTIONS(686), + [anon_sym_DOT_AT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(686), + [anon_sym_STAR_DOT] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_import] = ACTIONS(371), + [anon_sym_as] = ACTIONS(690), + [anon_sym_package] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_PLUS_PLUS] = ACTIONS(373), + [anon_sym_DASH_DASH] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(696), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_GT_GT_GT] = ACTIONS(696), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_in] = ACTIONS(690), + [anon_sym_BANGin] = ACTIONS(690), + [anon_sym_instanceof] = ACTIONS(690), + [anon_sym_BANGinstanceof] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(702), + [anon_sym_BANG_EQ] = ACTIONS(702), + [anon_sym_LT_EQ_GT] = ACTIONS(704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(704), + [anon_sym_EQ_TILDE] = ACTIONS(704), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(704), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(710), + [anon_sym_AMP_AMP] = ACTIONS(712), + [anon_sym_PIPE_PIPE] = ACTIONS(714), + [anon_sym_QMARK_COLON] = ACTIONS(716), + [anon_sym_STAR_STAR] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(373), + [anon_sym_interface] = ACTIONS(371), + [anon_sym_class] = ACTIONS(371), + [anon_sym_COMMA] = ACTIONS(373), + [anon_sym_LBRACE] = ACTIONS(373), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(371), + [anon_sym_do] = ACTIONS(371), + [anon_sym_while] = ACTIONS(371), + [anon_sym_for] = ACTIONS(371), + [anon_sym_if] = ACTIONS(371), + [anon_sym_else] = ACTIONS(371), + [anon_sym_pipeline] = ACTIONS(371), + [anon_sym_return] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_SLASH] = ACTIONS(373), + [anon_sym_switch] = ACTIONS(371), + [anon_sym_QMARK] = ACTIONS(722), + [anon_sym_try] = ACTIONS(371), + [anon_sym_catch] = ACTIONS(371), + [anon_sym_finally] = ACTIONS(371), + [anon_sym_int] = ACTIONS(371), + [anon_sym_boolean] = ACTIONS(371), + [anon_sym_char] = ACTIONS(371), + [anon_sym_short] = ACTIONS(371), + [anon_sym_long] = ACTIONS(371), + [anon_sym_float] = ACTIONS(371), + [anon_sym_double] = ACTIONS(371), + [anon_sym_void] = ACTIONS(371), + [anon_sym_public] = ACTIONS(371), + [anon_sym_protected] = ACTIONS(371), + [anon_sym_private] = ACTIONS(371), + [anon_sym_static] = ACTIONS(371), + [anon_sym_final] = ACTIONS(371), + [anon_sym_synchronized] = ACTIONS(371), + }, + [349] = { + [sym_comment] = STATE(349), + [sym_groovy_doc] = STATE(349), + [sym_identifier] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(511), + [anon_sym_DOT_AMP] = ACTIONS(642), + [anon_sym_DOT_AT] = ACTIONS(642), + [anon_sym_QMARK_DOT] = ACTIONS(642), + [anon_sym_STAR_DOT] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_import] = ACTIONS(509), + [anon_sym_as] = ACTIONS(646), + [anon_sym_package] = ACTIONS(509), + [anon_sym_AT] = ACTIONS(509), + [anon_sym_assert] = ACTIONS(509), + [anon_sym_PLUS_PLUS] = ACTIONS(511), + [anon_sym_DASH_DASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_GT_GT_GT] = ACTIONS(652), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_in] = ACTIONS(646), + [anon_sym_BANGin] = ACTIONS(646), + [anon_sym_instanceof] = ACTIONS(646), + [anon_sym_BANGinstanceof] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(658), + [anon_sym_BANG_EQ] = ACTIONS(658), + [anon_sym_LT_EQ_GT] = ACTIONS(660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(660), + [anon_sym_EQ_TILDE] = ACTIONS(660), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(670), + [anon_sym_QMARK_COLON] = ACTIONS(672), + [anon_sym_STAR_STAR] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(511), + [anon_sym_interface] = ACTIONS(509), + [anon_sym_class] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_RBRACE] = ACTIONS(511), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(509), + [anon_sym_do] = ACTIONS(509), + [anon_sym_while] = ACTIONS(509), + [anon_sym_for] = ACTIONS(509), + [anon_sym_if] = ACTIONS(509), + [anon_sym_else] = ACTIONS(509), + [anon_sym_return] = ACTIONS(509), + [anon_sym_SQUOTE] = ACTIONS(509), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(511), + [anon_sym_DQUOTE] = ACTIONS(509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_SLASH] = ACTIONS(511), + [anon_sym_switch] = ACTIONS(509), + [anon_sym_case] = ACTIONS(509), + [anon_sym_default] = ACTIONS(509), + [anon_sym_QMARK] = ACTIONS(678), + [anon_sym_try] = ACTIONS(509), + [anon_sym_catch] = ACTIONS(509), + [anon_sym_finally] = ACTIONS(509), + [anon_sym_int] = ACTIONS(509), + [anon_sym_boolean] = ACTIONS(509), + [anon_sym_char] = ACTIONS(509), + [anon_sym_short] = ACTIONS(509), + [anon_sym_long] = ACTIONS(509), + [anon_sym_float] = ACTIONS(509), + [anon_sym_double] = ACTIONS(509), + [anon_sym_void] = ACTIONS(509), + [anon_sym_public] = ACTIONS(509), + [anon_sym_protected] = ACTIONS(509), + [anon_sym_private] = ACTIONS(509), + [anon_sym_static] = ACTIONS(509), + [anon_sym_final] = ACTIONS(509), + [anon_sym_synchronized] = ACTIONS(509), + }, + [350] = { + [sym_comment] = STATE(350), + [sym_groovy_doc] = STATE(350), + [ts_builtin_sym_end] = ACTIONS(387), + [sym_identifier] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_DOT_AMP] = ACTIONS(387), + [anon_sym_DOT_AT] = ACTIONS(387), + [anon_sym_QMARK_DOT] = ACTIONS(387), + [anon_sym_STAR_DOT] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(385), + [anon_sym_import] = ACTIONS(385), + [anon_sym_as] = ACTIONS(385), + [anon_sym_package] = ACTIONS(385), + [anon_sym_AT] = ACTIONS(385), + [anon_sym_assert] = ACTIONS(385), + [anon_sym_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_GT_GT_GT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_LT] = ACTIONS(387), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(387), + [anon_sym_LT_DOT_DOT] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_in] = ACTIONS(385), + [anon_sym_BANGin] = ACTIONS(385), + [anon_sym_instanceof] = ACTIONS(385), + [anon_sym_BANGinstanceof] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(385), + [anon_sym_BANG_EQ] = ACTIONS(385), + [anon_sym_LT_EQ_GT] = ACTIONS(387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(387), + [anon_sym_EQ_TILDE] = ACTIONS(387), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_QMARK_COLON] = ACTIONS(387), + [anon_sym_STAR_STAR] = ACTIONS(387), + [anon_sym_ATinterface] = ACTIONS(387), + [anon_sym_interface] = ACTIONS(385), + [anon_sym_class] = ACTIONS(385), + [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(387), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(385), + [anon_sym_do] = ACTIONS(385), + [anon_sym_while] = ACTIONS(385), + [anon_sym_for] = ACTIONS(385), + [anon_sym_if] = ACTIONS(385), + [anon_sym_else] = ACTIONS(385), + [anon_sym_pipeline] = ACTIONS(385), + [anon_sym_return] = ACTIONS(385), + [anon_sym_SQUOTE] = ACTIONS(385), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(387), + [anon_sym_DQUOTE] = ACTIONS(385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_SLASH] = ACTIONS(387), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_try] = ACTIONS(385), + [anon_sym_catch] = ACTIONS(385), + [anon_sym_finally] = ACTIONS(385), + [anon_sym_int] = ACTIONS(385), + [anon_sym_boolean] = ACTIONS(385), + [anon_sym_char] = ACTIONS(385), + [anon_sym_short] = ACTIONS(385), + [anon_sym_long] = ACTIONS(385), + [anon_sym_float] = ACTIONS(385), + [anon_sym_double] = ACTIONS(385), + [anon_sym_void] = ACTIONS(385), + [anon_sym_public] = ACTIONS(385), + [anon_sym_protected] = ACTIONS(385), + [anon_sym_private] = ACTIONS(385), + [anon_sym_static] = ACTIONS(385), + [anon_sym_final] = ACTIONS(385), + [anon_sym_synchronized] = ACTIONS(385), + }, + [351] = { + [sym_comment] = STATE(351), + [sym_groovy_doc] = STATE(351), + [sym_identifier] = ACTIONS(479), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(481), + [anon_sym_DOT_AMP] = ACTIONS(642), + [anon_sym_DOT_AT] = ACTIONS(642), + [anon_sym_QMARK_DOT] = ACTIONS(642), + [anon_sym_STAR_DOT] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_import] = ACTIONS(479), + [anon_sym_as] = ACTIONS(646), + [anon_sym_package] = ACTIONS(479), + [anon_sym_AT] = ACTIONS(479), + [anon_sym_assert] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_GT_GT_GT] = ACTIONS(652), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_in] = ACTIONS(646), + [anon_sym_BANGin] = ACTIONS(646), + [anon_sym_instanceof] = ACTIONS(646), + [anon_sym_BANGinstanceof] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(658), + [anon_sym_BANG_EQ] = ACTIONS(658), + [anon_sym_LT_EQ_GT] = ACTIONS(660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(660), + [anon_sym_EQ_TILDE] = ACTIONS(660), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(670), + [anon_sym_QMARK_COLON] = ACTIONS(672), + [anon_sym_STAR_STAR] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(481), + [anon_sym_interface] = ACTIONS(479), + [anon_sym_class] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(481), + [anon_sym_RBRACE] = ACTIONS(481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(479), + [anon_sym_do] = ACTIONS(479), + [anon_sym_while] = ACTIONS(479), + [anon_sym_for] = ACTIONS(479), + [anon_sym_if] = ACTIONS(479), + [anon_sym_else] = ACTIONS(479), + [anon_sym_return] = ACTIONS(479), + [anon_sym_SQUOTE] = ACTIONS(479), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(481), + [anon_sym_DQUOTE] = ACTIONS(479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(481), + [anon_sym_DOLLAR_SLASH] = ACTIONS(481), + [anon_sym_switch] = ACTIONS(479), + [anon_sym_case] = ACTIONS(479), + [anon_sym_default] = ACTIONS(479), + [anon_sym_QMARK] = ACTIONS(678), + [anon_sym_try] = ACTIONS(479), + [anon_sym_catch] = ACTIONS(479), + [anon_sym_finally] = ACTIONS(479), + [anon_sym_int] = ACTIONS(479), + [anon_sym_boolean] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_short] = ACTIONS(479), + [anon_sym_long] = ACTIONS(479), + [anon_sym_float] = ACTIONS(479), + [anon_sym_double] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_public] = ACTIONS(479), + [anon_sym_protected] = ACTIONS(479), + [anon_sym_private] = ACTIONS(479), + [anon_sym_static] = ACTIONS(479), + [anon_sym_final] = ACTIONS(479), + [anon_sym_synchronized] = ACTIONS(479), + }, + [352] = { + [sym_comment] = STATE(352), + [sym_groovy_doc] = STATE(352), + [ts_builtin_sym_end] = ACTIONS(431), + [sym_identifier] = ACTIONS(429), + [anon_sym_break] = ACTIONS(429), + [anon_sym_continue] = ACTIONS(429), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_DOT_AMP] = ACTIONS(431), + [anon_sym_DOT_AT] = ACTIONS(431), + [anon_sym_QMARK_DOT] = ACTIONS(431), + [anon_sym_STAR_DOT] = ACTIONS(431), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_import] = ACTIONS(429), + [anon_sym_as] = ACTIONS(429), + [anon_sym_package] = ACTIONS(429), + [anon_sym_AT] = ACTIONS(429), + [anon_sym_assert] = ACTIONS(429), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(431), + [anon_sym_GT_GT] = ACTIONS(429), + [anon_sym_GT_GT_GT] = ACTIONS(431), + [anon_sym_DOT_DOT] = ACTIONS(429), + [anon_sym_DOT_DOT_LT] = ACTIONS(431), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(431), + [anon_sym_LT_DOT_DOT] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LT_EQ] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_EQ] = ACTIONS(431), + [anon_sym_in] = ACTIONS(429), + [anon_sym_BANGin] = ACTIONS(429), + [anon_sym_instanceof] = ACTIONS(429), + [anon_sym_BANGinstanceof] = ACTIONS(431), + [anon_sym_EQ_EQ] = ACTIONS(429), + [anon_sym_BANG_EQ] = ACTIONS(429), + [anon_sym_LT_EQ_GT] = ACTIONS(431), + [anon_sym_EQ_EQ_EQ] = ACTIONS(431), + [anon_sym_BANG_EQ_EQ] = ACTIONS(431), + [anon_sym_EQ_TILDE] = ACTIONS(431), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(431), + [anon_sym_PIPE_PIPE] = ACTIONS(431), + [anon_sym_QMARK_COLON] = ACTIONS(431), + [anon_sym_STAR_STAR] = ACTIONS(431), + [anon_sym_ATinterface] = ACTIONS(431), + [anon_sym_interface] = ACTIONS(429), + [anon_sym_class] = ACTIONS(429), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(431), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(429), + [anon_sym_do] = ACTIONS(429), + [anon_sym_while] = ACTIONS(429), + [anon_sym_for] = ACTIONS(429), + [anon_sym_if] = ACTIONS(429), + [anon_sym_else] = ACTIONS(429), + [anon_sym_pipeline] = ACTIONS(429), + [anon_sym_return] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(429), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(429), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(431), + [anon_sym_DOLLAR_SLASH] = ACTIONS(431), + [anon_sym_switch] = ACTIONS(429), + [anon_sym_QMARK] = ACTIONS(429), + [anon_sym_try] = ACTIONS(429), + [anon_sym_catch] = ACTIONS(429), + [anon_sym_finally] = ACTIONS(429), + [anon_sym_int] = ACTIONS(429), + [anon_sym_boolean] = ACTIONS(429), + [anon_sym_char] = ACTIONS(429), + [anon_sym_short] = ACTIONS(429), + [anon_sym_long] = ACTIONS(429), + [anon_sym_float] = ACTIONS(429), + [anon_sym_double] = ACTIONS(429), + [anon_sym_void] = ACTIONS(429), + [anon_sym_public] = ACTIONS(429), + [anon_sym_protected] = ACTIONS(429), + [anon_sym_private] = ACTIONS(429), + [anon_sym_static] = ACTIONS(429), + [anon_sym_final] = ACTIONS(429), + [anon_sym_synchronized] = ACTIONS(429), + }, + [353] = { + [sym_comment] = STATE(353), + [sym_groovy_doc] = STATE(353), + [ts_builtin_sym_end] = ACTIONS(369), + [sym_identifier] = ACTIONS(367), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(369), + [anon_sym_DOT_AMP] = ACTIONS(686), + [anon_sym_DOT_AT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(686), + [anon_sym_STAR_DOT] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_import] = ACTIONS(367), + [anon_sym_as] = ACTIONS(690), + [anon_sym_package] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(367), + [anon_sym_assert] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(696), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_GT_GT_GT] = ACTIONS(696), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_in] = ACTIONS(690), + [anon_sym_BANGin] = ACTIONS(690), + [anon_sym_instanceof] = ACTIONS(690), + [anon_sym_BANGinstanceof] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(702), + [anon_sym_BANG_EQ] = ACTIONS(702), + [anon_sym_LT_EQ_GT] = ACTIONS(704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(704), + [anon_sym_EQ_TILDE] = ACTIONS(704), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(704), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(710), + [anon_sym_AMP_AMP] = ACTIONS(712), + [anon_sym_PIPE_PIPE] = ACTIONS(714), + [anon_sym_QMARK_COLON] = ACTIONS(716), + [anon_sym_STAR_STAR] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(369), + [anon_sym_interface] = ACTIONS(367), + [anon_sym_class] = ACTIONS(367), + [anon_sym_COMMA] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(369), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(367), + [anon_sym_do] = ACTIONS(367), + [anon_sym_while] = ACTIONS(367), + [anon_sym_for] = ACTIONS(367), + [anon_sym_if] = ACTIONS(367), + [anon_sym_else] = ACTIONS(367), + [anon_sym_pipeline] = ACTIONS(367), + [anon_sym_return] = ACTIONS(367), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR_SLASH] = ACTIONS(369), + [anon_sym_switch] = ACTIONS(367), + [anon_sym_QMARK] = ACTIONS(722), + [anon_sym_try] = ACTIONS(367), + [anon_sym_catch] = ACTIONS(367), + [anon_sym_finally] = ACTIONS(367), + [anon_sym_int] = ACTIONS(367), + [anon_sym_boolean] = ACTIONS(367), + [anon_sym_char] = ACTIONS(367), + [anon_sym_short] = ACTIONS(367), + [anon_sym_long] = ACTIONS(367), + [anon_sym_float] = ACTIONS(367), + [anon_sym_double] = ACTIONS(367), + [anon_sym_void] = ACTIONS(367), + [anon_sym_public] = ACTIONS(367), + [anon_sym_protected] = ACTIONS(367), + [anon_sym_private] = ACTIONS(367), + [anon_sym_static] = ACTIONS(367), + [anon_sym_final] = ACTIONS(367), + [anon_sym_synchronized] = ACTIONS(367), + }, + [354] = { + [sym_comment] = STATE(354), + [sym_groovy_doc] = STATE(354), + [ts_builtin_sym_end] = ACTIONS(395), + [sym_identifier] = ACTIONS(393), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_DOT_AMP] = ACTIONS(395), + [anon_sym_DOT_AT] = ACTIONS(395), + [anon_sym_QMARK_DOT] = ACTIONS(395), + [anon_sym_STAR_DOT] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_import] = ACTIONS(393), + [anon_sym_as] = ACTIONS(393), + [anon_sym_package] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(393), + [anon_sym_assert] = ACTIONS(393), + [anon_sym_PLUS_PLUS] = ACTIONS(395), + [anon_sym_DASH_DASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_GT_GT_GT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_LT] = ACTIONS(395), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(395), + [anon_sym_LT_DOT_DOT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(395), + [anon_sym_in] = ACTIONS(393), + [anon_sym_BANGin] = ACTIONS(393), + [anon_sym_instanceof] = ACTIONS(393), + [anon_sym_BANGinstanceof] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_LT_EQ_GT] = ACTIONS(395), + [anon_sym_EQ_EQ_EQ] = ACTIONS(395), + [anon_sym_BANG_EQ_EQ] = ACTIONS(395), + [anon_sym_EQ_TILDE] = ACTIONS(395), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_AMP_AMP] = ACTIONS(395), + [anon_sym_PIPE_PIPE] = ACTIONS(395), + [anon_sym_QMARK_COLON] = ACTIONS(395), + [anon_sym_STAR_STAR] = ACTIONS(395), + [anon_sym_ATinterface] = ACTIONS(395), + [anon_sym_interface] = ACTIONS(393), + [anon_sym_class] = ACTIONS(393), + [anon_sym_COMMA] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(393), + [anon_sym_do] = ACTIONS(393), + [anon_sym_while] = ACTIONS(393), + [anon_sym_for] = ACTIONS(393), + [anon_sym_if] = ACTIONS(393), + [anon_sym_else] = ACTIONS(393), + [anon_sym_pipeline] = ACTIONS(393), + [anon_sym_return] = ACTIONS(393), + [anon_sym_SQUOTE] = ACTIONS(393), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(395), + [anon_sym_DQUOTE] = ACTIONS(393), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(395), + [anon_sym_DOLLAR_SLASH] = ACTIONS(395), + [anon_sym_switch] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_try] = ACTIONS(393), + [anon_sym_catch] = ACTIONS(393), + [anon_sym_finally] = ACTIONS(393), + [anon_sym_int] = ACTIONS(393), + [anon_sym_boolean] = ACTIONS(393), + [anon_sym_char] = ACTIONS(393), + [anon_sym_short] = ACTIONS(393), + [anon_sym_long] = ACTIONS(393), + [anon_sym_float] = ACTIONS(393), + [anon_sym_double] = ACTIONS(393), + [anon_sym_void] = ACTIONS(393), + [anon_sym_public] = ACTIONS(393), + [anon_sym_protected] = ACTIONS(393), + [anon_sym_private] = ACTIONS(393), + [anon_sym_static] = ACTIONS(393), + [anon_sym_final] = ACTIONS(393), + [anon_sym_synchronized] = ACTIONS(393), + }, + [355] = { + [sym_comment] = STATE(355), + [sym_groovy_doc] = STATE(355), + [sym_identifier] = ACTIONS(513), + [anon_sym_break] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(515), + [anon_sym_DOT_AMP] = ACTIONS(642), + [anon_sym_DOT_AT] = ACTIONS(642), + [anon_sym_QMARK_DOT] = ACTIONS(642), + [anon_sym_STAR_DOT] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_import] = ACTIONS(513), + [anon_sym_as] = ACTIONS(646), + [anon_sym_package] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(513), + [anon_sym_assert] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_GT_GT_GT] = ACTIONS(652), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_in] = ACTIONS(646), + [anon_sym_BANGin] = ACTIONS(646), + [anon_sym_instanceof] = ACTIONS(646), + [anon_sym_BANGinstanceof] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(658), + [anon_sym_BANG_EQ] = ACTIONS(658), + [anon_sym_LT_EQ_GT] = ACTIONS(660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(660), + [anon_sym_EQ_TILDE] = ACTIONS(660), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(670), + [anon_sym_QMARK_COLON] = ACTIONS(672), + [anon_sym_STAR_STAR] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(515), + [anon_sym_interface] = ACTIONS(513), + [anon_sym_class] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_RBRACE] = ACTIONS(515), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(513), + [anon_sym_do] = ACTIONS(513), + [anon_sym_while] = ACTIONS(513), + [anon_sym_for] = ACTIONS(513), + [anon_sym_if] = ACTIONS(513), + [anon_sym_else] = ACTIONS(513), + [anon_sym_return] = ACTIONS(513), + [anon_sym_SQUOTE] = ACTIONS(513), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(513), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_SLASH] = ACTIONS(515), + [anon_sym_switch] = ACTIONS(513), + [anon_sym_case] = ACTIONS(513), + [anon_sym_default] = ACTIONS(513), + [anon_sym_QMARK] = ACTIONS(678), + [anon_sym_try] = ACTIONS(513), + [anon_sym_catch] = ACTIONS(513), + [anon_sym_finally] = ACTIONS(513), + [anon_sym_int] = ACTIONS(513), + [anon_sym_boolean] = ACTIONS(513), + [anon_sym_char] = ACTIONS(513), + [anon_sym_short] = ACTIONS(513), + [anon_sym_long] = ACTIONS(513), + [anon_sym_float] = ACTIONS(513), + [anon_sym_double] = ACTIONS(513), + [anon_sym_void] = ACTIONS(513), + [anon_sym_public] = ACTIONS(513), + [anon_sym_protected] = ACTIONS(513), + [anon_sym_private] = ACTIONS(513), + [anon_sym_static] = ACTIONS(513), + [anon_sym_final] = ACTIONS(513), + [anon_sym_synchronized] = ACTIONS(513), + }, + [356] = { + [sym_comment] = STATE(356), + [sym_groovy_doc] = STATE(356), + [sym_identifier] = ACTIONS(99), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_DOT_AMP] = ACTIONS(93), + [anon_sym_DOT_AT] = ACTIONS(93), + [anon_sym_QMARK_DOT] = ACTIONS(93), + [anon_sym_STAR_DOT] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_import] = ACTIONS(99), + [anon_sym_as] = ACTIONS(99), + [anon_sym_package] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(93), + [anon_sym_SLASH] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(99), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_LT_LT] = ACTIONS(93), + [anon_sym_GT_GT] = ACTIONS(99), + [anon_sym_GT_GT_GT] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(99), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_in] = ACTIONS(99), + [anon_sym_BANGin] = ACTIONS(99), + [anon_sym_instanceof] = ACTIONS(99), + [anon_sym_BANGinstanceof] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_LT_EQ_GT] = ACTIONS(93), + [anon_sym_EQ_EQ_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ_EQ] = ACTIONS(93), + [anon_sym_EQ_TILDE] = ACTIONS(93), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(99), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(93), + [anon_sym_ATinterface] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(99), + [anon_sym_class] = ACTIONS(99), + [anon_sym_COMMA] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_RBRACE] = ACTIONS(93), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(99), + [anon_sym_do] = ACTIONS(99), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(99), + [anon_sym_if] = ACTIONS(99), + [anon_sym_else] = ACTIONS(99), + [anon_sym_COLON] = ACTIONS(640), + [anon_sym_return] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_SLASH] = ACTIONS(93), + [anon_sym_switch] = ACTIONS(99), + [anon_sym_case] = ACTIONS(99), + [anon_sym_default] = ACTIONS(99), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_int] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_char] = ACTIONS(99), + [anon_sym_short] = ACTIONS(99), + [anon_sym_long] = ACTIONS(99), + [anon_sym_float] = ACTIONS(99), + [anon_sym_double] = ACTIONS(99), + [anon_sym_void] = ACTIONS(99), + [anon_sym_public] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_static] = ACTIONS(99), + [anon_sym_final] = ACTIONS(99), + [anon_sym_synchronized] = ACTIONS(99), + }, + [357] = { + [sym_comment] = STATE(357), + [sym_groovy_doc] = STATE(357), + [ts_builtin_sym_end] = ACTIONS(365), + [sym_identifier] = ACTIONS(363), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(365), + [anon_sym_DOT_AMP] = ACTIONS(365), + [anon_sym_DOT_AT] = ACTIONS(365), + [anon_sym_QMARK_DOT] = ACTIONS(365), + [anon_sym_STAR_DOT] = ACTIONS(365), + [anon_sym_STAR] = ACTIONS(363), + [anon_sym_import] = ACTIONS(363), + [anon_sym_as] = ACTIONS(363), + [anon_sym_package] = ACTIONS(363), + [anon_sym_AT] = ACTIONS(363), + [anon_sym_assert] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(365), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(363), + [anon_sym_DASH] = ACTIONS(363), + [anon_sym_LT_LT] = ACTIONS(365), + [anon_sym_GT_GT] = ACTIONS(363), + [anon_sym_GT_GT_GT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(363), + [anon_sym_DOT_DOT_LT] = ACTIONS(365), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(365), + [anon_sym_LT_DOT_DOT] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(363), + [anon_sym_LT_EQ] = ACTIONS(363), + [anon_sym_GT] = ACTIONS(363), + [anon_sym_GT_EQ] = ACTIONS(365), + [anon_sym_in] = ACTIONS(363), + [anon_sym_BANGin] = ACTIONS(363), + [anon_sym_instanceof] = ACTIONS(363), + [anon_sym_BANGinstanceof] = ACTIONS(365), + [anon_sym_EQ_EQ] = ACTIONS(363), + [anon_sym_BANG_EQ] = ACTIONS(363), + [anon_sym_LT_EQ_GT] = ACTIONS(365), + [anon_sym_EQ_EQ_EQ] = ACTIONS(365), + [anon_sym_BANG_EQ_EQ] = ACTIONS(365), + [anon_sym_EQ_TILDE] = ACTIONS(365), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(365), + [anon_sym_AMP] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(363), + [anon_sym_AMP_AMP] = ACTIONS(365), + [anon_sym_PIPE_PIPE] = ACTIONS(365), + [anon_sym_QMARK_COLON] = ACTIONS(365), + [anon_sym_STAR_STAR] = ACTIONS(365), + [anon_sym_ATinterface] = ACTIONS(365), + [anon_sym_interface] = ACTIONS(363), + [anon_sym_class] = ACTIONS(363), + [anon_sym_COMMA] = ACTIONS(365), + [anon_sym_LBRACE] = ACTIONS(365), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(363), + [anon_sym_do] = ACTIONS(363), + [anon_sym_while] = ACTIONS(363), + [anon_sym_for] = ACTIONS(363), + [anon_sym_if] = ACTIONS(363), + [anon_sym_else] = ACTIONS(363), + [anon_sym_pipeline] = ACTIONS(363), + [anon_sym_return] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(363), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(365), + [anon_sym_DQUOTE] = ACTIONS(363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(365), + [anon_sym_DOLLAR_SLASH] = ACTIONS(365), + [anon_sym_switch] = ACTIONS(363), + [anon_sym_QMARK] = ACTIONS(363), + [anon_sym_try] = ACTIONS(363), + [anon_sym_catch] = ACTIONS(363), + [anon_sym_finally] = ACTIONS(363), + [anon_sym_int] = ACTIONS(363), + [anon_sym_boolean] = ACTIONS(363), + [anon_sym_char] = ACTIONS(363), + [anon_sym_short] = ACTIONS(363), + [anon_sym_long] = ACTIONS(363), + [anon_sym_float] = ACTIONS(363), + [anon_sym_double] = ACTIONS(363), + [anon_sym_void] = ACTIONS(363), + [anon_sym_public] = ACTIONS(363), + [anon_sym_protected] = ACTIONS(363), + [anon_sym_private] = ACTIONS(363), + [anon_sym_static] = ACTIONS(363), + [anon_sym_final] = ACTIONS(363), + [anon_sym_synchronized] = ACTIONS(363), + }, + [358] = { + [sym_comment] = STATE(358), + [sym_groovy_doc] = STATE(358), + [sym_identifier] = ACTIONS(517), + [anon_sym_break] = ACTIONS(517), + [anon_sym_continue] = ACTIONS(517), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_DOT_AMP] = ACTIONS(642), + [anon_sym_DOT_AT] = ACTIONS(642), + [anon_sym_QMARK_DOT] = ACTIONS(642), + [anon_sym_STAR_DOT] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_import] = ACTIONS(517), + [anon_sym_as] = ACTIONS(646), + [anon_sym_package] = ACTIONS(517), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_assert] = ACTIONS(517), + [anon_sym_PLUS_PLUS] = ACTIONS(519), + [anon_sym_DASH_DASH] = ACTIONS(519), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_GT_GT_GT] = ACTIONS(652), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(652), + [anon_sym_LT_DOT_DOT] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_in] = ACTIONS(646), + [anon_sym_BANGin] = ACTIONS(646), + [anon_sym_instanceof] = ACTIONS(646), + [anon_sym_BANGinstanceof] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(658), + [anon_sym_BANG_EQ] = ACTIONS(658), + [anon_sym_LT_EQ_GT] = ACTIONS(660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(660), + [anon_sym_EQ_TILDE] = ACTIONS(660), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(670), + [anon_sym_QMARK_COLON] = ACTIONS(672), + [anon_sym_STAR_STAR] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(519), + [anon_sym_interface] = ACTIONS(517), + [anon_sym_class] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_RBRACE] = ACTIONS(519), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(517), + [anon_sym_do] = ACTIONS(517), + [anon_sym_while] = ACTIONS(517), + [anon_sym_for] = ACTIONS(517), + [anon_sym_if] = ACTIONS(517), + [anon_sym_else] = ACTIONS(517), + [anon_sym_return] = ACTIONS(517), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE] = ACTIONS(517), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(519), + [anon_sym_DOLLAR_SLASH] = ACTIONS(519), + [anon_sym_switch] = ACTIONS(517), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(517), + [anon_sym_QMARK] = ACTIONS(678), + [anon_sym_try] = ACTIONS(517), + [anon_sym_catch] = ACTIONS(517), + [anon_sym_finally] = ACTIONS(517), + [anon_sym_int] = ACTIONS(517), + [anon_sym_boolean] = ACTIONS(517), + [anon_sym_char] = ACTIONS(517), + [anon_sym_short] = ACTIONS(517), + [anon_sym_long] = ACTIONS(517), + [anon_sym_float] = ACTIONS(517), + [anon_sym_double] = ACTIONS(517), + [anon_sym_void] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_protected] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_synchronized] = ACTIONS(517), + }, + [359] = { + [sym_comment] = STATE(359), + [sym_groovy_doc] = STATE(359), + [sym_identifier] = ACTIONS(409), + [anon_sym_break] = ACTIONS(409), + [anon_sym_continue] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(411), + [anon_sym_DOT_AMP] = ACTIONS(411), + [anon_sym_DOT_AT] = ACTIONS(411), + [anon_sym_QMARK_DOT] = ACTIONS(411), + [anon_sym_STAR_DOT] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(409), + [anon_sym_import] = ACTIONS(409), + [anon_sym_as] = ACTIONS(409), + [anon_sym_package] = ACTIONS(409), + [anon_sym_AT] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_PLUS_PLUS] = ACTIONS(411), + [anon_sym_DASH_DASH] = ACTIONS(411), + [anon_sym_PERCENT] = ACTIONS(411), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_LT_LT] = ACTIONS(411), + [anon_sym_GT_GT] = ACTIONS(409), + [anon_sym_GT_GT_GT] = ACTIONS(411), + [anon_sym_DOT_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT_LT] = ACTIONS(411), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(411), + [anon_sym_LT_DOT_DOT] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_LT_EQ] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_GT_EQ] = ACTIONS(411), + [anon_sym_in] = ACTIONS(409), + [anon_sym_BANGin] = ACTIONS(409), + [anon_sym_instanceof] = ACTIONS(409), + [anon_sym_BANGinstanceof] = ACTIONS(411), + [anon_sym_EQ_EQ] = ACTIONS(409), + [anon_sym_BANG_EQ] = ACTIONS(409), + [anon_sym_LT_EQ_GT] = ACTIONS(411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(411), + [anon_sym_EQ_TILDE] = ACTIONS(411), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_CARET] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(411), + [anon_sym_PIPE_PIPE] = ACTIONS(411), + [anon_sym_QMARK_COLON] = ACTIONS(411), + [anon_sym_STAR_STAR] = ACTIONS(411), + [anon_sym_ATinterface] = ACTIONS(411), + [anon_sym_interface] = ACTIONS(409), + [anon_sym_class] = ACTIONS(409), + [anon_sym_COMMA] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_RBRACE] = ACTIONS(411), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(409), + [anon_sym_do] = ACTIONS(409), + [anon_sym_while] = ACTIONS(409), + [anon_sym_for] = ACTIONS(409), + [anon_sym_if] = ACTIONS(409), + [anon_sym_else] = ACTIONS(409), + [anon_sym_return] = ACTIONS(409), + [anon_sym_SQUOTE] = ACTIONS(409), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(411), + [anon_sym_DOLLAR_SLASH] = ACTIONS(411), + [anon_sym_switch] = ACTIONS(409), + [anon_sym_case] = ACTIONS(409), + [anon_sym_default] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(409), + [anon_sym_try] = ACTIONS(409), + [anon_sym_int] = ACTIONS(409), + [anon_sym_boolean] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_short] = ACTIONS(409), + [anon_sym_long] = ACTIONS(409), + [anon_sym_float] = ACTIONS(409), + [anon_sym_double] = ACTIONS(409), + [anon_sym_void] = ACTIONS(409), + [anon_sym_public] = ACTIONS(409), + [anon_sym_protected] = ACTIONS(409), + [anon_sym_private] = ACTIONS(409), + [anon_sym_static] = ACTIONS(409), + [anon_sym_final] = ACTIONS(409), + [anon_sym_synchronized] = ACTIONS(409), + }, + [360] = { + [sym_comment] = STATE(360), + [sym_groovy_doc] = STATE(360), + [ts_builtin_sym_end] = ACTIONS(431), + [sym_identifier] = ACTIONS(429), + [anon_sym_break] = ACTIONS(429), + [anon_sym_continue] = ACTIONS(429), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_DOT_AMP] = ACTIONS(431), + [anon_sym_DOT_AT] = ACTIONS(431), + [anon_sym_QMARK_DOT] = ACTIONS(431), + [anon_sym_STAR_DOT] = ACTIONS(431), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_import] = ACTIONS(429), + [anon_sym_as] = ACTIONS(429), + [anon_sym_package] = ACTIONS(429), + [anon_sym_AT] = ACTIONS(429), + [anon_sym_assert] = ACTIONS(429), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(431), + [anon_sym_GT_GT] = ACTIONS(429), + [anon_sym_GT_GT_GT] = ACTIONS(431), + [anon_sym_DOT_DOT] = ACTIONS(429), + [anon_sym_DOT_DOT_LT] = ACTIONS(431), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(431), + [anon_sym_LT_DOT_DOT] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LT_EQ] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_EQ] = ACTIONS(431), + [anon_sym_in] = ACTIONS(429), + [anon_sym_BANGin] = ACTIONS(429), + [anon_sym_instanceof] = ACTIONS(429), + [anon_sym_BANGinstanceof] = ACTIONS(431), + [anon_sym_EQ_EQ] = ACTIONS(429), + [anon_sym_BANG_EQ] = ACTIONS(429), + [anon_sym_LT_EQ_GT] = ACTIONS(431), + [anon_sym_EQ_EQ_EQ] = ACTIONS(431), + [anon_sym_BANG_EQ_EQ] = ACTIONS(431), + [anon_sym_EQ_TILDE] = ACTIONS(431), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(431), + [anon_sym_PIPE_PIPE] = ACTIONS(431), + [anon_sym_QMARK_COLON] = ACTIONS(431), + [anon_sym_STAR_STAR] = ACTIONS(431), + [anon_sym_ATinterface] = ACTIONS(431), + [anon_sym_interface] = ACTIONS(429), + [anon_sym_class] = ACTIONS(429), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(431), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(429), + [anon_sym_RPAREN] = ACTIONS(431), + [anon_sym_do] = ACTIONS(429), + [anon_sym_while] = ACTIONS(429), + [anon_sym_for] = ACTIONS(429), + [anon_sym_if] = ACTIONS(429), + [anon_sym_else] = ACTIONS(429), + [anon_sym_pipeline] = ACTIONS(429), + [anon_sym_return] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(429), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(429), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(431), + [anon_sym_DOLLAR_SLASH] = ACTIONS(431), + [anon_sym_switch] = ACTIONS(429), + [anon_sym_QMARK] = ACTIONS(429), + [anon_sym_try] = ACTIONS(429), + [anon_sym_int] = ACTIONS(429), + [anon_sym_boolean] = ACTIONS(429), + [anon_sym_char] = ACTIONS(429), + [anon_sym_short] = ACTIONS(429), + [anon_sym_long] = ACTIONS(429), + [anon_sym_float] = ACTIONS(429), + [anon_sym_double] = ACTIONS(429), + [anon_sym_void] = ACTIONS(429), + [anon_sym_public] = ACTIONS(429), + [anon_sym_protected] = ACTIONS(429), + [anon_sym_private] = ACTIONS(429), + [anon_sym_static] = ACTIONS(429), + [anon_sym_final] = ACTIONS(429), + [anon_sym_synchronized] = ACTIONS(429), + }, + [361] = { + [sym_comment] = STATE(361), + [sym_groovy_doc] = STATE(361), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(726), + [anon_sym_DOT_AT] = ACTIONS(726), + [anon_sym_QMARK_DOT] = ACTIONS(726), + [anon_sym_STAR_DOT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(730), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(732), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_LT_LT] = ACTIONS(736), + [anon_sym_GT_GT] = ACTIONS(738), + [anon_sym_GT_GT_GT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(738), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_in] = ACTIONS(730), + [anon_sym_BANGin] = ACTIONS(730), + [anon_sym_instanceof] = ACTIONS(730), + [anon_sym_BANGinstanceof] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_LT_EQ_GT] = ACTIONS(744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(744), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_case] = ACTIONS(351), + [anon_sym_default] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [362] = { + [sym_comment] = STATE(362), + [sym_groovy_doc] = STATE(362), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(726), + [anon_sym_DOT_AT] = ACTIONS(726), + [anon_sym_QMARK_DOT] = ACTIONS(726), + [anon_sym_STAR_DOT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(730), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(732), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_LT_LT] = ACTIONS(736), + [anon_sym_GT_GT] = ACTIONS(738), + [anon_sym_GT_GT_GT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(738), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_in] = ACTIONS(730), + [anon_sym_BANGin] = ACTIONS(730), + [anon_sym_instanceof] = ACTIONS(730), + [anon_sym_BANGinstanceof] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_LT_EQ_GT] = ACTIONS(744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(744), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(752), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_case] = ACTIONS(351), + [anon_sym_default] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [363] = { + [sym_comment] = STATE(363), + [sym_groovy_doc] = STATE(363), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(726), + [anon_sym_DOT_AT] = ACTIONS(726), + [anon_sym_QMARK_DOT] = ACTIONS(726), + [anon_sym_STAR_DOT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(730), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(732), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_LT_LT] = ACTIONS(736), + [anon_sym_GT_GT] = ACTIONS(738), + [anon_sym_GT_GT_GT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(738), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_in] = ACTIONS(730), + [anon_sym_BANGin] = ACTIONS(730), + [anon_sym_instanceof] = ACTIONS(730), + [anon_sym_BANGinstanceof] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_LT_EQ_GT] = ACTIONS(744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(744), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(752), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_case] = ACTIONS(351), + [anon_sym_default] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [364] = { + [sym_comment] = STATE(364), + [sym_groovy_doc] = STATE(364), + [sym_identifier] = ACTIONS(99), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_DOT_AMP] = ACTIONS(93), + [anon_sym_DOT_AT] = ACTIONS(93), + [anon_sym_QMARK_DOT] = ACTIONS(93), + [anon_sym_STAR_DOT] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_import] = ACTIONS(99), + [anon_sym_as] = ACTIONS(99), + [anon_sym_package] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(93), + [anon_sym_SLASH] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(99), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_LT_LT] = ACTIONS(93), + [anon_sym_GT_GT] = ACTIONS(99), + [anon_sym_GT_GT_GT] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(99), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_in] = ACTIONS(99), + [anon_sym_BANGin] = ACTIONS(99), + [anon_sym_instanceof] = ACTIONS(99), + [anon_sym_BANGinstanceof] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_LT_EQ_GT] = ACTIONS(93), + [anon_sym_EQ_EQ_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ_EQ] = ACTIONS(93), + [anon_sym_EQ_TILDE] = ACTIONS(93), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(99), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(93), + [anon_sym_ATinterface] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(99), + [anon_sym_class] = ACTIONS(99), + [anon_sym_COMMA] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_RBRACE] = ACTIONS(93), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(99), + [anon_sym_do] = ACTIONS(99), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(99), + [anon_sym_if] = ACTIONS(99), + [anon_sym_else] = ACTIONS(99), + [anon_sym_return] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_SLASH] = ACTIONS(93), + [anon_sym_switch] = ACTIONS(99), + [anon_sym_case] = ACTIONS(99), + [anon_sym_default] = ACTIONS(99), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_int] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_char] = ACTIONS(99), + [anon_sym_short] = ACTIONS(99), + [anon_sym_long] = ACTIONS(99), + [anon_sym_float] = ACTIONS(99), + [anon_sym_double] = ACTIONS(99), + [anon_sym_void] = ACTIONS(99), + [anon_sym_public] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_static] = ACTIONS(99), + [anon_sym_final] = ACTIONS(99), + [anon_sym_synchronized] = ACTIONS(99), + }, + [365] = { + [sym_comment] = STATE(365), + [sym_groovy_doc] = STATE(365), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(726), + [anon_sym_DOT_AT] = ACTIONS(726), + [anon_sym_QMARK_DOT] = ACTIONS(726), + [anon_sym_STAR_DOT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(353), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LT_LT] = ACTIONS(353), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_GT_GT_GT] = ACTIONS(353), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_case] = ACTIONS(351), + [anon_sym_default] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [366] = { + [sym_comment] = STATE(366), + [sym_groovy_doc] = STATE(366), + [ts_builtin_sym_end] = ACTIONS(497), + [sym_identifier] = ACTIONS(495), + [anon_sym_break] = ACTIONS(495), + [anon_sym_continue] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(497), + [anon_sym_DOT_AMP] = ACTIONS(686), + [anon_sym_DOT_AT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(686), + [anon_sym_STAR_DOT] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_import] = ACTIONS(495), + [anon_sym_as] = ACTIONS(690), + [anon_sym_package] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(495), + [anon_sym_assert] = ACTIONS(495), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(696), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_GT_GT_GT] = ACTIONS(696), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_in] = ACTIONS(690), + [anon_sym_BANGin] = ACTIONS(690), + [anon_sym_instanceof] = ACTIONS(690), + [anon_sym_BANGinstanceof] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(702), + [anon_sym_BANG_EQ] = ACTIONS(702), + [anon_sym_LT_EQ_GT] = ACTIONS(704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(704), + [anon_sym_EQ_TILDE] = ACTIONS(704), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(704), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(710), + [anon_sym_AMP_AMP] = ACTIONS(712), + [anon_sym_PIPE_PIPE] = ACTIONS(714), + [anon_sym_QMARK_COLON] = ACTIONS(716), + [anon_sym_STAR_STAR] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(497), + [anon_sym_interface] = ACTIONS(495), + [anon_sym_class] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(497), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(495), + [anon_sym_do] = ACTIONS(495), + [anon_sym_while] = ACTIONS(495), + [anon_sym_for] = ACTIONS(495), + [anon_sym_if] = ACTIONS(495), + [anon_sym_else] = ACTIONS(495), + [anon_sym_pipeline] = ACTIONS(495), + [anon_sym_return] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(495), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(495), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(497), + [anon_sym_DOLLAR_SLASH] = ACTIONS(497), + [anon_sym_switch] = ACTIONS(495), + [anon_sym_QMARK] = ACTIONS(722), + [anon_sym_try] = ACTIONS(495), + [anon_sym_catch] = ACTIONS(495), + [anon_sym_finally] = ACTIONS(495), + [anon_sym_int] = ACTIONS(495), + [anon_sym_boolean] = ACTIONS(495), + [anon_sym_char] = ACTIONS(495), + [anon_sym_short] = ACTIONS(495), + [anon_sym_long] = ACTIONS(495), + [anon_sym_float] = ACTIONS(495), + [anon_sym_double] = ACTIONS(495), + [anon_sym_void] = ACTIONS(495), + [anon_sym_public] = ACTIONS(495), + [anon_sym_protected] = ACTIONS(495), + [anon_sym_private] = ACTIONS(495), + [anon_sym_static] = ACTIONS(495), + [anon_sym_final] = ACTIONS(495), + [anon_sym_synchronized] = ACTIONS(495), + }, + [367] = { + [sym_comment] = STATE(367), + [sym_groovy_doc] = STATE(367), + [sym_identifier] = ACTIONS(371), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(371), + [anon_sym_SEMI] = ACTIONS(373), + [anon_sym_DOT_AMP] = ACTIONS(726), + [anon_sym_DOT_AT] = ACTIONS(726), + [anon_sym_QMARK_DOT] = ACTIONS(726), + [anon_sym_STAR_DOT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_import] = ACTIONS(371), + [anon_sym_as] = ACTIONS(730), + [anon_sym_package] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_PLUS_PLUS] = ACTIONS(373), + [anon_sym_DASH_DASH] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(732), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_LT_LT] = ACTIONS(736), + [anon_sym_GT_GT] = ACTIONS(738), + [anon_sym_GT_GT_GT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(738), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_in] = ACTIONS(730), + [anon_sym_BANGin] = ACTIONS(730), + [anon_sym_instanceof] = ACTIONS(730), + [anon_sym_BANGinstanceof] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_LT_EQ_GT] = ACTIONS(744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(744), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(752), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [anon_sym_QMARK_COLON] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(373), + [anon_sym_interface] = ACTIONS(371), + [anon_sym_class] = ACTIONS(371), + [anon_sym_COMMA] = ACTIONS(373), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_RBRACE] = ACTIONS(373), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(371), + [anon_sym_do] = ACTIONS(371), + [anon_sym_while] = ACTIONS(371), + [anon_sym_for] = ACTIONS(371), + [anon_sym_if] = ACTIONS(371), + [anon_sym_else] = ACTIONS(371), + [anon_sym_return] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_SLASH] = ACTIONS(373), + [anon_sym_switch] = ACTIONS(371), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(371), + [anon_sym_QMARK] = ACTIONS(762), + [anon_sym_try] = ACTIONS(371), + [anon_sym_int] = ACTIONS(371), + [anon_sym_boolean] = ACTIONS(371), + [anon_sym_char] = ACTIONS(371), + [anon_sym_short] = ACTIONS(371), + [anon_sym_long] = ACTIONS(371), + [anon_sym_float] = ACTIONS(371), + [anon_sym_double] = ACTIONS(371), + [anon_sym_void] = ACTIONS(371), + [anon_sym_public] = ACTIONS(371), + [anon_sym_protected] = ACTIONS(371), + [anon_sym_private] = ACTIONS(371), + [anon_sym_static] = ACTIONS(371), + [anon_sym_final] = ACTIONS(371), + [anon_sym_synchronized] = ACTIONS(371), + }, + [368] = { + [sym_comment] = STATE(368), + [sym_groovy_doc] = STATE(368), + [sym_identifier] = ACTIONS(375), + [anon_sym_break] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(377), + [anon_sym_DOT_AMP] = ACTIONS(726), + [anon_sym_DOT_AT] = ACTIONS(726), + [anon_sym_QMARK_DOT] = ACTIONS(726), + [anon_sym_STAR_DOT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_import] = ACTIONS(375), + [anon_sym_as] = ACTIONS(730), + [anon_sym_package] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(375), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_PLUS_PLUS] = ACTIONS(377), + [anon_sym_DASH_DASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(732), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_LT_LT] = ACTIONS(736), + [anon_sym_GT_GT] = ACTIONS(738), + [anon_sym_GT_GT_GT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(738), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_in] = ACTIONS(730), + [anon_sym_BANGin] = ACTIONS(730), + [anon_sym_instanceof] = ACTIONS(730), + [anon_sym_BANGinstanceof] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_LT_EQ_GT] = ACTIONS(744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(744), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(752), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [anon_sym_QMARK_COLON] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(377), + [anon_sym_interface] = ACTIONS(375), + [anon_sym_class] = ACTIONS(375), + [anon_sym_COMMA] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_RBRACE] = ACTIONS(377), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(375), + [anon_sym_do] = ACTIONS(375), + [anon_sym_while] = ACTIONS(375), + [anon_sym_for] = ACTIONS(375), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(375), + [anon_sym_return] = ACTIONS(375), + [anon_sym_SQUOTE] = ACTIONS(375), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_DOLLAR_SLASH] = ACTIONS(377), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_case] = ACTIONS(375), + [anon_sym_default] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(762), + [anon_sym_try] = ACTIONS(375), + [anon_sym_int] = ACTIONS(375), + [anon_sym_boolean] = ACTIONS(375), + [anon_sym_char] = ACTIONS(375), + [anon_sym_short] = ACTIONS(375), + [anon_sym_long] = ACTIONS(375), + [anon_sym_float] = ACTIONS(375), + [anon_sym_double] = ACTIONS(375), + [anon_sym_void] = ACTIONS(375), + [anon_sym_public] = ACTIONS(375), + [anon_sym_protected] = ACTIONS(375), + [anon_sym_private] = ACTIONS(375), + [anon_sym_static] = ACTIONS(375), + [anon_sym_final] = ACTIONS(375), + [anon_sym_synchronized] = ACTIONS(375), + }, + [369] = { + [sym_comment] = STATE(369), + [sym_groovy_doc] = STATE(369), + [sym_identifier] = ACTIONS(393), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_DOT_AMP] = ACTIONS(395), + [anon_sym_DOT_AT] = ACTIONS(395), + [anon_sym_QMARK_DOT] = ACTIONS(395), + [anon_sym_STAR_DOT] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_import] = ACTIONS(393), + [anon_sym_as] = ACTIONS(393), + [anon_sym_package] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(393), + [anon_sym_assert] = ACTIONS(393), + [anon_sym_PLUS_PLUS] = ACTIONS(395), + [anon_sym_DASH_DASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_GT_GT_GT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_LT] = ACTIONS(395), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(395), + [anon_sym_LT_DOT_DOT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(395), + [anon_sym_in] = ACTIONS(393), + [anon_sym_BANGin] = ACTIONS(393), + [anon_sym_instanceof] = ACTIONS(393), + [anon_sym_BANGinstanceof] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_LT_EQ_GT] = ACTIONS(395), + [anon_sym_EQ_EQ_EQ] = ACTIONS(395), + [anon_sym_BANG_EQ_EQ] = ACTIONS(395), + [anon_sym_EQ_TILDE] = ACTIONS(395), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_AMP_AMP] = ACTIONS(395), + [anon_sym_PIPE_PIPE] = ACTIONS(395), + [anon_sym_QMARK_COLON] = ACTIONS(395), + [anon_sym_STAR_STAR] = ACTIONS(395), + [anon_sym_ATinterface] = ACTIONS(395), + [anon_sym_interface] = ACTIONS(393), + [anon_sym_class] = ACTIONS(393), + [anon_sym_COMMA] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(393), + [anon_sym_do] = ACTIONS(393), + [anon_sym_while] = ACTIONS(393), + [anon_sym_for] = ACTIONS(393), + [anon_sym_if] = ACTIONS(393), + [anon_sym_else] = ACTIONS(393), + [anon_sym_return] = ACTIONS(393), + [anon_sym_SQUOTE] = ACTIONS(393), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(395), + [anon_sym_DQUOTE] = ACTIONS(393), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(395), + [anon_sym_DOLLAR_SLASH] = ACTIONS(395), + [anon_sym_switch] = ACTIONS(393), + [anon_sym_case] = ACTIONS(393), + [anon_sym_default] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_try] = ACTIONS(393), + [anon_sym_int] = ACTIONS(393), + [anon_sym_boolean] = ACTIONS(393), + [anon_sym_char] = ACTIONS(393), + [anon_sym_short] = ACTIONS(393), + [anon_sym_long] = ACTIONS(393), + [anon_sym_float] = ACTIONS(393), + [anon_sym_double] = ACTIONS(393), + [anon_sym_void] = ACTIONS(393), + [anon_sym_public] = ACTIONS(393), + [anon_sym_protected] = ACTIONS(393), + [anon_sym_private] = ACTIONS(393), + [anon_sym_static] = ACTIONS(393), + [anon_sym_final] = ACTIONS(393), + [anon_sym_synchronized] = ACTIONS(393), + }, + [370] = { + [sym_comment] = STATE(370), + [sym_groovy_doc] = STATE(370), + [ts_builtin_sym_end] = ACTIONS(365), + [sym_identifier] = ACTIONS(363), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(365), + [anon_sym_DOT_AMP] = ACTIONS(365), + [anon_sym_DOT_AT] = ACTIONS(365), + [anon_sym_QMARK_DOT] = ACTIONS(365), + [anon_sym_STAR_DOT] = ACTIONS(365), + [anon_sym_STAR] = ACTIONS(363), + [anon_sym_import] = ACTIONS(363), + [anon_sym_as] = ACTIONS(363), + [anon_sym_package] = ACTIONS(363), + [anon_sym_AT] = ACTIONS(363), + [anon_sym_assert] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(365), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(363), + [anon_sym_DASH] = ACTIONS(363), + [anon_sym_LT_LT] = ACTIONS(365), + [anon_sym_GT_GT] = ACTIONS(363), + [anon_sym_GT_GT_GT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(363), + [anon_sym_DOT_DOT_LT] = ACTIONS(365), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(365), + [anon_sym_LT_DOT_DOT] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(363), + [anon_sym_LT_EQ] = ACTIONS(363), + [anon_sym_GT] = ACTIONS(363), + [anon_sym_GT_EQ] = ACTIONS(365), + [anon_sym_in] = ACTIONS(363), + [anon_sym_BANGin] = ACTIONS(363), + [anon_sym_instanceof] = ACTIONS(363), + [anon_sym_BANGinstanceof] = ACTIONS(365), + [anon_sym_EQ_EQ] = ACTIONS(363), + [anon_sym_BANG_EQ] = ACTIONS(363), + [anon_sym_LT_EQ_GT] = ACTIONS(365), + [anon_sym_EQ_EQ_EQ] = ACTIONS(365), + [anon_sym_BANG_EQ_EQ] = ACTIONS(365), + [anon_sym_EQ_TILDE] = ACTIONS(365), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(365), + [anon_sym_AMP] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(363), + [anon_sym_AMP_AMP] = ACTIONS(365), + [anon_sym_PIPE_PIPE] = ACTIONS(365), + [anon_sym_QMARK_COLON] = ACTIONS(365), + [anon_sym_STAR_STAR] = ACTIONS(365), + [anon_sym_ATinterface] = ACTIONS(365), + [anon_sym_interface] = ACTIONS(363), + [anon_sym_class] = ACTIONS(363), + [anon_sym_COMMA] = ACTIONS(365), + [anon_sym_LBRACE] = ACTIONS(365), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(363), + [anon_sym_RPAREN] = ACTIONS(365), + [anon_sym_do] = ACTIONS(363), + [anon_sym_while] = ACTIONS(363), + [anon_sym_for] = ACTIONS(363), + [anon_sym_if] = ACTIONS(363), + [anon_sym_else] = ACTIONS(363), + [anon_sym_pipeline] = ACTIONS(363), + [anon_sym_return] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(363), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(365), + [anon_sym_DQUOTE] = ACTIONS(363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(365), + [anon_sym_DOLLAR_SLASH] = ACTIONS(365), + [anon_sym_switch] = ACTIONS(363), + [anon_sym_QMARK] = ACTIONS(363), + [anon_sym_try] = ACTIONS(363), + [anon_sym_int] = ACTIONS(363), + [anon_sym_boolean] = ACTIONS(363), + [anon_sym_char] = ACTIONS(363), + [anon_sym_short] = ACTIONS(363), + [anon_sym_long] = ACTIONS(363), + [anon_sym_float] = ACTIONS(363), + [anon_sym_double] = ACTIONS(363), + [anon_sym_void] = ACTIONS(363), + [anon_sym_public] = ACTIONS(363), + [anon_sym_protected] = ACTIONS(363), + [anon_sym_private] = ACTIONS(363), + [anon_sym_static] = ACTIONS(363), + [anon_sym_final] = ACTIONS(363), + [anon_sym_synchronized] = ACTIONS(363), + }, + [371] = { + [sym_comment] = STATE(371), + [sym_groovy_doc] = STATE(371), + [ts_builtin_sym_end] = ACTIONS(507), + [sym_identifier] = ACTIONS(505), + [anon_sym_break] = ACTIONS(505), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_DOT_AMP] = ACTIONS(686), + [anon_sym_DOT_AT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(686), + [anon_sym_STAR_DOT] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_import] = ACTIONS(505), + [anon_sym_as] = ACTIONS(690), + [anon_sym_package] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(505), + [anon_sym_assert] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(696), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_GT_GT_GT] = ACTIONS(696), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_in] = ACTIONS(690), + [anon_sym_BANGin] = ACTIONS(690), + [anon_sym_instanceof] = ACTIONS(690), + [anon_sym_BANGinstanceof] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(702), + [anon_sym_BANG_EQ] = ACTIONS(702), + [anon_sym_LT_EQ_GT] = ACTIONS(704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(704), + [anon_sym_EQ_TILDE] = ACTIONS(704), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(704), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(710), + [anon_sym_AMP_AMP] = ACTIONS(712), + [anon_sym_PIPE_PIPE] = ACTIONS(714), + [anon_sym_QMARK_COLON] = ACTIONS(716), + [anon_sym_STAR_STAR] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(507), + [anon_sym_interface] = ACTIONS(505), + [anon_sym_class] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(507), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(505), + [anon_sym_do] = ACTIONS(505), + [anon_sym_while] = ACTIONS(505), + [anon_sym_for] = ACTIONS(505), + [anon_sym_if] = ACTIONS(505), + [anon_sym_else] = ACTIONS(505), + [anon_sym_pipeline] = ACTIONS(505), + [anon_sym_return] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(507), + [anon_sym_DOLLAR_SLASH] = ACTIONS(507), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(722), + [anon_sym_try] = ACTIONS(505), + [anon_sym_catch] = ACTIONS(505), + [anon_sym_finally] = ACTIONS(505), + [anon_sym_int] = ACTIONS(505), + [anon_sym_boolean] = ACTIONS(505), + [anon_sym_char] = ACTIONS(505), + [anon_sym_short] = ACTIONS(505), + [anon_sym_long] = ACTIONS(505), + [anon_sym_float] = ACTIONS(505), + [anon_sym_double] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_public] = ACTIONS(505), + [anon_sym_protected] = ACTIONS(505), + [anon_sym_private] = ACTIONS(505), + [anon_sym_static] = ACTIONS(505), + [anon_sym_final] = ACTIONS(505), + [anon_sym_synchronized] = ACTIONS(505), + }, + [372] = { + [sym_comment] = STATE(372), + [sym_groovy_doc] = STATE(372), + [sym_identifier] = ACTIONS(397), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_SEMI] = ACTIONS(399), + [anon_sym_DOT_AMP] = ACTIONS(399), + [anon_sym_DOT_AT] = ACTIONS(399), + [anon_sym_QMARK_DOT] = ACTIONS(399), + [anon_sym_STAR_DOT] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_import] = ACTIONS(397), + [anon_sym_as] = ACTIONS(397), + [anon_sym_package] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(397), + [anon_sym_assert] = ACTIONS(397), + [anon_sym_PLUS_PLUS] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_GT_GT_GT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_LT] = ACTIONS(399), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(399), + [anon_sym_LT_DOT_DOT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_in] = ACTIONS(397), + [anon_sym_BANGin] = ACTIONS(397), + [anon_sym_instanceof] = ACTIONS(397), + [anon_sym_BANGinstanceof] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_LT_EQ_GT] = ACTIONS(399), + [anon_sym_EQ_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ_EQ] = ACTIONS(399), + [anon_sym_EQ_TILDE] = ACTIONS(399), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(399), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_QMARK_COLON] = ACTIONS(399), + [anon_sym_STAR_STAR] = ACTIONS(399), + [anon_sym_ATinterface] = ACTIONS(399), + [anon_sym_interface] = ACTIONS(397), + [anon_sym_class] = ACTIONS(397), + [anon_sym_COMMA] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_RBRACE] = ACTIONS(399), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(397), + [anon_sym_do] = ACTIONS(397), + [anon_sym_while] = ACTIONS(397), + [anon_sym_for] = ACTIONS(397), + [anon_sym_if] = ACTIONS(397), + [anon_sym_else] = ACTIONS(397), + [anon_sym_return] = ACTIONS(397), + [anon_sym_SQUOTE] = ACTIONS(397), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(399), + [anon_sym_DQUOTE] = ACTIONS(397), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(399), + [anon_sym_DOLLAR_SLASH] = ACTIONS(399), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_case] = ACTIONS(397), + [anon_sym_default] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_try] = ACTIONS(397), + [anon_sym_int] = ACTIONS(397), + [anon_sym_boolean] = ACTIONS(397), + [anon_sym_char] = ACTIONS(397), + [anon_sym_short] = ACTIONS(397), + [anon_sym_long] = ACTIONS(397), + [anon_sym_float] = ACTIONS(397), + [anon_sym_double] = ACTIONS(397), + [anon_sym_void] = ACTIONS(397), + [anon_sym_public] = ACTIONS(397), + [anon_sym_protected] = ACTIONS(397), + [anon_sym_private] = ACTIONS(397), + [anon_sym_static] = ACTIONS(397), + [anon_sym_final] = ACTIONS(397), + [anon_sym_synchronized] = ACTIONS(397), + }, + [373] = { + [sym_comment] = STATE(373), + [sym_groovy_doc] = STATE(373), + [ts_builtin_sym_end] = ACTIONS(511), + [sym_identifier] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(511), + [anon_sym_DOT_AMP] = ACTIONS(686), + [anon_sym_DOT_AT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(686), + [anon_sym_STAR_DOT] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_import] = ACTIONS(509), + [anon_sym_as] = ACTIONS(690), + [anon_sym_package] = ACTIONS(509), + [anon_sym_AT] = ACTIONS(509), + [anon_sym_assert] = ACTIONS(509), + [anon_sym_PLUS_PLUS] = ACTIONS(511), + [anon_sym_DASH_DASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(696), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_GT_GT_GT] = ACTIONS(696), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_in] = ACTIONS(690), + [anon_sym_BANGin] = ACTIONS(690), + [anon_sym_instanceof] = ACTIONS(690), + [anon_sym_BANGinstanceof] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(702), + [anon_sym_BANG_EQ] = ACTIONS(702), + [anon_sym_LT_EQ_GT] = ACTIONS(704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(704), + [anon_sym_EQ_TILDE] = ACTIONS(704), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(704), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(710), + [anon_sym_AMP_AMP] = ACTIONS(712), + [anon_sym_PIPE_PIPE] = ACTIONS(714), + [anon_sym_QMARK_COLON] = ACTIONS(716), + [anon_sym_STAR_STAR] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(511), + [anon_sym_interface] = ACTIONS(509), + [anon_sym_class] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(511), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(509), + [anon_sym_do] = ACTIONS(509), + [anon_sym_while] = ACTIONS(509), + [anon_sym_for] = ACTIONS(509), + [anon_sym_if] = ACTIONS(509), + [anon_sym_else] = ACTIONS(509), + [anon_sym_pipeline] = ACTIONS(509), + [anon_sym_return] = ACTIONS(509), + [anon_sym_SQUOTE] = ACTIONS(509), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(511), + [anon_sym_DQUOTE] = ACTIONS(509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_SLASH] = ACTIONS(511), + [anon_sym_switch] = ACTIONS(509), + [anon_sym_QMARK] = ACTIONS(722), + [anon_sym_try] = ACTIONS(509), + [anon_sym_catch] = ACTIONS(509), + [anon_sym_finally] = ACTIONS(509), + [anon_sym_int] = ACTIONS(509), + [anon_sym_boolean] = ACTIONS(509), + [anon_sym_char] = ACTIONS(509), + [anon_sym_short] = ACTIONS(509), + [anon_sym_long] = ACTIONS(509), + [anon_sym_float] = ACTIONS(509), + [anon_sym_double] = ACTIONS(509), + [anon_sym_void] = ACTIONS(509), + [anon_sym_public] = ACTIONS(509), + [anon_sym_protected] = ACTIONS(509), + [anon_sym_private] = ACTIONS(509), + [anon_sym_static] = ACTIONS(509), + [anon_sym_final] = ACTIONS(509), + [anon_sym_synchronized] = ACTIONS(509), + }, + [374] = { + [sym_comment] = STATE(374), + [sym_groovy_doc] = STATE(374), + [ts_builtin_sym_end] = ACTIONS(515), + [sym_identifier] = ACTIONS(513), + [anon_sym_break] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(515), + [anon_sym_DOT_AMP] = ACTIONS(686), + [anon_sym_DOT_AT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(686), + [anon_sym_STAR_DOT] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_import] = ACTIONS(513), + [anon_sym_as] = ACTIONS(690), + [anon_sym_package] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(513), + [anon_sym_assert] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(696), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_GT_GT_GT] = ACTIONS(696), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_in] = ACTIONS(690), + [anon_sym_BANGin] = ACTIONS(690), + [anon_sym_instanceof] = ACTIONS(690), + [anon_sym_BANGinstanceof] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(702), + [anon_sym_BANG_EQ] = ACTIONS(702), + [anon_sym_LT_EQ_GT] = ACTIONS(704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(704), + [anon_sym_EQ_TILDE] = ACTIONS(704), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(704), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(710), + [anon_sym_AMP_AMP] = ACTIONS(712), + [anon_sym_PIPE_PIPE] = ACTIONS(714), + [anon_sym_QMARK_COLON] = ACTIONS(716), + [anon_sym_STAR_STAR] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(515), + [anon_sym_interface] = ACTIONS(513), + [anon_sym_class] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(515), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(513), + [anon_sym_do] = ACTIONS(513), + [anon_sym_while] = ACTIONS(513), + [anon_sym_for] = ACTIONS(513), + [anon_sym_if] = ACTIONS(513), + [anon_sym_else] = ACTIONS(513), + [anon_sym_pipeline] = ACTIONS(513), + [anon_sym_return] = ACTIONS(513), + [anon_sym_SQUOTE] = ACTIONS(513), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(513), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_SLASH] = ACTIONS(515), + [anon_sym_switch] = ACTIONS(513), + [anon_sym_QMARK] = ACTIONS(722), + [anon_sym_try] = ACTIONS(513), + [anon_sym_catch] = ACTIONS(513), + [anon_sym_finally] = ACTIONS(513), + [anon_sym_int] = ACTIONS(513), + [anon_sym_boolean] = ACTIONS(513), + [anon_sym_char] = ACTIONS(513), + [anon_sym_short] = ACTIONS(513), + [anon_sym_long] = ACTIONS(513), + [anon_sym_float] = ACTIONS(513), + [anon_sym_double] = ACTIONS(513), + [anon_sym_void] = ACTIONS(513), + [anon_sym_public] = ACTIONS(513), + [anon_sym_protected] = ACTIONS(513), + [anon_sym_private] = ACTIONS(513), + [anon_sym_static] = ACTIONS(513), + [anon_sym_final] = ACTIONS(513), + [anon_sym_synchronized] = ACTIONS(513), + }, + [375] = { + [sym_comment] = STATE(375), + [sym_groovy_doc] = STATE(375), + [ts_builtin_sym_end] = ACTIONS(519), + [sym_identifier] = ACTIONS(517), + [anon_sym_break] = ACTIONS(517), + [anon_sym_continue] = ACTIONS(517), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_DOT_AMP] = ACTIONS(686), + [anon_sym_DOT_AT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(686), + [anon_sym_STAR_DOT] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_import] = ACTIONS(517), + [anon_sym_as] = ACTIONS(690), + [anon_sym_package] = ACTIONS(517), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_assert] = ACTIONS(517), + [anon_sym_PLUS_PLUS] = ACTIONS(519), + [anon_sym_DASH_DASH] = ACTIONS(519), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(696), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_GT_GT_GT] = ACTIONS(696), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_in] = ACTIONS(690), + [anon_sym_BANGin] = ACTIONS(690), + [anon_sym_instanceof] = ACTIONS(690), + [anon_sym_BANGinstanceof] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(702), + [anon_sym_BANG_EQ] = ACTIONS(702), + [anon_sym_LT_EQ_GT] = ACTIONS(704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(704), + [anon_sym_EQ_TILDE] = ACTIONS(704), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(704), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(710), + [anon_sym_AMP_AMP] = ACTIONS(712), + [anon_sym_PIPE_PIPE] = ACTIONS(714), + [anon_sym_QMARK_COLON] = ACTIONS(716), + [anon_sym_STAR_STAR] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(519), + [anon_sym_interface] = ACTIONS(517), + [anon_sym_class] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(519), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(517), + [anon_sym_do] = ACTIONS(517), + [anon_sym_while] = ACTIONS(517), + [anon_sym_for] = ACTIONS(517), + [anon_sym_if] = ACTIONS(517), + [anon_sym_else] = ACTIONS(517), + [anon_sym_pipeline] = ACTIONS(517), + [anon_sym_return] = ACTIONS(517), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE] = ACTIONS(517), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(519), + [anon_sym_DOLLAR_SLASH] = ACTIONS(519), + [anon_sym_switch] = ACTIONS(517), + [anon_sym_QMARK] = ACTIONS(722), + [anon_sym_try] = ACTIONS(517), + [anon_sym_catch] = ACTIONS(517), + [anon_sym_finally] = ACTIONS(517), + [anon_sym_int] = ACTIONS(517), + [anon_sym_boolean] = ACTIONS(517), + [anon_sym_char] = ACTIONS(517), + [anon_sym_short] = ACTIONS(517), + [anon_sym_long] = ACTIONS(517), + [anon_sym_float] = ACTIONS(517), + [anon_sym_double] = ACTIONS(517), + [anon_sym_void] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_protected] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_synchronized] = ACTIONS(517), + }, + [376] = { + [sym_comment] = STATE(376), + [sym_groovy_doc] = STATE(376), + [sym_identifier] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_DOT_AMP] = ACTIONS(387), + [anon_sym_DOT_AT] = ACTIONS(387), + [anon_sym_QMARK_DOT] = ACTIONS(387), + [anon_sym_STAR_DOT] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(385), + [anon_sym_import] = ACTIONS(385), + [anon_sym_as] = ACTIONS(385), + [anon_sym_package] = ACTIONS(385), + [anon_sym_AT] = ACTIONS(385), + [anon_sym_assert] = ACTIONS(385), + [anon_sym_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_GT_GT_GT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_LT] = ACTIONS(387), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(387), + [anon_sym_LT_DOT_DOT] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_in] = ACTIONS(385), + [anon_sym_BANGin] = ACTIONS(385), + [anon_sym_instanceof] = ACTIONS(385), + [anon_sym_BANGinstanceof] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(385), + [anon_sym_BANG_EQ] = ACTIONS(385), + [anon_sym_LT_EQ_GT] = ACTIONS(387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(387), + [anon_sym_EQ_TILDE] = ACTIONS(387), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_QMARK_COLON] = ACTIONS(387), + [anon_sym_STAR_STAR] = ACTIONS(387), + [anon_sym_ATinterface] = ACTIONS(387), + [anon_sym_interface] = ACTIONS(385), + [anon_sym_class] = ACTIONS(385), + [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(387), + [anon_sym_RBRACE] = ACTIONS(387), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(385), + [anon_sym_do] = ACTIONS(385), + [anon_sym_while] = ACTIONS(385), + [anon_sym_for] = ACTIONS(385), + [anon_sym_if] = ACTIONS(385), + [anon_sym_else] = ACTIONS(385), + [anon_sym_return] = ACTIONS(385), + [anon_sym_SQUOTE] = ACTIONS(385), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(387), + [anon_sym_DQUOTE] = ACTIONS(385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_SLASH] = ACTIONS(387), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_case] = ACTIONS(385), + [anon_sym_default] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_try] = ACTIONS(385), + [anon_sym_int] = ACTIONS(385), + [anon_sym_boolean] = ACTIONS(385), + [anon_sym_char] = ACTIONS(385), + [anon_sym_short] = ACTIONS(385), + [anon_sym_long] = ACTIONS(385), + [anon_sym_float] = ACTIONS(385), + [anon_sym_double] = ACTIONS(385), + [anon_sym_void] = ACTIONS(385), + [anon_sym_public] = ACTIONS(385), + [anon_sym_protected] = ACTIONS(385), + [anon_sym_private] = ACTIONS(385), + [anon_sym_static] = ACTIONS(385), + [anon_sym_final] = ACTIONS(385), + [anon_sym_synchronized] = ACTIONS(385), + }, + [377] = { + [sym_comment] = STATE(377), + [sym_groovy_doc] = STATE(377), + [sym_identifier] = ACTIONS(425), + [anon_sym_break] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(425), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_DOT_AMP] = ACTIONS(427), + [anon_sym_DOT_AT] = ACTIONS(427), + [anon_sym_QMARK_DOT] = ACTIONS(427), + [anon_sym_STAR_DOT] = ACTIONS(427), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_import] = ACTIONS(425), + [anon_sym_as] = ACTIONS(425), + [anon_sym_package] = ACTIONS(425), + [anon_sym_AT] = ACTIONS(425), + [anon_sym_assert] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(427), + [anon_sym_DASH_DASH] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(425), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_LT_LT] = ACTIONS(427), + [anon_sym_GT_GT] = ACTIONS(425), + [anon_sym_GT_GT_GT] = ACTIONS(427), + [anon_sym_DOT_DOT] = ACTIONS(425), + [anon_sym_DOT_DOT_LT] = ACTIONS(427), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(427), + [anon_sym_LT_DOT_DOT] = ACTIONS(425), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_LT_EQ] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(425), + [anon_sym_GT_EQ] = ACTIONS(427), + [anon_sym_in] = ACTIONS(425), + [anon_sym_BANGin] = ACTIONS(425), + [anon_sym_instanceof] = ACTIONS(425), + [anon_sym_BANGinstanceof] = ACTIONS(427), + [anon_sym_EQ_EQ] = ACTIONS(425), + [anon_sym_BANG_EQ] = ACTIONS(425), + [anon_sym_LT_EQ_GT] = ACTIONS(427), + [anon_sym_EQ_EQ_EQ] = ACTIONS(427), + [anon_sym_BANG_EQ_EQ] = ACTIONS(427), + [anon_sym_EQ_TILDE] = ACTIONS(427), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_PIPE] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(427), + [anon_sym_PIPE_PIPE] = ACTIONS(427), + [anon_sym_QMARK_COLON] = ACTIONS(427), + [anon_sym_STAR_STAR] = ACTIONS(427), + [anon_sym_ATinterface] = ACTIONS(427), + [anon_sym_interface] = ACTIONS(425), + [anon_sym_class] = ACTIONS(425), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(427), + [anon_sym_RBRACE] = ACTIONS(427), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(425), + [anon_sym_do] = ACTIONS(425), + [anon_sym_while] = ACTIONS(425), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(425), + [anon_sym_else] = ACTIONS(425), + [anon_sym_return] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(425), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(425), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR_SLASH] = ACTIONS(427), + [anon_sym_switch] = ACTIONS(425), + [anon_sym_case] = ACTIONS(425), + [anon_sym_default] = ACTIONS(425), + [anon_sym_QMARK] = ACTIONS(425), + [anon_sym_try] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_char] = ACTIONS(425), + [anon_sym_short] = ACTIONS(425), + [anon_sym_long] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_double] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_static] = ACTIONS(425), + [anon_sym_final] = ACTIONS(425), + [anon_sym_synchronized] = ACTIONS(425), + }, + [378] = { + [sym_comment] = STATE(378), + [sym_groovy_doc] = STATE(378), + [sym_identifier] = ACTIONS(379), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_DOT_AMP] = ACTIONS(381), + [anon_sym_DOT_AT] = ACTIONS(381), + [anon_sym_QMARK_DOT] = ACTIONS(381), + [anon_sym_STAR_DOT] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(379), + [anon_sym_import] = ACTIONS(379), + [anon_sym_as] = ACTIONS(379), + [anon_sym_package] = ACTIONS(379), + [anon_sym_AT] = ACTIONS(379), + [anon_sym_assert] = ACTIONS(379), + [anon_sym_PLUS_PLUS] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(379), + [anon_sym_DASH] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(379), + [anon_sym_GT_GT_GT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_LT] = ACTIONS(381), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(381), + [anon_sym_LT_DOT_DOT] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_in] = ACTIONS(379), + [anon_sym_BANGin] = ACTIONS(379), + [anon_sym_instanceof] = ACTIONS(379), + [anon_sym_BANGinstanceof] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT_EQ_GT] = ACTIONS(381), + [anon_sym_EQ_EQ_EQ] = ACTIONS(381), + [anon_sym_BANG_EQ_EQ] = ACTIONS(381), + [anon_sym_EQ_TILDE] = ACTIONS(381), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [anon_sym_QMARK_COLON] = ACTIONS(381), + [anon_sym_STAR_STAR] = ACTIONS(381), + [anon_sym_ATinterface] = ACTIONS(381), + [anon_sym_interface] = ACTIONS(379), + [anon_sym_class] = ACTIONS(379), + [anon_sym_COMMA] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(381), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(379), + [anon_sym_do] = ACTIONS(379), + [anon_sym_while] = ACTIONS(379), + [anon_sym_for] = ACTIONS(379), + [anon_sym_if] = ACTIONS(379), + [anon_sym_else] = ACTIONS(379), + [anon_sym_return] = ACTIONS(379), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(381), + [anon_sym_DOLLAR_SLASH] = ACTIONS(381), + [anon_sym_switch] = ACTIONS(379), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(379), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_try] = ACTIONS(379), + [anon_sym_int] = ACTIONS(379), + [anon_sym_boolean] = ACTIONS(379), + [anon_sym_char] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [anon_sym_long] = ACTIONS(379), + [anon_sym_float] = ACTIONS(379), + [anon_sym_double] = ACTIONS(379), + [anon_sym_void] = ACTIONS(379), + [anon_sym_public] = ACTIONS(379), + [anon_sym_protected] = ACTIONS(379), + [anon_sym_private] = ACTIONS(379), + [anon_sym_static] = ACTIONS(379), + [anon_sym_final] = ACTIONS(379), + [anon_sym_synchronized] = ACTIONS(379), + }, + [379] = { + [sym_comment] = STATE(379), + [sym_groovy_doc] = STATE(379), + [sym_identifier] = ACTIONS(355), + [anon_sym_break] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_DOT_AMP] = ACTIONS(357), + [anon_sym_DOT_AT] = ACTIONS(357), + [anon_sym_QMARK_DOT] = ACTIONS(357), + [anon_sym_STAR_DOT] = ACTIONS(357), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_import] = ACTIONS(355), + [anon_sym_as] = ACTIONS(355), + [anon_sym_package] = ACTIONS(355), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_assert] = ACTIONS(355), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(355), + [anon_sym_PLUS] = ACTIONS(355), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_LT_LT] = ACTIONS(357), + [anon_sym_GT_GT] = ACTIONS(355), + [anon_sym_GT_GT_GT] = ACTIONS(357), + [anon_sym_DOT_DOT] = ACTIONS(355), + [anon_sym_DOT_DOT_LT] = ACTIONS(357), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(357), + [anon_sym_LT_DOT_DOT] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_LT_EQ] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_EQ] = ACTIONS(357), + [anon_sym_in] = ACTIONS(355), + [anon_sym_BANGin] = ACTIONS(355), + [anon_sym_instanceof] = ACTIONS(355), + [anon_sym_BANGinstanceof] = ACTIONS(357), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_BANG_EQ] = ACTIONS(355), + [anon_sym_LT_EQ_GT] = ACTIONS(357), + [anon_sym_EQ_EQ_EQ] = ACTIONS(357), + [anon_sym_BANG_EQ_EQ] = ACTIONS(357), + [anon_sym_EQ_TILDE] = ACTIONS(357), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_CARET] = ACTIONS(357), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(357), + [anon_sym_PIPE_PIPE] = ACTIONS(357), + [anon_sym_QMARK_COLON] = ACTIONS(357), + [anon_sym_STAR_STAR] = ACTIONS(357), + [anon_sym_ATinterface] = ACTIONS(357), + [anon_sym_interface] = ACTIONS(355), + [anon_sym_class] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_RBRACE] = ACTIONS(357), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(355), + [anon_sym_do] = ACTIONS(355), + [anon_sym_while] = ACTIONS(355), + [anon_sym_for] = ACTIONS(355), + [anon_sym_if] = ACTIONS(355), + [anon_sym_else] = ACTIONS(355), + [anon_sym_return] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(355), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(357), + [anon_sym_DOLLAR_SLASH] = ACTIONS(357), + [anon_sym_switch] = ACTIONS(355), + [anon_sym_case] = ACTIONS(355), + [anon_sym_default] = ACTIONS(355), + [anon_sym_QMARK] = ACTIONS(355), + [anon_sym_try] = ACTIONS(355), + [anon_sym_int] = ACTIONS(355), + [anon_sym_boolean] = ACTIONS(355), + [anon_sym_char] = ACTIONS(355), + [anon_sym_short] = ACTIONS(355), + [anon_sym_long] = ACTIONS(355), + [anon_sym_float] = ACTIONS(355), + [anon_sym_double] = ACTIONS(355), + [anon_sym_void] = ACTIONS(355), + [anon_sym_public] = ACTIONS(355), + [anon_sym_protected] = ACTIONS(355), + [anon_sym_private] = ACTIONS(355), + [anon_sym_static] = ACTIONS(355), + [anon_sym_final] = ACTIONS(355), + [anon_sym_synchronized] = ACTIONS(355), + }, + [380] = { + [sym_comment] = STATE(380), + [sym_groovy_doc] = STATE(380), + [ts_builtin_sym_end] = ACTIONS(419), + [sym_identifier] = ACTIONS(417), + [anon_sym_break] = ACTIONS(417), + [anon_sym_continue] = ACTIONS(417), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_DOT_AMP] = ACTIONS(419), + [anon_sym_DOT_AT] = ACTIONS(419), + [anon_sym_QMARK_DOT] = ACTIONS(419), + [anon_sym_STAR_DOT] = ACTIONS(419), + [anon_sym_STAR] = ACTIONS(417), + [anon_sym_import] = ACTIONS(417), + [anon_sym_as] = ACTIONS(417), + [anon_sym_package] = ACTIONS(417), + [anon_sym_AT] = ACTIONS(417), + [anon_sym_assert] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(417), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(417), + [anon_sym_LT_LT] = ACTIONS(419), + [anon_sym_GT_GT] = ACTIONS(417), + [anon_sym_GT_GT_GT] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(417), + [anon_sym_DOT_DOT_LT] = ACTIONS(419), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(419), + [anon_sym_LT_DOT_DOT] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_LT_EQ] = ACTIONS(417), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_in] = ACTIONS(417), + [anon_sym_BANGin] = ACTIONS(417), + [anon_sym_instanceof] = ACTIONS(417), + [anon_sym_BANGinstanceof] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(417), + [anon_sym_BANG_EQ] = ACTIONS(417), + [anon_sym_LT_EQ_GT] = ACTIONS(419), + [anon_sym_EQ_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ_EQ] = ACTIONS(419), + [anon_sym_EQ_TILDE] = ACTIONS(419), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(419), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_CARET] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_QMARK_COLON] = ACTIONS(419), + [anon_sym_STAR_STAR] = ACTIONS(419), + [anon_sym_ATinterface] = ACTIONS(419), + [anon_sym_interface] = ACTIONS(417), + [anon_sym_class] = ACTIONS(417), + [anon_sym_COMMA] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(419), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(417), + [anon_sym_RPAREN] = ACTIONS(419), + [anon_sym_do] = ACTIONS(417), + [anon_sym_while] = ACTIONS(417), + [anon_sym_for] = ACTIONS(417), + [anon_sym_if] = ACTIONS(417), + [anon_sym_else] = ACTIONS(417), + [anon_sym_pipeline] = ACTIONS(417), + [anon_sym_return] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(419), + [anon_sym_DQUOTE] = ACTIONS(417), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(419), + [anon_sym_DOLLAR_SLASH] = ACTIONS(419), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(417), + [anon_sym_try] = ACTIONS(417), + [anon_sym_int] = ACTIONS(417), + [anon_sym_boolean] = ACTIONS(417), + [anon_sym_char] = ACTIONS(417), + [anon_sym_short] = ACTIONS(417), + [anon_sym_long] = ACTIONS(417), + [anon_sym_float] = ACTIONS(417), + [anon_sym_double] = ACTIONS(417), + [anon_sym_void] = ACTIONS(417), + [anon_sym_public] = ACTIONS(417), + [anon_sym_protected] = ACTIONS(417), + [anon_sym_private] = ACTIONS(417), + [anon_sym_static] = ACTIONS(417), + [anon_sym_final] = ACTIONS(417), + [anon_sym_synchronized] = ACTIONS(417), + }, + [381] = { + [sym_comment] = STATE(381), + [sym_groovy_doc] = STATE(381), + [sym_identifier] = ACTIONS(389), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_SEMI] = ACTIONS(391), + [anon_sym_DOT_AMP] = ACTIONS(726), + [anon_sym_DOT_AT] = ACTIONS(726), + [anon_sym_QMARK_DOT] = ACTIONS(726), + [anon_sym_STAR_DOT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_import] = ACTIONS(389), + [anon_sym_as] = ACTIONS(730), + [anon_sym_package] = ACTIONS(389), + [anon_sym_AT] = ACTIONS(389), + [anon_sym_assert] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_PERCENT] = ACTIONS(732), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_LT_LT] = ACTIONS(736), + [anon_sym_GT_GT] = ACTIONS(738), + [anon_sym_GT_GT_GT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(738), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_in] = ACTIONS(730), + [anon_sym_BANGin] = ACTIONS(730), + [anon_sym_instanceof] = ACTIONS(730), + [anon_sym_BANGinstanceof] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_LT_EQ_GT] = ACTIONS(744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(744), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(752), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [anon_sym_QMARK_COLON] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(391), + [anon_sym_interface] = ACTIONS(389), + [anon_sym_class] = ACTIONS(389), + [anon_sym_COMMA] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(391), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(389), + [anon_sym_do] = ACTIONS(389), + [anon_sym_while] = ACTIONS(389), + [anon_sym_for] = ACTIONS(389), + [anon_sym_if] = ACTIONS(389), + [anon_sym_else] = ACTIONS(389), + [anon_sym_return] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(391), + [anon_sym_DQUOTE] = ACTIONS(389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(391), + [anon_sym_DOLLAR_SLASH] = ACTIONS(391), + [anon_sym_switch] = ACTIONS(389), + [anon_sym_case] = ACTIONS(389), + [anon_sym_default] = ACTIONS(389), + [anon_sym_QMARK] = ACTIONS(762), + [anon_sym_try] = ACTIONS(389), + [anon_sym_int] = ACTIONS(389), + [anon_sym_boolean] = ACTIONS(389), + [anon_sym_char] = ACTIONS(389), + [anon_sym_short] = ACTIONS(389), + [anon_sym_long] = ACTIONS(389), + [anon_sym_float] = ACTIONS(389), + [anon_sym_double] = ACTIONS(389), + [anon_sym_void] = ACTIONS(389), + [anon_sym_public] = ACTIONS(389), + [anon_sym_protected] = ACTIONS(389), + [anon_sym_private] = ACTIONS(389), + [anon_sym_static] = ACTIONS(389), + [anon_sym_final] = ACTIONS(389), + [anon_sym_synchronized] = ACTIONS(389), + }, + [382] = { + [sym_comment] = STATE(382), + [sym_groovy_doc] = STATE(382), + [ts_builtin_sym_end] = ACTIONS(489), + [sym_identifier] = ACTIONS(487), + [anon_sym_break] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_SEMI] = ACTIONS(489), + [anon_sym_DOT_AMP] = ACTIONS(686), + [anon_sym_DOT_AT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(686), + [anon_sym_STAR_DOT] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_import] = ACTIONS(487), + [anon_sym_as] = ACTIONS(690), + [anon_sym_package] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(487), + [anon_sym_assert] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(489), + [anon_sym_DASH_DASH] = ACTIONS(489), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(696), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_GT_GT_GT] = ACTIONS(696), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_in] = ACTIONS(690), + [anon_sym_BANGin] = ACTIONS(690), + [anon_sym_instanceof] = ACTIONS(690), + [anon_sym_BANGinstanceof] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(702), + [anon_sym_BANG_EQ] = ACTIONS(702), + [anon_sym_LT_EQ_GT] = ACTIONS(704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(704), + [anon_sym_EQ_TILDE] = ACTIONS(704), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(704), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(710), + [anon_sym_AMP_AMP] = ACTIONS(712), + [anon_sym_PIPE_PIPE] = ACTIONS(714), + [anon_sym_QMARK_COLON] = ACTIONS(716), + [anon_sym_STAR_STAR] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(489), + [anon_sym_interface] = ACTIONS(487), + [anon_sym_class] = ACTIONS(487), + [anon_sym_LBRACE] = ACTIONS(489), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(487), + [anon_sym_do] = ACTIONS(487), + [anon_sym_while] = ACTIONS(487), + [anon_sym_for] = ACTIONS(487), + [anon_sym_if] = ACTIONS(487), + [anon_sym_else] = ACTIONS(487), + [anon_sym_pipeline] = ACTIONS(487), + [anon_sym_return] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(487), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(489), + [anon_sym_DQUOTE] = ACTIONS(487), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(489), + [anon_sym_DOLLAR_SLASH] = ACTIONS(489), + [anon_sym_switch] = ACTIONS(487), + [anon_sym_QMARK] = ACTIONS(722), + [anon_sym_try] = ACTIONS(487), + [anon_sym_catch] = ACTIONS(487), + [anon_sym_finally] = ACTIONS(487), + [anon_sym_int] = ACTIONS(487), + [anon_sym_boolean] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_short] = ACTIONS(487), + [anon_sym_long] = ACTIONS(487), + [anon_sym_float] = ACTIONS(487), + [anon_sym_double] = ACTIONS(487), + [anon_sym_void] = ACTIONS(487), + [anon_sym_public] = ACTIONS(487), + [anon_sym_protected] = ACTIONS(487), + [anon_sym_private] = ACTIONS(487), + [anon_sym_static] = ACTIONS(487), + [anon_sym_final] = ACTIONS(487), + [anon_sym_synchronized] = ACTIONS(487), + }, + [383] = { + [sym_comment] = STATE(383), + [sym_groovy_doc] = STATE(383), + [ts_builtin_sym_end] = ACTIONS(481), + [sym_identifier] = ACTIONS(479), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(481), + [anon_sym_DOT_AMP] = ACTIONS(686), + [anon_sym_DOT_AT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(686), + [anon_sym_STAR_DOT] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_import] = ACTIONS(479), + [anon_sym_as] = ACTIONS(690), + [anon_sym_package] = ACTIONS(479), + [anon_sym_AT] = ACTIONS(479), + [anon_sym_assert] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(696), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_GT_GT_GT] = ACTIONS(696), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_in] = ACTIONS(690), + [anon_sym_BANGin] = ACTIONS(690), + [anon_sym_instanceof] = ACTIONS(690), + [anon_sym_BANGinstanceof] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(702), + [anon_sym_BANG_EQ] = ACTIONS(702), + [anon_sym_LT_EQ_GT] = ACTIONS(704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(704), + [anon_sym_EQ_TILDE] = ACTIONS(704), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(704), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(710), + [anon_sym_AMP_AMP] = ACTIONS(712), + [anon_sym_PIPE_PIPE] = ACTIONS(714), + [anon_sym_QMARK_COLON] = ACTIONS(716), + [anon_sym_STAR_STAR] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(481), + [anon_sym_interface] = ACTIONS(479), + [anon_sym_class] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(479), + [anon_sym_do] = ACTIONS(479), + [anon_sym_while] = ACTIONS(479), + [anon_sym_for] = ACTIONS(479), + [anon_sym_if] = ACTIONS(479), + [anon_sym_else] = ACTIONS(479), + [anon_sym_pipeline] = ACTIONS(479), + [anon_sym_return] = ACTIONS(479), + [anon_sym_SQUOTE] = ACTIONS(479), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(481), + [anon_sym_DQUOTE] = ACTIONS(479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(481), + [anon_sym_DOLLAR_SLASH] = ACTIONS(481), + [anon_sym_switch] = ACTIONS(479), + [anon_sym_QMARK] = ACTIONS(722), + [anon_sym_try] = ACTIONS(479), + [anon_sym_catch] = ACTIONS(479), + [anon_sym_finally] = ACTIONS(479), + [anon_sym_int] = ACTIONS(479), + [anon_sym_boolean] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_short] = ACTIONS(479), + [anon_sym_long] = ACTIONS(479), + [anon_sym_float] = ACTIONS(479), + [anon_sym_double] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_public] = ACTIONS(479), + [anon_sym_protected] = ACTIONS(479), + [anon_sym_private] = ACTIONS(479), + [anon_sym_static] = ACTIONS(479), + [anon_sym_final] = ACTIONS(479), + [anon_sym_synchronized] = ACTIONS(479), + }, + [384] = { + [sym_comment] = STATE(384), + [sym_groovy_doc] = STATE(384), + [ts_builtin_sym_end] = ACTIONS(485), + [sym_identifier] = ACTIONS(483), + [anon_sym_break] = ACTIONS(483), + [anon_sym_continue] = ACTIONS(483), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_DOT_AMP] = ACTIONS(686), + [anon_sym_DOT_AT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(686), + [anon_sym_STAR_DOT] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_import] = ACTIONS(483), + [anon_sym_as] = ACTIONS(690), + [anon_sym_package] = ACTIONS(483), + [anon_sym_AT] = ACTIONS(483), + [anon_sym_assert] = ACTIONS(483), + [anon_sym_PLUS_PLUS] = ACTIONS(485), + [anon_sym_DASH_DASH] = ACTIONS(485), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(696), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_GT_GT_GT] = ACTIONS(696), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_in] = ACTIONS(690), + [anon_sym_BANGin] = ACTIONS(690), + [anon_sym_instanceof] = ACTIONS(690), + [anon_sym_BANGinstanceof] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(702), + [anon_sym_BANG_EQ] = ACTIONS(702), + [anon_sym_LT_EQ_GT] = ACTIONS(704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(704), + [anon_sym_EQ_TILDE] = ACTIONS(704), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(704), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(710), + [anon_sym_AMP_AMP] = ACTIONS(712), + [anon_sym_PIPE_PIPE] = ACTIONS(714), + [anon_sym_QMARK_COLON] = ACTIONS(716), + [anon_sym_STAR_STAR] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(485), + [anon_sym_interface] = ACTIONS(483), + [anon_sym_class] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(485), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(483), + [anon_sym_do] = ACTIONS(483), + [anon_sym_while] = ACTIONS(483), + [anon_sym_for] = ACTIONS(483), + [anon_sym_if] = ACTIONS(483), + [anon_sym_else] = ACTIONS(483), + [anon_sym_pipeline] = ACTIONS(483), + [anon_sym_return] = ACTIONS(483), + [anon_sym_SQUOTE] = ACTIONS(483), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(485), + [anon_sym_DQUOTE] = ACTIONS(483), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(485), + [anon_sym_DOLLAR_SLASH] = ACTIONS(485), + [anon_sym_switch] = ACTIONS(483), + [anon_sym_QMARK] = ACTIONS(722), + [anon_sym_try] = ACTIONS(483), + [anon_sym_catch] = ACTIONS(483), + [anon_sym_finally] = ACTIONS(483), + [anon_sym_int] = ACTIONS(483), + [anon_sym_boolean] = ACTIONS(483), + [anon_sym_char] = ACTIONS(483), + [anon_sym_short] = ACTIONS(483), + [anon_sym_long] = ACTIONS(483), + [anon_sym_float] = ACTIONS(483), + [anon_sym_double] = ACTIONS(483), + [anon_sym_void] = ACTIONS(483), + [anon_sym_public] = ACTIONS(483), + [anon_sym_protected] = ACTIONS(483), + [anon_sym_private] = ACTIONS(483), + [anon_sym_static] = ACTIONS(483), + [anon_sym_final] = ACTIONS(483), + [anon_sym_synchronized] = ACTIONS(483), + }, + [385] = { + [sym_comment] = STATE(385), + [sym_groovy_doc] = STATE(385), + [sym_identifier] = ACTIONS(367), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(369), + [anon_sym_DOT_AMP] = ACTIONS(726), + [anon_sym_DOT_AT] = ACTIONS(726), + [anon_sym_QMARK_DOT] = ACTIONS(726), + [anon_sym_STAR_DOT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_import] = ACTIONS(367), + [anon_sym_as] = ACTIONS(730), + [anon_sym_package] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(367), + [anon_sym_assert] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(732), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_LT_LT] = ACTIONS(736), + [anon_sym_GT_GT] = ACTIONS(738), + [anon_sym_GT_GT_GT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(738), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_in] = ACTIONS(730), + [anon_sym_BANGin] = ACTIONS(730), + [anon_sym_instanceof] = ACTIONS(730), + [anon_sym_BANGinstanceof] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_LT_EQ_GT] = ACTIONS(744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(744), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(752), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [anon_sym_QMARK_COLON] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(369), + [anon_sym_interface] = ACTIONS(367), + [anon_sym_class] = ACTIONS(367), + [anon_sym_COMMA] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(369), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(367), + [anon_sym_do] = ACTIONS(367), + [anon_sym_while] = ACTIONS(367), + [anon_sym_for] = ACTIONS(367), + [anon_sym_if] = ACTIONS(367), + [anon_sym_else] = ACTIONS(367), + [anon_sym_return] = ACTIONS(367), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR_SLASH] = ACTIONS(369), + [anon_sym_switch] = ACTIONS(367), + [anon_sym_case] = ACTIONS(367), + [anon_sym_default] = ACTIONS(367), + [anon_sym_QMARK] = ACTIONS(762), + [anon_sym_try] = ACTIONS(367), + [anon_sym_int] = ACTIONS(367), + [anon_sym_boolean] = ACTIONS(367), + [anon_sym_char] = ACTIONS(367), + [anon_sym_short] = ACTIONS(367), + [anon_sym_long] = ACTIONS(367), + [anon_sym_float] = ACTIONS(367), + [anon_sym_double] = ACTIONS(367), + [anon_sym_void] = ACTIONS(367), + [anon_sym_public] = ACTIONS(367), + [anon_sym_protected] = ACTIONS(367), + [anon_sym_private] = ACTIONS(367), + [anon_sym_static] = ACTIONS(367), + [anon_sym_final] = ACTIONS(367), + [anon_sym_synchronized] = ACTIONS(367), + }, + [386] = { + [sym_comment] = STATE(386), + [sym_groovy_doc] = STATE(386), + [sym_identifier] = ACTIONS(259), + [anon_sym_break] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(259), + [anon_sym_SEMI] = ACTIONS(261), + [anon_sym_DOT_AMP] = ACTIONS(261), + [anon_sym_DOT_AT] = ACTIONS(261), + [anon_sym_QMARK_DOT] = ACTIONS(261), + [anon_sym_STAR_DOT] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(259), + [anon_sym_import] = ACTIONS(259), + [anon_sym_as] = ACTIONS(259), + [anon_sym_package] = ACTIONS(259), + [anon_sym_AT] = ACTIONS(259), + [anon_sym_assert] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(261), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_GT_GT_GT] = ACTIONS(261), + [anon_sym_DOT_DOT] = ACTIONS(259), + [anon_sym_DOT_DOT_LT] = ACTIONS(261), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(261), + [anon_sym_LT_DOT_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(259), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_GT_EQ] = ACTIONS(261), + [anon_sym_in] = ACTIONS(259), + [anon_sym_BANGin] = ACTIONS(259), + [anon_sym_instanceof] = ACTIONS(259), + [anon_sym_BANGinstanceof] = ACTIONS(261), + [anon_sym_EQ_EQ] = ACTIONS(259), + [anon_sym_BANG_EQ] = ACTIONS(259), + [anon_sym_LT_EQ_GT] = ACTIONS(261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(261), + [anon_sym_BANG_EQ_EQ] = ACTIONS(261), + [anon_sym_EQ_TILDE] = ACTIONS(261), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_CARET] = ACTIONS(261), + [anon_sym_PIPE] = ACTIONS(259), + [anon_sym_AMP_AMP] = ACTIONS(261), + [anon_sym_PIPE_PIPE] = ACTIONS(261), + [anon_sym_QMARK_COLON] = ACTIONS(261), + [anon_sym_STAR_STAR] = ACTIONS(261), + [anon_sym_ATinterface] = ACTIONS(261), + [anon_sym_interface] = ACTIONS(259), + [anon_sym_class] = ACTIONS(259), + [anon_sym_COMMA] = ACTIONS(261), + [anon_sym_LBRACE] = ACTIONS(261), + [anon_sym_RBRACE] = ACTIONS(261), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(259), + [anon_sym_do] = ACTIONS(259), + [anon_sym_while] = ACTIONS(259), + [anon_sym_for] = ACTIONS(259), + [anon_sym_if] = ACTIONS(259), + [anon_sym_else] = ACTIONS(259), + [anon_sym_return] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(261), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_SLASH] = ACTIONS(261), + [anon_sym_switch] = ACTIONS(259), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(259), + [anon_sym_QMARK] = ACTIONS(259), + [anon_sym_try] = ACTIONS(259), + [anon_sym_int] = ACTIONS(259), + [anon_sym_boolean] = ACTIONS(259), + [anon_sym_char] = ACTIONS(259), + [anon_sym_short] = ACTIONS(259), + [anon_sym_long] = ACTIONS(259), + [anon_sym_float] = ACTIONS(259), + [anon_sym_double] = ACTIONS(259), + [anon_sym_void] = ACTIONS(259), + [anon_sym_public] = ACTIONS(259), + [anon_sym_protected] = ACTIONS(259), + [anon_sym_private] = ACTIONS(259), + [anon_sym_static] = ACTIONS(259), + [anon_sym_final] = ACTIONS(259), + [anon_sym_synchronized] = ACTIONS(259), + }, + [387] = { + [sym_comment] = STATE(387), + [sym_groovy_doc] = STATE(387), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(726), + [anon_sym_DOT_AT] = ACTIONS(726), + [anon_sym_QMARK_DOT] = ACTIONS(726), + [anon_sym_STAR_DOT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(730), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(732), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_LT_LT] = ACTIONS(736), + [anon_sym_GT_GT] = ACTIONS(738), + [anon_sym_GT_GT_GT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(738), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_in] = ACTIONS(730), + [anon_sym_BANGin] = ACTIONS(730), + [anon_sym_instanceof] = ACTIONS(730), + [anon_sym_BANGinstanceof] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_LT_EQ_GT] = ACTIONS(744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(744), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_case] = ACTIONS(351), + [anon_sym_default] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [388] = { + [sym_comment] = STATE(388), + [sym_groovy_doc] = STATE(388), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(726), + [anon_sym_DOT_AT] = ACTIONS(726), + [anon_sym_QMARK_DOT] = ACTIONS(726), + [anon_sym_STAR_DOT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(730), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(732), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_LT_LT] = ACTIONS(736), + [anon_sym_GT_GT] = ACTIONS(738), + [anon_sym_GT_GT_GT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(738), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_in] = ACTIONS(730), + [anon_sym_BANGin] = ACTIONS(730), + [anon_sym_instanceof] = ACTIONS(730), + [anon_sym_BANGinstanceof] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_LT_EQ_GT] = ACTIONS(744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(744), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_case] = ACTIONS(351), + [anon_sym_default] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [389] = { + [sym_comment] = STATE(389), + [sym_groovy_doc] = STATE(389), + [sym_identifier] = ACTIONS(433), + [anon_sym_break] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_DOT_AMP] = ACTIONS(435), + [anon_sym_DOT_AT] = ACTIONS(435), + [anon_sym_QMARK_DOT] = ACTIONS(435), + [anon_sym_STAR_DOT] = ACTIONS(435), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_import] = ACTIONS(433), + [anon_sym_as] = ACTIONS(433), + [anon_sym_package] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_assert] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PERCENT] = ACTIONS(435), + [anon_sym_SLASH] = ACTIONS(433), + [anon_sym_PLUS] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_LT_LT] = ACTIONS(435), + [anon_sym_GT_GT] = ACTIONS(433), + [anon_sym_GT_GT_GT] = ACTIONS(435), + [anon_sym_DOT_DOT] = ACTIONS(433), + [anon_sym_DOT_DOT_LT] = ACTIONS(435), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(435), + [anon_sym_LT_DOT_DOT] = ACTIONS(433), + [anon_sym_LT] = ACTIONS(433), + [anon_sym_LT_EQ] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(433), + [anon_sym_GT_EQ] = ACTIONS(435), + [anon_sym_in] = ACTIONS(433), + [anon_sym_BANGin] = ACTIONS(433), + [anon_sym_instanceof] = ACTIONS(433), + [anon_sym_BANGinstanceof] = ACTIONS(435), + [anon_sym_EQ_EQ] = ACTIONS(433), + [anon_sym_BANG_EQ] = ACTIONS(433), + [anon_sym_LT_EQ_GT] = ACTIONS(435), + [anon_sym_EQ_EQ_EQ] = ACTIONS(435), + [anon_sym_BANG_EQ_EQ] = ACTIONS(435), + [anon_sym_EQ_TILDE] = ACTIONS(435), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(435), + [anon_sym_AMP] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(433), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_QMARK_COLON] = ACTIONS(435), + [anon_sym_STAR_STAR] = ACTIONS(435), + [anon_sym_ATinterface] = ACTIONS(435), + [anon_sym_interface] = ACTIONS(433), + [anon_sym_class] = ACTIONS(433), + [anon_sym_COMMA] = ACTIONS(435), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_RBRACE] = ACTIONS(435), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(433), + [anon_sym_do] = ACTIONS(433), + [anon_sym_while] = ACTIONS(433), + [anon_sym_for] = ACTIONS(433), + [anon_sym_if] = ACTIONS(433), + [anon_sym_else] = ACTIONS(433), + [anon_sym_return] = ACTIONS(433), + [anon_sym_SQUOTE] = ACTIONS(433), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(433), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(435), + [anon_sym_DOLLAR_SLASH] = ACTIONS(435), + [anon_sym_switch] = ACTIONS(433), + [anon_sym_case] = ACTIONS(433), + [anon_sym_default] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [anon_sym_try] = ACTIONS(433), + [anon_sym_int] = ACTIONS(433), + [anon_sym_boolean] = ACTIONS(433), + [anon_sym_char] = ACTIONS(433), + [anon_sym_short] = ACTIONS(433), + [anon_sym_long] = ACTIONS(433), + [anon_sym_float] = ACTIONS(433), + [anon_sym_double] = ACTIONS(433), + [anon_sym_void] = ACTIONS(433), + [anon_sym_public] = ACTIONS(433), + [anon_sym_protected] = ACTIONS(433), + [anon_sym_private] = ACTIONS(433), + [anon_sym_static] = ACTIONS(433), + [anon_sym_final] = ACTIONS(433), + [anon_sym_synchronized] = ACTIONS(433), + }, + [390] = { + [sym_comment] = STATE(390), + [sym_groovy_doc] = STATE(390), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(726), + [anon_sym_DOT_AT] = ACTIONS(726), + [anon_sym_QMARK_DOT] = ACTIONS(726), + [anon_sym_STAR_DOT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(730), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(732), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_LT_LT] = ACTIONS(736), + [anon_sym_GT_GT] = ACTIONS(738), + [anon_sym_GT_GT_GT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(738), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_in] = ACTIONS(730), + [anon_sym_BANGin] = ACTIONS(730), + [anon_sym_instanceof] = ACTIONS(730), + [anon_sym_BANGinstanceof] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_case] = ACTIONS(351), + [anon_sym_default] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [391] = { + [sym_comment] = STATE(391), + [sym_groovy_doc] = STATE(391), + [sym_identifier] = ACTIONS(413), + [anon_sym_break] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_DOT_AMP] = ACTIONS(726), + [anon_sym_DOT_AT] = ACTIONS(726), + [anon_sym_QMARK_DOT] = ACTIONS(726), + [anon_sym_STAR_DOT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_import] = ACTIONS(413), + [anon_sym_as] = ACTIONS(413), + [anon_sym_package] = ACTIONS(413), + [anon_sym_AT] = ACTIONS(413), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_PLUS_PLUS] = ACTIONS(415), + [anon_sym_DASH_DASH] = ACTIONS(415), + [anon_sym_PERCENT] = ACTIONS(415), + [anon_sym_SLASH] = ACTIONS(413), + [anon_sym_PLUS] = ACTIONS(413), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(415), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_GT_GT_GT] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(413), + [anon_sym_DOT_DOT_LT] = ACTIONS(415), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(415), + [anon_sym_LT_DOT_DOT] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_EQ] = ACTIONS(413), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_in] = ACTIONS(413), + [anon_sym_BANGin] = ACTIONS(413), + [anon_sym_instanceof] = ACTIONS(413), + [anon_sym_BANGinstanceof] = ACTIONS(415), + [anon_sym_EQ_EQ] = ACTIONS(413), + [anon_sym_BANG_EQ] = ACTIONS(413), + [anon_sym_LT_EQ_GT] = ACTIONS(415), + [anon_sym_EQ_EQ_EQ] = ACTIONS(415), + [anon_sym_BANG_EQ_EQ] = ACTIONS(415), + [anon_sym_EQ_TILDE] = ACTIONS(415), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_QMARK_COLON] = ACTIONS(415), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(415), + [anon_sym_interface] = ACTIONS(413), + [anon_sym_class] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(413), + [anon_sym_do] = ACTIONS(413), + [anon_sym_while] = ACTIONS(413), + [anon_sym_for] = ACTIONS(413), + [anon_sym_if] = ACTIONS(413), + [anon_sym_else] = ACTIONS(413), + [anon_sym_return] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(415), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_DOLLAR_SLASH] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(413), + [anon_sym_case] = ACTIONS(413), + [anon_sym_default] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(413), + [anon_sym_try] = ACTIONS(413), + [anon_sym_int] = ACTIONS(413), + [anon_sym_boolean] = ACTIONS(413), + [anon_sym_char] = ACTIONS(413), + [anon_sym_short] = ACTIONS(413), + [anon_sym_long] = ACTIONS(413), + [anon_sym_float] = ACTIONS(413), + [anon_sym_double] = ACTIONS(413), + [anon_sym_void] = ACTIONS(413), + [anon_sym_public] = ACTIONS(413), + [anon_sym_protected] = ACTIONS(413), + [anon_sym_private] = ACTIONS(413), + [anon_sym_static] = ACTIONS(413), + [anon_sym_final] = ACTIONS(413), + [anon_sym_synchronized] = ACTIONS(413), + }, + [392] = { + [sym_comment] = STATE(392), + [sym_groovy_doc] = STATE(392), + [sym_identifier] = ACTIONS(363), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(365), + [anon_sym_DOT_AMP] = ACTIONS(365), + [anon_sym_DOT_AT] = ACTIONS(365), + [anon_sym_QMARK_DOT] = ACTIONS(365), + [anon_sym_STAR_DOT] = ACTIONS(365), + [anon_sym_STAR] = ACTIONS(363), + [anon_sym_import] = ACTIONS(363), + [anon_sym_as] = ACTIONS(363), + [anon_sym_package] = ACTIONS(363), + [anon_sym_AT] = ACTIONS(363), + [anon_sym_assert] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(365), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(363), + [anon_sym_DASH] = ACTIONS(363), + [anon_sym_LT_LT] = ACTIONS(365), + [anon_sym_GT_GT] = ACTIONS(363), + [anon_sym_GT_GT_GT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(363), + [anon_sym_DOT_DOT_LT] = ACTIONS(365), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(365), + [anon_sym_LT_DOT_DOT] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(363), + [anon_sym_LT_EQ] = ACTIONS(363), + [anon_sym_GT] = ACTIONS(363), + [anon_sym_GT_EQ] = ACTIONS(365), + [anon_sym_in] = ACTIONS(363), + [anon_sym_BANGin] = ACTIONS(363), + [anon_sym_instanceof] = ACTIONS(363), + [anon_sym_BANGinstanceof] = ACTIONS(365), + [anon_sym_EQ_EQ] = ACTIONS(363), + [anon_sym_BANG_EQ] = ACTIONS(363), + [anon_sym_LT_EQ_GT] = ACTIONS(365), + [anon_sym_EQ_EQ_EQ] = ACTIONS(365), + [anon_sym_BANG_EQ_EQ] = ACTIONS(365), + [anon_sym_EQ_TILDE] = ACTIONS(365), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(365), + [anon_sym_AMP] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(363), + [anon_sym_AMP_AMP] = ACTIONS(365), + [anon_sym_PIPE_PIPE] = ACTIONS(365), + [anon_sym_QMARK_COLON] = ACTIONS(365), + [anon_sym_STAR_STAR] = ACTIONS(365), + [anon_sym_ATinterface] = ACTIONS(365), + [anon_sym_interface] = ACTIONS(363), + [anon_sym_class] = ACTIONS(363), + [anon_sym_COMMA] = ACTIONS(365), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_RBRACE] = ACTIONS(365), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(363), + [anon_sym_do] = ACTIONS(363), + [anon_sym_while] = ACTIONS(363), + [anon_sym_for] = ACTIONS(363), + [anon_sym_if] = ACTIONS(363), + [anon_sym_else] = ACTIONS(363), + [anon_sym_return] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(363), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(365), + [anon_sym_DQUOTE] = ACTIONS(363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(365), + [anon_sym_DOLLAR_SLASH] = ACTIONS(365), + [anon_sym_switch] = ACTIONS(363), + [anon_sym_case] = ACTIONS(363), + [anon_sym_default] = ACTIONS(363), + [anon_sym_QMARK] = ACTIONS(363), + [anon_sym_try] = ACTIONS(363), + [anon_sym_int] = ACTIONS(363), + [anon_sym_boolean] = ACTIONS(363), + [anon_sym_char] = ACTIONS(363), + [anon_sym_short] = ACTIONS(363), + [anon_sym_long] = ACTIONS(363), + [anon_sym_float] = ACTIONS(363), + [anon_sym_double] = ACTIONS(363), + [anon_sym_void] = ACTIONS(363), + [anon_sym_public] = ACTIONS(363), + [anon_sym_protected] = ACTIONS(363), + [anon_sym_private] = ACTIONS(363), + [anon_sym_static] = ACTIONS(363), + [anon_sym_final] = ACTIONS(363), + [anon_sym_synchronized] = ACTIONS(363), + }, + [393] = { + [sym_comment] = STATE(393), + [sym_groovy_doc] = STATE(393), + [sym_identifier] = ACTIONS(421), + [anon_sym_break] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_SEMI] = ACTIONS(423), + [anon_sym_DOT_AMP] = ACTIONS(423), + [anon_sym_DOT_AT] = ACTIONS(423), + [anon_sym_QMARK_DOT] = ACTIONS(423), + [anon_sym_STAR_DOT] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(421), + [anon_sym_import] = ACTIONS(421), + [anon_sym_as] = ACTIONS(421), + [anon_sym_package] = ACTIONS(421), + [anon_sym_AT] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_PLUS_PLUS] = ACTIONS(423), + [anon_sym_DASH_DASH] = ACTIONS(423), + [anon_sym_PERCENT] = ACTIONS(423), + [anon_sym_SLASH] = ACTIONS(421), + [anon_sym_PLUS] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(421), + [anon_sym_LT_LT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(421), + [anon_sym_GT_GT_GT] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(421), + [anon_sym_DOT_DOT_LT] = ACTIONS(423), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(423), + [anon_sym_LT_DOT_DOT] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_LT_EQ] = ACTIONS(421), + [anon_sym_GT] = ACTIONS(421), + [anon_sym_GT_EQ] = ACTIONS(423), + [anon_sym_in] = ACTIONS(421), + [anon_sym_BANGin] = ACTIONS(421), + [anon_sym_instanceof] = ACTIONS(421), + [anon_sym_BANGinstanceof] = ACTIONS(423), + [anon_sym_EQ_EQ] = ACTIONS(421), + [anon_sym_BANG_EQ] = ACTIONS(421), + [anon_sym_LT_EQ_GT] = ACTIONS(423), + [anon_sym_EQ_EQ_EQ] = ACTIONS(423), + [anon_sym_BANG_EQ_EQ] = ACTIONS(423), + [anon_sym_EQ_TILDE] = ACTIONS(423), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(421), + [anon_sym_CARET] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_AMP_AMP] = ACTIONS(423), + [anon_sym_PIPE_PIPE] = ACTIONS(423), + [anon_sym_QMARK_COLON] = ACTIONS(423), + [anon_sym_STAR_STAR] = ACTIONS(423), + [anon_sym_ATinterface] = ACTIONS(423), + [anon_sym_interface] = ACTIONS(421), + [anon_sym_class] = ACTIONS(421), + [anon_sym_COMMA] = ACTIONS(423), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_RBRACE] = ACTIONS(423), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(421), + [anon_sym_do] = ACTIONS(421), + [anon_sym_while] = ACTIONS(421), + [anon_sym_for] = ACTIONS(421), + [anon_sym_if] = ACTIONS(421), + [anon_sym_else] = ACTIONS(421), + [anon_sym_return] = ACTIONS(421), + [anon_sym_SQUOTE] = ACTIONS(421), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(423), + [anon_sym_DQUOTE] = ACTIONS(421), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(423), + [anon_sym_DOLLAR_SLASH] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(421), + [anon_sym_case] = ACTIONS(421), + [anon_sym_default] = ACTIONS(421), + [anon_sym_QMARK] = ACTIONS(421), + [anon_sym_try] = ACTIONS(421), + [anon_sym_int] = ACTIONS(421), + [anon_sym_boolean] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_short] = ACTIONS(421), + [anon_sym_long] = ACTIONS(421), + [anon_sym_float] = ACTIONS(421), + [anon_sym_double] = ACTIONS(421), + [anon_sym_void] = ACTIONS(421), + [anon_sym_public] = ACTIONS(421), + [anon_sym_protected] = ACTIONS(421), + [anon_sym_private] = ACTIONS(421), + [anon_sym_static] = ACTIONS(421), + [anon_sym_final] = ACTIONS(421), + [anon_sym_synchronized] = ACTIONS(421), + }, + [394] = { + [sym_comment] = STATE(394), + [sym_groovy_doc] = STATE(394), + [sym_identifier] = ACTIONS(413), + [anon_sym_break] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_DOT_AMP] = ACTIONS(415), + [anon_sym_DOT_AT] = ACTIONS(415), + [anon_sym_QMARK_DOT] = ACTIONS(415), + [anon_sym_STAR_DOT] = ACTIONS(415), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_import] = ACTIONS(413), + [anon_sym_as] = ACTIONS(413), + [anon_sym_package] = ACTIONS(413), + [anon_sym_AT] = ACTIONS(413), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_PLUS_PLUS] = ACTIONS(415), + [anon_sym_DASH_DASH] = ACTIONS(415), + [anon_sym_PERCENT] = ACTIONS(415), + [anon_sym_SLASH] = ACTIONS(413), + [anon_sym_PLUS] = ACTIONS(413), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(415), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_GT_GT_GT] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(413), + [anon_sym_DOT_DOT_LT] = ACTIONS(415), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(415), + [anon_sym_LT_DOT_DOT] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_EQ] = ACTIONS(413), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_in] = ACTIONS(413), + [anon_sym_BANGin] = ACTIONS(413), + [anon_sym_instanceof] = ACTIONS(413), + [anon_sym_BANGinstanceof] = ACTIONS(415), + [anon_sym_EQ_EQ] = ACTIONS(413), + [anon_sym_BANG_EQ] = ACTIONS(413), + [anon_sym_LT_EQ_GT] = ACTIONS(415), + [anon_sym_EQ_EQ_EQ] = ACTIONS(415), + [anon_sym_BANG_EQ_EQ] = ACTIONS(415), + [anon_sym_EQ_TILDE] = ACTIONS(415), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_QMARK_COLON] = ACTIONS(415), + [anon_sym_STAR_STAR] = ACTIONS(415), + [anon_sym_ATinterface] = ACTIONS(415), + [anon_sym_interface] = ACTIONS(413), + [anon_sym_class] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(413), + [anon_sym_do] = ACTIONS(413), + [anon_sym_while] = ACTIONS(413), + [anon_sym_for] = ACTIONS(413), + [anon_sym_if] = ACTIONS(413), + [anon_sym_else] = ACTIONS(413), + [anon_sym_return] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(415), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_DOLLAR_SLASH] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(413), + [anon_sym_case] = ACTIONS(413), + [anon_sym_default] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(413), + [anon_sym_try] = ACTIONS(413), + [anon_sym_int] = ACTIONS(413), + [anon_sym_boolean] = ACTIONS(413), + [anon_sym_char] = ACTIONS(413), + [anon_sym_short] = ACTIONS(413), + [anon_sym_long] = ACTIONS(413), + [anon_sym_float] = ACTIONS(413), + [anon_sym_double] = ACTIONS(413), + [anon_sym_void] = ACTIONS(413), + [anon_sym_public] = ACTIONS(413), + [anon_sym_protected] = ACTIONS(413), + [anon_sym_private] = ACTIONS(413), + [anon_sym_static] = ACTIONS(413), + [anon_sym_final] = ACTIONS(413), + [anon_sym_synchronized] = ACTIONS(413), + }, + [395] = { + [sym_comment] = STATE(395), + [sym_groovy_doc] = STATE(395), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(726), + [anon_sym_DOT_AT] = ACTIONS(726), + [anon_sym_QMARK_DOT] = ACTIONS(726), + [anon_sym_STAR_DOT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(732), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_LT_LT] = ACTIONS(353), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_GT_GT_GT] = ACTIONS(353), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_case] = ACTIONS(351), + [anon_sym_default] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [396] = { + [sym_comment] = STATE(396), + [sym_groovy_doc] = STATE(396), + [ts_builtin_sym_end] = ACTIONS(475), + [sym_identifier] = ACTIONS(473), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_DOT_AMP] = ACTIONS(686), + [anon_sym_DOT_AT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(686), + [anon_sym_STAR_DOT] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_import] = ACTIONS(473), + [anon_sym_as] = ACTIONS(690), + [anon_sym_package] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(473), + [anon_sym_assert] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(696), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_GT_GT_GT] = ACTIONS(696), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_in] = ACTIONS(690), + [anon_sym_BANGin] = ACTIONS(690), + [anon_sym_instanceof] = ACTIONS(690), + [anon_sym_BANGinstanceof] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(702), + [anon_sym_BANG_EQ] = ACTIONS(702), + [anon_sym_LT_EQ_GT] = ACTIONS(704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(704), + [anon_sym_EQ_TILDE] = ACTIONS(704), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(704), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(710), + [anon_sym_AMP_AMP] = ACTIONS(712), + [anon_sym_PIPE_PIPE] = ACTIONS(714), + [anon_sym_QMARK_COLON] = ACTIONS(716), + [anon_sym_STAR_STAR] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(475), + [anon_sym_interface] = ACTIONS(473), + [anon_sym_class] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(475), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(473), + [anon_sym_do] = ACTIONS(473), + [anon_sym_while] = ACTIONS(473), + [anon_sym_for] = ACTIONS(473), + [anon_sym_if] = ACTIONS(473), + [anon_sym_else] = ACTIONS(473), + [anon_sym_pipeline] = ACTIONS(473), + [anon_sym_return] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_SLASH] = ACTIONS(475), + [anon_sym_switch] = ACTIONS(473), + [anon_sym_QMARK] = ACTIONS(722), + [anon_sym_try] = ACTIONS(473), + [anon_sym_catch] = ACTIONS(473), + [anon_sym_finally] = ACTIONS(473), + [anon_sym_int] = ACTIONS(473), + [anon_sym_boolean] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_short] = ACTIONS(473), + [anon_sym_long] = ACTIONS(473), + [anon_sym_float] = ACTIONS(473), + [anon_sym_double] = ACTIONS(473), + [anon_sym_void] = ACTIONS(473), + [anon_sym_public] = ACTIONS(473), + [anon_sym_protected] = ACTIONS(473), + [anon_sym_private] = ACTIONS(473), + [anon_sym_static] = ACTIONS(473), + [anon_sym_final] = ACTIONS(473), + [anon_sym_synchronized] = ACTIONS(473), + }, + [397] = { + [sym_comment] = STATE(397), + [sym_groovy_doc] = STATE(397), + [sym_identifier] = ACTIONS(417), + [anon_sym_break] = ACTIONS(417), + [anon_sym_continue] = ACTIONS(417), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_DOT_AMP] = ACTIONS(419), + [anon_sym_DOT_AT] = ACTIONS(419), + [anon_sym_QMARK_DOT] = ACTIONS(419), + [anon_sym_STAR_DOT] = ACTIONS(419), + [anon_sym_STAR] = ACTIONS(417), + [anon_sym_import] = ACTIONS(417), + [anon_sym_as] = ACTIONS(417), + [anon_sym_package] = ACTIONS(417), + [anon_sym_AT] = ACTIONS(417), + [anon_sym_assert] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(417), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(417), + [anon_sym_LT_LT] = ACTIONS(419), + [anon_sym_GT_GT] = ACTIONS(417), + [anon_sym_GT_GT_GT] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(417), + [anon_sym_DOT_DOT_LT] = ACTIONS(419), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(419), + [anon_sym_LT_DOT_DOT] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_LT_EQ] = ACTIONS(417), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_in] = ACTIONS(417), + [anon_sym_BANGin] = ACTIONS(417), + [anon_sym_instanceof] = ACTIONS(417), + [anon_sym_BANGinstanceof] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(417), + [anon_sym_BANG_EQ] = ACTIONS(417), + [anon_sym_LT_EQ_GT] = ACTIONS(419), + [anon_sym_EQ_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ_EQ] = ACTIONS(419), + [anon_sym_EQ_TILDE] = ACTIONS(419), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(419), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_CARET] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_QMARK_COLON] = ACTIONS(419), + [anon_sym_STAR_STAR] = ACTIONS(419), + [anon_sym_ATinterface] = ACTIONS(419), + [anon_sym_interface] = ACTIONS(417), + [anon_sym_class] = ACTIONS(417), + [anon_sym_COMMA] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(419), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(417), + [anon_sym_do] = ACTIONS(417), + [anon_sym_while] = ACTIONS(417), + [anon_sym_for] = ACTIONS(417), + [anon_sym_if] = ACTIONS(417), + [anon_sym_else] = ACTIONS(417), + [anon_sym_return] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(419), + [anon_sym_DQUOTE] = ACTIONS(417), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(419), + [anon_sym_DOLLAR_SLASH] = ACTIONS(419), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_case] = ACTIONS(417), + [anon_sym_default] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(417), + [anon_sym_try] = ACTIONS(417), + [anon_sym_int] = ACTIONS(417), + [anon_sym_boolean] = ACTIONS(417), + [anon_sym_char] = ACTIONS(417), + [anon_sym_short] = ACTIONS(417), + [anon_sym_long] = ACTIONS(417), + [anon_sym_float] = ACTIONS(417), + [anon_sym_double] = ACTIONS(417), + [anon_sym_void] = ACTIONS(417), + [anon_sym_public] = ACTIONS(417), + [anon_sym_protected] = ACTIONS(417), + [anon_sym_private] = ACTIONS(417), + [anon_sym_static] = ACTIONS(417), + [anon_sym_final] = ACTIONS(417), + [anon_sym_synchronized] = ACTIONS(417), + }, + [398] = { + [sym_comment] = STATE(398), + [sym_groovy_doc] = STATE(398), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(726), + [anon_sym_DOT_AT] = ACTIONS(726), + [anon_sym_QMARK_DOT] = ACTIONS(726), + [anon_sym_STAR_DOT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(732), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LT_LT] = ACTIONS(353), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_GT_GT_GT] = ACTIONS(353), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_case] = ACTIONS(351), + [anon_sym_default] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [399] = { + [sym_comment] = STATE(399), + [sym_groovy_doc] = STATE(399), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(726), + [anon_sym_DOT_AT] = ACTIONS(726), + [anon_sym_QMARK_DOT] = ACTIONS(726), + [anon_sym_STAR_DOT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(732), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_LT_LT] = ACTIONS(736), + [anon_sym_GT_GT] = ACTIONS(738), + [anon_sym_GT_GT_GT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(738), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_case] = ACTIONS(351), + [anon_sym_default] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [400] = { + [sym_comment] = STATE(400), + [sym_groovy_doc] = STATE(400), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(726), + [anon_sym_DOT_AT] = ACTIONS(726), + [anon_sym_QMARK_DOT] = ACTIONS(726), + [anon_sym_STAR_DOT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(353), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LT_LT] = ACTIONS(353), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_GT_GT_GT] = ACTIONS(353), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_case] = ACTIONS(351), + [anon_sym_default] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [401] = { + [sym_comment] = STATE(401), + [sym_groovy_doc] = STATE(401), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(726), + [anon_sym_DOT_AT] = ACTIONS(726), + [anon_sym_QMARK_DOT] = ACTIONS(726), + [anon_sym_STAR_DOT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(730), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(732), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_LT_LT] = ACTIONS(736), + [anon_sym_GT_GT] = ACTIONS(738), + [anon_sym_GT_GT_GT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(738), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_in] = ACTIONS(730), + [anon_sym_BANGin] = ACTIONS(730), + [anon_sym_instanceof] = ACTIONS(730), + [anon_sym_BANGinstanceof] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_LT_EQ_GT] = ACTIONS(744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(744), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_case] = ACTIONS(351), + [anon_sym_default] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [402] = { + [sym_comment] = STATE(402), + [sym_groovy_doc] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(269), + [sym_identifier] = ACTIONS(267), + [anon_sym_break] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(267), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_DOT_AMP] = ACTIONS(269), + [anon_sym_DOT_AT] = ACTIONS(269), + [anon_sym_QMARK_DOT] = ACTIONS(269), + [anon_sym_STAR_DOT] = ACTIONS(269), + [anon_sym_STAR] = ACTIONS(267), + [anon_sym_import] = ACTIONS(267), + [anon_sym_as] = ACTIONS(267), + [anon_sym_package] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(267), + [anon_sym_assert] = ACTIONS(267), + [anon_sym_PLUS_PLUS] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(269), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_GT_GT] = ACTIONS(267), + [anon_sym_GT_GT_GT] = ACTIONS(269), + [anon_sym_DOT_DOT] = ACTIONS(267), + [anon_sym_DOT_DOT_LT] = ACTIONS(269), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(269), + [anon_sym_LT_DOT_DOT] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(267), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_in] = ACTIONS(267), + [anon_sym_BANGin] = ACTIONS(267), + [anon_sym_instanceof] = ACTIONS(267), + [anon_sym_BANGinstanceof] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(267), + [anon_sym_BANG_EQ] = ACTIONS(267), + [anon_sym_LT_EQ_GT] = ACTIONS(269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(269), + [anon_sym_EQ_TILDE] = ACTIONS(269), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(267), + [anon_sym_AMP_AMP] = ACTIONS(269), + [anon_sym_PIPE_PIPE] = ACTIONS(269), + [anon_sym_QMARK_COLON] = ACTIONS(269), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_ATinterface] = ACTIONS(269), + [anon_sym_interface] = ACTIONS(267), + [anon_sym_class] = ACTIONS(267), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(269), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(267), + [anon_sym_do] = ACTIONS(267), + [anon_sym_while] = ACTIONS(267), + [anon_sym_for] = ACTIONS(267), + [anon_sym_if] = ACTIONS(267), + [anon_sym_else] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(269), + [anon_sym_pipeline] = ACTIONS(267), + [anon_sym_return] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(267), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(267), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(269), + [anon_sym_DOLLAR_SLASH] = ACTIONS(269), + [anon_sym_switch] = ACTIONS(267), + [anon_sym_QMARK] = ACTIONS(267), + [anon_sym_try] = ACTIONS(267), + [anon_sym_int] = ACTIONS(267), + [anon_sym_boolean] = ACTIONS(267), + [anon_sym_char] = ACTIONS(267), + [anon_sym_short] = ACTIONS(267), + [anon_sym_long] = ACTIONS(267), + [anon_sym_float] = ACTIONS(267), + [anon_sym_double] = ACTIONS(267), + [anon_sym_void] = ACTIONS(267), + [anon_sym_public] = ACTIONS(267), + [anon_sym_protected] = ACTIONS(267), + [anon_sym_private] = ACTIONS(267), + [anon_sym_static] = ACTIONS(267), + [anon_sym_final] = ACTIONS(267), + [anon_sym_synchronized] = ACTIONS(267), + }, + [403] = { + [sym_comment] = STATE(403), + [sym_groovy_doc] = STATE(403), + [ts_builtin_sym_end] = ACTIONS(493), + [sym_identifier] = ACTIONS(491), + [anon_sym_break] = ACTIONS(491), + [anon_sym_continue] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(493), + [anon_sym_DOT_AMP] = ACTIONS(686), + [anon_sym_DOT_AT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(686), + [anon_sym_STAR_DOT] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_import] = ACTIONS(491), + [anon_sym_as] = ACTIONS(690), + [anon_sym_package] = ACTIONS(491), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_assert] = ACTIONS(491), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(696), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_GT_GT_GT] = ACTIONS(696), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_in] = ACTIONS(690), + [anon_sym_BANGin] = ACTIONS(690), + [anon_sym_instanceof] = ACTIONS(690), + [anon_sym_BANGinstanceof] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(702), + [anon_sym_BANG_EQ] = ACTIONS(702), + [anon_sym_LT_EQ_GT] = ACTIONS(704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(704), + [anon_sym_EQ_TILDE] = ACTIONS(704), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(704), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(710), + [anon_sym_AMP_AMP] = ACTIONS(712), + [anon_sym_PIPE_PIPE] = ACTIONS(714), + [anon_sym_QMARK_COLON] = ACTIONS(716), + [anon_sym_STAR_STAR] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(493), + [anon_sym_interface] = ACTIONS(491), + [anon_sym_class] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(493), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(491), + [anon_sym_do] = ACTIONS(491), + [anon_sym_while] = ACTIONS(491), + [anon_sym_for] = ACTIONS(491), + [anon_sym_if] = ACTIONS(491), + [anon_sym_else] = ACTIONS(491), + [anon_sym_pipeline] = ACTIONS(491), + [anon_sym_return] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(491), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(491), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(493), + [anon_sym_DOLLAR_SLASH] = ACTIONS(493), + [anon_sym_switch] = ACTIONS(491), + [anon_sym_QMARK] = ACTIONS(722), + [anon_sym_try] = ACTIONS(491), + [anon_sym_catch] = ACTIONS(491), + [anon_sym_finally] = ACTIONS(491), + [anon_sym_int] = ACTIONS(491), + [anon_sym_boolean] = ACTIONS(491), + [anon_sym_char] = ACTIONS(491), + [anon_sym_short] = ACTIONS(491), + [anon_sym_long] = ACTIONS(491), + [anon_sym_float] = ACTIONS(491), + [anon_sym_double] = ACTIONS(491), + [anon_sym_void] = ACTIONS(491), + [anon_sym_public] = ACTIONS(491), + [anon_sym_protected] = ACTIONS(491), + [anon_sym_private] = ACTIONS(491), + [anon_sym_static] = ACTIONS(491), + [anon_sym_final] = ACTIONS(491), + [anon_sym_synchronized] = ACTIONS(491), + }, + [404] = { + [sym_comment] = STATE(404), + [sym_groovy_doc] = STATE(404), + [aux_sym__juxt_argument_list_repeat1] = STATE(1117), + [ts_builtin_sym_end] = ACTIONS(289), + [sym_identifier] = ACTIONS(287), + [anon_sym_break] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_DOT_AMP] = ACTIONS(764), + [anon_sym_DOT_AT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(764), + [anon_sym_STAR_DOT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_import] = ACTIONS(287), + [anon_sym_as] = ACTIONS(768), + [anon_sym_package] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_assert] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(289), + [anon_sym_DASH_DASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_GT_GT_GT] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(776), + [anon_sym_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_in] = ACTIONS(768), + [anon_sym_BANGin] = ACTIONS(768), + [anon_sym_instanceof] = ACTIONS(768), + [anon_sym_BANGinstanceof] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT_EQ_GT] = ACTIONS(782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_EQ_TILDE] = ACTIONS(782), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_QMARK_COLON] = ACTIONS(794), + [anon_sym_STAR_STAR] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(289), + [anon_sym_interface] = ACTIONS(287), + [anon_sym_class] = ACTIONS(287), + [anon_sym_COMMA] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(289), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(287), + [anon_sym_do] = ACTIONS(287), + [anon_sym_while] = ACTIONS(287), + [anon_sym_for] = ACTIONS(287), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(287), + [anon_sym_pipeline] = ACTIONS(287), + [anon_sym_return] = ACTIONS(287), + [anon_sym_SQUOTE] = ACTIONS(287), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR_SLASH] = ACTIONS(289), + [anon_sym_switch] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_try] = ACTIONS(287), + [anon_sym_int] = ACTIONS(287), + [anon_sym_boolean] = ACTIONS(287), + [anon_sym_char] = ACTIONS(287), + [anon_sym_short] = ACTIONS(287), + [anon_sym_long] = ACTIONS(287), + [anon_sym_float] = ACTIONS(287), + [anon_sym_double] = ACTIONS(287), + [anon_sym_void] = ACTIONS(287), + [anon_sym_public] = ACTIONS(287), + [anon_sym_protected] = ACTIONS(287), + [anon_sym_private] = ACTIONS(287), + [anon_sym_static] = ACTIONS(287), + [anon_sym_final] = ACTIONS(287), + [anon_sym_synchronized] = ACTIONS(287), + }, + [405] = { + [sym_comment] = STATE(405), + [sym_groovy_doc] = STATE(405), + [ts_builtin_sym_end] = ACTIONS(331), + [sym_identifier] = ACTIONS(329), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_DOT_AMP] = ACTIONS(331), + [anon_sym_DOT_AT] = ACTIONS(331), + [anon_sym_QMARK_DOT] = ACTIONS(331), + [anon_sym_STAR_DOT] = ACTIONS(331), + [anon_sym_STAR] = ACTIONS(329), + [anon_sym_import] = ACTIONS(329), + [anon_sym_as] = ACTIONS(329), + [anon_sym_package] = ACTIONS(329), + [anon_sym_AT] = ACTIONS(329), + [anon_sym_assert] = ACTIONS(329), + [anon_sym_PLUS_PLUS] = ACTIONS(331), + [anon_sym_DASH_DASH] = ACTIONS(331), + [anon_sym_PERCENT] = ACTIONS(331), + [anon_sym_SLASH] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(329), + [anon_sym_DASH] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(331), + [anon_sym_DOT_DOT] = ACTIONS(329), + [anon_sym_DOT_DOT_LT] = ACTIONS(331), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(331), + [anon_sym_LT_DOT_DOT] = ACTIONS(329), + [anon_sym_LT] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(329), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_GT_EQ] = ACTIONS(331), + [anon_sym_in] = ACTIONS(329), + [anon_sym_BANGin] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANGinstanceof] = ACTIONS(331), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_LT_EQ_GT] = ACTIONS(331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(331), + [anon_sym_EQ_TILDE] = ACTIONS(331), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(331), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(331), + [anon_sym_QMARK_COLON] = ACTIONS(331), + [anon_sym_STAR_STAR] = ACTIONS(331), + [anon_sym_ATinterface] = ACTIONS(331), + [anon_sym_interface] = ACTIONS(329), + [anon_sym_class] = ACTIONS(329), + [anon_sym_COMMA] = ACTIONS(331), + [anon_sym_LBRACE] = ACTIONS(331), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(329), + [anon_sym_do] = ACTIONS(329), + [anon_sym_while] = ACTIONS(329), + [anon_sym_for] = ACTIONS(329), + [anon_sym_if] = ACTIONS(329), + [anon_sym_else] = ACTIONS(329), + [anon_sym_COLON] = ACTIONS(802), + [anon_sym_pipeline] = ACTIONS(329), + [anon_sym_return] = ACTIONS(329), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(329), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(331), + [anon_sym_DOLLAR_SLASH] = ACTIONS(331), + [anon_sym_switch] = ACTIONS(329), + [anon_sym_QMARK] = ACTIONS(329), + [anon_sym_try] = ACTIONS(329), + [anon_sym_int] = ACTIONS(329), + [anon_sym_boolean] = ACTIONS(329), + [anon_sym_char] = ACTIONS(329), + [anon_sym_short] = ACTIONS(329), + [anon_sym_long] = ACTIONS(329), + [anon_sym_float] = ACTIONS(329), + [anon_sym_double] = ACTIONS(329), + [anon_sym_void] = ACTIONS(329), + [anon_sym_public] = ACTIONS(329), + [anon_sym_protected] = ACTIONS(329), + [anon_sym_private] = ACTIONS(329), + [anon_sym_static] = ACTIONS(329), + [anon_sym_final] = ACTIONS(329), + [anon_sym_synchronized] = ACTIONS(329), + }, + [406] = { + [sym_comment] = STATE(406), + [sym_groovy_doc] = STATE(406), + [ts_builtin_sym_end] = ACTIONS(261), + [sym_identifier] = ACTIONS(259), + [anon_sym_break] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(259), + [anon_sym_SEMI] = ACTIONS(261), + [anon_sym_DOT_AMP] = ACTIONS(261), + [anon_sym_DOT_AT] = ACTIONS(261), + [anon_sym_QMARK_DOT] = ACTIONS(261), + [anon_sym_STAR_DOT] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(259), + [anon_sym_import] = ACTIONS(259), + [anon_sym_as] = ACTIONS(259), + [anon_sym_package] = ACTIONS(259), + [anon_sym_AT] = ACTIONS(259), + [anon_sym_assert] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(261), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_GT_GT_GT] = ACTIONS(261), + [anon_sym_DOT_DOT] = ACTIONS(259), + [anon_sym_DOT_DOT_LT] = ACTIONS(261), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(261), + [anon_sym_LT_DOT_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(259), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_GT_EQ] = ACTIONS(261), + [anon_sym_in] = ACTIONS(259), + [anon_sym_BANGin] = ACTIONS(259), + [anon_sym_instanceof] = ACTIONS(259), + [anon_sym_BANGinstanceof] = ACTIONS(261), + [anon_sym_EQ_EQ] = ACTIONS(259), + [anon_sym_BANG_EQ] = ACTIONS(259), + [anon_sym_LT_EQ_GT] = ACTIONS(261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(261), + [anon_sym_BANG_EQ_EQ] = ACTIONS(261), + [anon_sym_EQ_TILDE] = ACTIONS(261), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_CARET] = ACTIONS(261), + [anon_sym_PIPE] = ACTIONS(259), + [anon_sym_AMP_AMP] = ACTIONS(261), + [anon_sym_PIPE_PIPE] = ACTIONS(261), + [anon_sym_QMARK_COLON] = ACTIONS(261), + [anon_sym_STAR_STAR] = ACTIONS(261), + [anon_sym_ATinterface] = ACTIONS(261), + [anon_sym_interface] = ACTIONS(259), + [anon_sym_class] = ACTIONS(259), + [anon_sym_COMMA] = ACTIONS(261), + [anon_sym_LBRACE] = ACTIONS(261), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(259), + [anon_sym_RPAREN] = ACTIONS(261), + [anon_sym_do] = ACTIONS(259), + [anon_sym_while] = ACTIONS(259), + [anon_sym_for] = ACTIONS(259), + [anon_sym_if] = ACTIONS(259), + [anon_sym_else] = ACTIONS(259), + [anon_sym_pipeline] = ACTIONS(259), + [anon_sym_return] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(261), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_SLASH] = ACTIONS(261), + [anon_sym_switch] = ACTIONS(259), + [anon_sym_QMARK] = ACTIONS(259), + [anon_sym_try] = ACTIONS(259), + [anon_sym_int] = ACTIONS(259), + [anon_sym_boolean] = ACTIONS(259), + [anon_sym_char] = ACTIONS(259), + [anon_sym_short] = ACTIONS(259), + [anon_sym_long] = ACTIONS(259), + [anon_sym_float] = ACTIONS(259), + [anon_sym_double] = ACTIONS(259), + [anon_sym_void] = ACTIONS(259), + [anon_sym_public] = ACTIONS(259), + [anon_sym_protected] = ACTIONS(259), + [anon_sym_private] = ACTIONS(259), + [anon_sym_static] = ACTIONS(259), + [anon_sym_final] = ACTIONS(259), + [anon_sym_synchronized] = ACTIONS(259), + }, + [407] = { + [sym_comment] = STATE(407), + [sym_groovy_doc] = STATE(407), + [ts_builtin_sym_end] = ACTIONS(503), + [sym_identifier] = ACTIONS(501), + [anon_sym_break] = ACTIONS(501), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_SEMI] = ACTIONS(503), + [anon_sym_DOT_AMP] = ACTIONS(686), + [anon_sym_DOT_AT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(686), + [anon_sym_STAR_DOT] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_import] = ACTIONS(501), + [anon_sym_as] = ACTIONS(690), + [anon_sym_package] = ACTIONS(501), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_assert] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(503), + [anon_sym_DASH_DASH] = ACTIONS(503), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(696), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_GT_GT_GT] = ACTIONS(696), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(696), + [anon_sym_LT_DOT_DOT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_in] = ACTIONS(690), + [anon_sym_BANGin] = ACTIONS(690), + [anon_sym_instanceof] = ACTIONS(690), + [anon_sym_BANGinstanceof] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(702), + [anon_sym_BANG_EQ] = ACTIONS(702), + [anon_sym_LT_EQ_GT] = ACTIONS(704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(704), + [anon_sym_EQ_TILDE] = ACTIONS(704), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(704), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(710), + [anon_sym_AMP_AMP] = ACTIONS(712), + [anon_sym_PIPE_PIPE] = ACTIONS(714), + [anon_sym_QMARK_COLON] = ACTIONS(716), + [anon_sym_STAR_STAR] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(503), + [anon_sym_interface] = ACTIONS(501), + [anon_sym_class] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(503), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(501), + [anon_sym_do] = ACTIONS(501), + [anon_sym_while] = ACTIONS(501), + [anon_sym_for] = ACTIONS(501), + [anon_sym_if] = ACTIONS(501), + [anon_sym_else] = ACTIONS(501), + [anon_sym_pipeline] = ACTIONS(501), + [anon_sym_return] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(503), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(503), + [anon_sym_DOLLAR_SLASH] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(501), + [anon_sym_QMARK] = ACTIONS(722), + [anon_sym_try] = ACTIONS(501), + [anon_sym_catch] = ACTIONS(501), + [anon_sym_finally] = ACTIONS(501), + [anon_sym_int] = ACTIONS(501), + [anon_sym_boolean] = ACTIONS(501), + [anon_sym_char] = ACTIONS(501), + [anon_sym_short] = ACTIONS(501), + [anon_sym_long] = ACTIONS(501), + [anon_sym_float] = ACTIONS(501), + [anon_sym_double] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_public] = ACTIONS(501), + [anon_sym_protected] = ACTIONS(501), + [anon_sym_private] = ACTIONS(501), + [anon_sym_static] = ACTIONS(501), + [anon_sym_final] = ACTIONS(501), + [anon_sym_synchronized] = ACTIONS(501), + }, + [408] = { + [sym_comment] = STATE(408), + [sym_groovy_doc] = STATE(408), + [sym_identifier] = ACTIONS(429), + [anon_sym_break] = ACTIONS(429), + [anon_sym_continue] = ACTIONS(429), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_DOT_AMP] = ACTIONS(431), + [anon_sym_DOT_AT] = ACTIONS(431), + [anon_sym_QMARK_DOT] = ACTIONS(431), + [anon_sym_STAR_DOT] = ACTIONS(431), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_import] = ACTIONS(429), + [anon_sym_as] = ACTIONS(429), + [anon_sym_package] = ACTIONS(429), + [anon_sym_AT] = ACTIONS(429), + [anon_sym_assert] = ACTIONS(429), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(431), + [anon_sym_GT_GT] = ACTIONS(429), + [anon_sym_GT_GT_GT] = ACTIONS(431), + [anon_sym_DOT_DOT] = ACTIONS(429), + [anon_sym_DOT_DOT_LT] = ACTIONS(431), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(431), + [anon_sym_LT_DOT_DOT] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LT_EQ] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_EQ] = ACTIONS(431), + [anon_sym_in] = ACTIONS(429), + [anon_sym_BANGin] = ACTIONS(429), + [anon_sym_instanceof] = ACTIONS(429), + [anon_sym_BANGinstanceof] = ACTIONS(431), + [anon_sym_EQ_EQ] = ACTIONS(429), + [anon_sym_BANG_EQ] = ACTIONS(429), + [anon_sym_LT_EQ_GT] = ACTIONS(431), + [anon_sym_EQ_EQ_EQ] = ACTIONS(431), + [anon_sym_BANG_EQ_EQ] = ACTIONS(431), + [anon_sym_EQ_TILDE] = ACTIONS(431), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(431), + [anon_sym_PIPE_PIPE] = ACTIONS(431), + [anon_sym_QMARK_COLON] = ACTIONS(431), + [anon_sym_STAR_STAR] = ACTIONS(431), + [anon_sym_ATinterface] = ACTIONS(431), + [anon_sym_interface] = ACTIONS(429), + [anon_sym_class] = ACTIONS(429), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_RBRACE] = ACTIONS(431), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(429), + [anon_sym_do] = ACTIONS(429), + [anon_sym_while] = ACTIONS(429), + [anon_sym_for] = ACTIONS(429), + [anon_sym_if] = ACTIONS(429), + [anon_sym_else] = ACTIONS(429), + [anon_sym_return] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(429), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(429), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(431), + [anon_sym_DOLLAR_SLASH] = ACTIONS(431), + [anon_sym_switch] = ACTIONS(429), + [anon_sym_case] = ACTIONS(429), + [anon_sym_default] = ACTIONS(429), + [anon_sym_QMARK] = ACTIONS(429), + [anon_sym_try] = ACTIONS(429), + [anon_sym_int] = ACTIONS(429), + [anon_sym_boolean] = ACTIONS(429), + [anon_sym_char] = ACTIONS(429), + [anon_sym_short] = ACTIONS(429), + [anon_sym_long] = ACTIONS(429), + [anon_sym_float] = ACTIONS(429), + [anon_sym_double] = ACTIONS(429), + [anon_sym_void] = ACTIONS(429), + [anon_sym_public] = ACTIONS(429), + [anon_sym_protected] = ACTIONS(429), + [anon_sym_private] = ACTIONS(429), + [anon_sym_static] = ACTIONS(429), + [anon_sym_final] = ACTIONS(429), + [anon_sym_synchronized] = ACTIONS(429), + }, + [409] = { + [sym_comment] = STATE(409), + [sym_groovy_doc] = STATE(409), + [sym_identifier] = ACTIONS(359), + [anon_sym_break] = ACTIONS(359), + [anon_sym_continue] = ACTIONS(359), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym_DOT_AMP] = ACTIONS(361), + [anon_sym_DOT_AT] = ACTIONS(361), + [anon_sym_QMARK_DOT] = ACTIONS(361), + [anon_sym_STAR_DOT] = ACTIONS(361), + [anon_sym_STAR] = ACTIONS(359), + [anon_sym_import] = ACTIONS(359), + [anon_sym_as] = ACTIONS(359), + [anon_sym_package] = ACTIONS(359), + [anon_sym_AT] = ACTIONS(359), + [anon_sym_assert] = ACTIONS(359), + [anon_sym_PLUS_PLUS] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(361), + [anon_sym_PERCENT] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(359), + [anon_sym_DASH] = ACTIONS(359), + [anon_sym_LT_LT] = ACTIONS(361), + [anon_sym_GT_GT] = ACTIONS(359), + [anon_sym_GT_GT_GT] = ACTIONS(361), + [anon_sym_DOT_DOT] = ACTIONS(359), + [anon_sym_DOT_DOT_LT] = ACTIONS(361), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(361), + [anon_sym_LT_DOT_DOT] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(359), + [anon_sym_LT_EQ] = ACTIONS(359), + [anon_sym_GT] = ACTIONS(359), + [anon_sym_GT_EQ] = ACTIONS(361), + [anon_sym_in] = ACTIONS(359), + [anon_sym_BANGin] = ACTIONS(359), + [anon_sym_instanceof] = ACTIONS(359), + [anon_sym_BANGinstanceof] = ACTIONS(361), + [anon_sym_EQ_EQ] = ACTIONS(359), + [anon_sym_BANG_EQ] = ACTIONS(359), + [anon_sym_LT_EQ_GT] = ACTIONS(361), + [anon_sym_EQ_EQ_EQ] = ACTIONS(361), + [anon_sym_BANG_EQ_EQ] = ACTIONS(361), + [anon_sym_EQ_TILDE] = ACTIONS(361), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(361), + [anon_sym_AMP] = ACTIONS(359), + [anon_sym_CARET] = ACTIONS(361), + [anon_sym_PIPE] = ACTIONS(359), + [anon_sym_AMP_AMP] = ACTIONS(361), + [anon_sym_PIPE_PIPE] = ACTIONS(361), + [anon_sym_QMARK_COLON] = ACTIONS(361), + [anon_sym_STAR_STAR] = ACTIONS(361), + [anon_sym_ATinterface] = ACTIONS(361), + [anon_sym_interface] = ACTIONS(359), + [anon_sym_class] = ACTIONS(359), + [anon_sym_COMMA] = ACTIONS(361), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_RBRACE] = ACTIONS(361), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(359), + [anon_sym_do] = ACTIONS(359), + [anon_sym_while] = ACTIONS(359), + [anon_sym_for] = ACTIONS(359), + [anon_sym_if] = ACTIONS(359), + [anon_sym_else] = ACTIONS(359), + [anon_sym_return] = ACTIONS(359), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(361), + [anon_sym_DOLLAR_SLASH] = ACTIONS(361), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(359), + [anon_sym_QMARK] = ACTIONS(359), + [anon_sym_try] = ACTIONS(359), + [anon_sym_int] = ACTIONS(359), + [anon_sym_boolean] = ACTIONS(359), + [anon_sym_char] = ACTIONS(359), + [anon_sym_short] = ACTIONS(359), + [anon_sym_long] = ACTIONS(359), + [anon_sym_float] = ACTIONS(359), + [anon_sym_double] = ACTIONS(359), + [anon_sym_void] = ACTIONS(359), + [anon_sym_public] = ACTIONS(359), + [anon_sym_protected] = ACTIONS(359), + [anon_sym_private] = ACTIONS(359), + [anon_sym_static] = ACTIONS(359), + [anon_sym_final] = ACTIONS(359), + [anon_sym_synchronized] = ACTIONS(359), + }, + [410] = { + [sym_comment] = STATE(410), + [sym_groovy_doc] = STATE(410), + [sym_identifier] = ACTIONS(401), + [anon_sym_break] = ACTIONS(401), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(403), + [anon_sym_DOT_AMP] = ACTIONS(403), + [anon_sym_DOT_AT] = ACTIONS(403), + [anon_sym_QMARK_DOT] = ACTIONS(403), + [anon_sym_STAR_DOT] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_import] = ACTIONS(401), + [anon_sym_as] = ACTIONS(401), + [anon_sym_package] = ACTIONS(401), + [anon_sym_AT] = ACTIONS(401), + [anon_sym_assert] = ACTIONS(401), + [anon_sym_PLUS_PLUS] = ACTIONS(403), + [anon_sym_DASH_DASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_GT_GT_GT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_LT] = ACTIONS(403), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(403), + [anon_sym_LT_DOT_DOT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(403), + [anon_sym_in] = ACTIONS(401), + [anon_sym_BANGin] = ACTIONS(401), + [anon_sym_instanceof] = ACTIONS(401), + [anon_sym_BANGinstanceof] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_LT_EQ_GT] = ACTIONS(403), + [anon_sym_EQ_EQ_EQ] = ACTIONS(403), + [anon_sym_BANG_EQ_EQ] = ACTIONS(403), + [anon_sym_EQ_TILDE] = ACTIONS(403), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_QMARK_COLON] = ACTIONS(403), + [anon_sym_STAR_STAR] = ACTIONS(403), + [anon_sym_ATinterface] = ACTIONS(403), + [anon_sym_interface] = ACTIONS(401), + [anon_sym_class] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(403), + [anon_sym_RBRACE] = ACTIONS(403), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(401), + [anon_sym_do] = ACTIONS(401), + [anon_sym_while] = ACTIONS(401), + [anon_sym_for] = ACTIONS(401), + [anon_sym_if] = ACTIONS(401), + [anon_sym_else] = ACTIONS(401), + [anon_sym_return] = ACTIONS(401), + [anon_sym_SQUOTE] = ACTIONS(401), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(403), + [anon_sym_DQUOTE] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_DOLLAR_SLASH] = ACTIONS(403), + [anon_sym_switch] = ACTIONS(401), + [anon_sym_case] = ACTIONS(401), + [anon_sym_default] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_try] = ACTIONS(401), + [anon_sym_int] = ACTIONS(401), + [anon_sym_boolean] = ACTIONS(401), + [anon_sym_char] = ACTIONS(401), + [anon_sym_short] = ACTIONS(401), + [anon_sym_long] = ACTIONS(401), + [anon_sym_float] = ACTIONS(401), + [anon_sym_double] = ACTIONS(401), + [anon_sym_void] = ACTIONS(401), + [anon_sym_public] = ACTIONS(401), + [anon_sym_protected] = ACTIONS(401), + [anon_sym_private] = ACTIONS(401), + [anon_sym_static] = ACTIONS(401), + [anon_sym_final] = ACTIONS(401), + [anon_sym_synchronized] = ACTIONS(401), + }, + [411] = { + [sym_comment] = STATE(411), + [sym_groovy_doc] = STATE(411), + [ts_builtin_sym_end] = ACTIONS(93), + [sym_identifier] = ACTIONS(99), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_DOT_AMP] = ACTIONS(93), + [anon_sym_DOT_AT] = ACTIONS(93), + [anon_sym_QMARK_DOT] = ACTIONS(93), + [anon_sym_STAR_DOT] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_import] = ACTIONS(99), + [anon_sym_as] = ACTIONS(99), + [anon_sym_package] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(93), + [anon_sym_SLASH] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(99), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_LT_LT] = ACTIONS(93), + [anon_sym_GT_GT] = ACTIONS(99), + [anon_sym_GT_GT_GT] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(99), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_in] = ACTIONS(99), + [anon_sym_BANGin] = ACTIONS(99), + [anon_sym_instanceof] = ACTIONS(99), + [anon_sym_BANGinstanceof] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_LT_EQ_GT] = ACTIONS(93), + [anon_sym_EQ_EQ_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ_EQ] = ACTIONS(93), + [anon_sym_EQ_TILDE] = ACTIONS(93), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(99), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(93), + [anon_sym_ATinterface] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(99), + [anon_sym_class] = ACTIONS(99), + [anon_sym_COMMA] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(93), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(99), + [anon_sym_do] = ACTIONS(99), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(99), + [anon_sym_if] = ACTIONS(99), + [anon_sym_else] = ACTIONS(99), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_pipeline] = ACTIONS(99), + [anon_sym_return] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_SLASH] = ACTIONS(93), + [anon_sym_switch] = ACTIONS(99), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_int] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_char] = ACTIONS(99), + [anon_sym_short] = ACTIONS(99), + [anon_sym_long] = ACTIONS(99), + [anon_sym_float] = ACTIONS(99), + [anon_sym_double] = ACTIONS(99), + [anon_sym_void] = ACTIONS(99), + [anon_sym_public] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_static] = ACTIONS(99), + [anon_sym_final] = ACTIONS(99), + [anon_sym_synchronized] = ACTIONS(99), + }, + [412] = { + [sym_comment] = STATE(412), + [sym_groovy_doc] = STATE(412), + [ts_builtin_sym_end] = ACTIONS(381), + [sym_identifier] = ACTIONS(379), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_DOT_AMP] = ACTIONS(381), + [anon_sym_DOT_AT] = ACTIONS(381), + [anon_sym_QMARK_DOT] = ACTIONS(381), + [anon_sym_STAR_DOT] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(379), + [anon_sym_import] = ACTIONS(379), + [anon_sym_as] = ACTIONS(379), + [anon_sym_package] = ACTIONS(379), + [anon_sym_AT] = ACTIONS(379), + [anon_sym_assert] = ACTIONS(379), + [anon_sym_PLUS_PLUS] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(379), + [anon_sym_DASH] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(379), + [anon_sym_GT_GT_GT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_LT] = ACTIONS(381), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(381), + [anon_sym_LT_DOT_DOT] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_in] = ACTIONS(379), + [anon_sym_BANGin] = ACTIONS(379), + [anon_sym_instanceof] = ACTIONS(379), + [anon_sym_BANGinstanceof] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT_EQ_GT] = ACTIONS(381), + [anon_sym_EQ_EQ_EQ] = ACTIONS(381), + [anon_sym_BANG_EQ_EQ] = ACTIONS(381), + [anon_sym_EQ_TILDE] = ACTIONS(381), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [anon_sym_QMARK_COLON] = ACTIONS(381), + [anon_sym_STAR_STAR] = ACTIONS(381), + [anon_sym_ATinterface] = ACTIONS(381), + [anon_sym_interface] = ACTIONS(379), + [anon_sym_class] = ACTIONS(379), + [anon_sym_COMMA] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(381), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(381), + [anon_sym_do] = ACTIONS(379), + [anon_sym_while] = ACTIONS(379), + [anon_sym_for] = ACTIONS(379), + [anon_sym_if] = ACTIONS(379), + [anon_sym_else] = ACTIONS(379), + [anon_sym_pipeline] = ACTIONS(379), + [anon_sym_return] = ACTIONS(379), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(381), + [anon_sym_DOLLAR_SLASH] = ACTIONS(381), + [anon_sym_switch] = ACTIONS(379), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_try] = ACTIONS(379), + [anon_sym_int] = ACTIONS(379), + [anon_sym_boolean] = ACTIONS(379), + [anon_sym_char] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [anon_sym_long] = ACTIONS(379), + [anon_sym_float] = ACTIONS(379), + [anon_sym_double] = ACTIONS(379), + [anon_sym_void] = ACTIONS(379), + [anon_sym_public] = ACTIONS(379), + [anon_sym_protected] = ACTIONS(379), + [anon_sym_private] = ACTIONS(379), + [anon_sym_static] = ACTIONS(379), + [anon_sym_final] = ACTIONS(379), + [anon_sym_synchronized] = ACTIONS(379), + }, + [413] = { + [sym_comment] = STATE(413), + [sym_groovy_doc] = STATE(413), + [sym_identifier] = ACTIONS(329), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_DOT_AMP] = ACTIONS(331), + [anon_sym_DOT_AT] = ACTIONS(331), + [anon_sym_QMARK_DOT] = ACTIONS(331), + [anon_sym_STAR_DOT] = ACTIONS(331), + [anon_sym_STAR] = ACTIONS(329), + [anon_sym_import] = ACTIONS(329), + [anon_sym_as] = ACTIONS(329), + [anon_sym_package] = ACTIONS(329), + [anon_sym_AT] = ACTIONS(329), + [anon_sym_assert] = ACTIONS(329), + [anon_sym_PLUS_PLUS] = ACTIONS(331), + [anon_sym_DASH_DASH] = ACTIONS(331), + [anon_sym_PERCENT] = ACTIONS(331), + [anon_sym_SLASH] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(329), + [anon_sym_DASH] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(331), + [anon_sym_DOT_DOT] = ACTIONS(329), + [anon_sym_DOT_DOT_LT] = ACTIONS(331), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(331), + [anon_sym_LT_DOT_DOT] = ACTIONS(329), + [anon_sym_LT] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(329), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_GT_EQ] = ACTIONS(331), + [anon_sym_in] = ACTIONS(329), + [anon_sym_BANGin] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANGinstanceof] = ACTIONS(331), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_LT_EQ_GT] = ACTIONS(331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(331), + [anon_sym_EQ_TILDE] = ACTIONS(331), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(331), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(331), + [anon_sym_QMARK_COLON] = ACTIONS(331), + [anon_sym_STAR_STAR] = ACTIONS(331), + [anon_sym_ATinterface] = ACTIONS(331), + [anon_sym_interface] = ACTIONS(329), + [anon_sym_class] = ACTIONS(329), + [anon_sym_COMMA] = ACTIONS(331), + [anon_sym_LBRACE] = ACTIONS(331), + [anon_sym_RBRACE] = ACTIONS(331), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(329), + [anon_sym_do] = ACTIONS(329), + [anon_sym_while] = ACTIONS(329), + [anon_sym_for] = ACTIONS(329), + [anon_sym_if] = ACTIONS(329), + [anon_sym_else] = ACTIONS(329), + [anon_sym_return] = ACTIONS(329), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(329), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(331), + [anon_sym_DOLLAR_SLASH] = ACTIONS(331), + [anon_sym_switch] = ACTIONS(329), + [anon_sym_case] = ACTIONS(329), + [anon_sym_default] = ACTIONS(329), + [anon_sym_QMARK] = ACTIONS(329), + [anon_sym_try] = ACTIONS(329), + [anon_sym_int] = ACTIONS(329), + [anon_sym_boolean] = ACTIONS(329), + [anon_sym_char] = ACTIONS(329), + [anon_sym_short] = ACTIONS(329), + [anon_sym_long] = ACTIONS(329), + [anon_sym_float] = ACTIONS(329), + [anon_sym_double] = ACTIONS(329), + [anon_sym_void] = ACTIONS(329), + [anon_sym_public] = ACTIONS(329), + [anon_sym_protected] = ACTIONS(329), + [anon_sym_private] = ACTIONS(329), + [anon_sym_static] = ACTIONS(329), + [anon_sym_final] = ACTIONS(329), + [anon_sym_synchronized] = ACTIONS(329), + }, + [414] = { + [sym_comment] = STATE(414), + [sym_groovy_doc] = STATE(414), + [ts_builtin_sym_end] = ACTIONS(387), + [sym_identifier] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_DOT_AMP] = ACTIONS(387), + [anon_sym_DOT_AT] = ACTIONS(387), + [anon_sym_QMARK_DOT] = ACTIONS(387), + [anon_sym_STAR_DOT] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(385), + [anon_sym_import] = ACTIONS(385), + [anon_sym_as] = ACTIONS(385), + [anon_sym_package] = ACTIONS(385), + [anon_sym_AT] = ACTIONS(385), + [anon_sym_assert] = ACTIONS(385), + [anon_sym_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_GT_GT_GT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_LT] = ACTIONS(387), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(387), + [anon_sym_LT_DOT_DOT] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_in] = ACTIONS(385), + [anon_sym_BANGin] = ACTIONS(385), + [anon_sym_instanceof] = ACTIONS(385), + [anon_sym_BANGinstanceof] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(385), + [anon_sym_BANG_EQ] = ACTIONS(385), + [anon_sym_LT_EQ_GT] = ACTIONS(387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(387), + [anon_sym_EQ_TILDE] = ACTIONS(387), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_QMARK_COLON] = ACTIONS(387), + [anon_sym_STAR_STAR] = ACTIONS(387), + [anon_sym_ATinterface] = ACTIONS(387), + [anon_sym_interface] = ACTIONS(385), + [anon_sym_class] = ACTIONS(385), + [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(387), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(385), + [anon_sym_RPAREN] = ACTIONS(387), + [anon_sym_do] = ACTIONS(385), + [anon_sym_while] = ACTIONS(385), + [anon_sym_for] = ACTIONS(385), + [anon_sym_if] = ACTIONS(385), + [anon_sym_else] = ACTIONS(385), + [anon_sym_pipeline] = ACTIONS(385), + [anon_sym_return] = ACTIONS(385), + [anon_sym_SQUOTE] = ACTIONS(385), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(387), + [anon_sym_DQUOTE] = ACTIONS(385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_SLASH] = ACTIONS(387), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_try] = ACTIONS(385), + [anon_sym_int] = ACTIONS(385), + [anon_sym_boolean] = ACTIONS(385), + [anon_sym_char] = ACTIONS(385), + [anon_sym_short] = ACTIONS(385), + [anon_sym_long] = ACTIONS(385), + [anon_sym_float] = ACTIONS(385), + [anon_sym_double] = ACTIONS(385), + [anon_sym_void] = ACTIONS(385), + [anon_sym_public] = ACTIONS(385), + [anon_sym_protected] = ACTIONS(385), + [anon_sym_private] = ACTIONS(385), + [anon_sym_static] = ACTIONS(385), + [anon_sym_final] = ACTIONS(385), + [anon_sym_synchronized] = ACTIONS(385), + }, + [415] = { + [sym_comment] = STATE(415), + [sym_groovy_doc] = STATE(415), + [sym_identifier] = ACTIONS(405), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(407), + [anon_sym_DOT_AMP] = ACTIONS(407), + [anon_sym_DOT_AT] = ACTIONS(407), + [anon_sym_QMARK_DOT] = ACTIONS(407), + [anon_sym_STAR_DOT] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_import] = ACTIONS(405), + [anon_sym_as] = ACTIONS(405), + [anon_sym_package] = ACTIONS(405), + [anon_sym_AT] = ACTIONS(405), + [anon_sym_assert] = ACTIONS(405), + [anon_sym_PLUS_PLUS] = ACTIONS(407), + [anon_sym_DASH_DASH] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_LT_LT] = ACTIONS(407), + [anon_sym_GT_GT] = ACTIONS(405), + [anon_sym_GT_GT_GT] = ACTIONS(407), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT_LT] = ACTIONS(407), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(407), + [anon_sym_LT_DOT_DOT] = ACTIONS(405), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(405), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_in] = ACTIONS(405), + [anon_sym_BANGin] = ACTIONS(405), + [anon_sym_instanceof] = ACTIONS(405), + [anon_sym_BANGinstanceof] = ACTIONS(407), + [anon_sym_EQ_EQ] = ACTIONS(405), + [anon_sym_BANG_EQ] = ACTIONS(405), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_EQ_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ_EQ] = ACTIONS(407), + [anon_sym_EQ_TILDE] = ACTIONS(407), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(405), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [anon_sym_QMARK_COLON] = ACTIONS(407), + [anon_sym_STAR_STAR] = ACTIONS(407), + [anon_sym_ATinterface] = ACTIONS(407), + [anon_sym_interface] = ACTIONS(405), + [anon_sym_class] = ACTIONS(405), + [anon_sym_COMMA] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_RBRACE] = ACTIONS(407), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(405), + [anon_sym_do] = ACTIONS(405), + [anon_sym_while] = ACTIONS(405), + [anon_sym_for] = ACTIONS(405), + [anon_sym_if] = ACTIONS(405), + [anon_sym_else] = ACTIONS(405), + [anon_sym_return] = ACTIONS(405), + [anon_sym_SQUOTE] = ACTIONS(405), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(405), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(407), + [anon_sym_DOLLAR_SLASH] = ACTIONS(407), + [anon_sym_switch] = ACTIONS(405), + [anon_sym_case] = ACTIONS(405), + [anon_sym_default] = ACTIONS(405), + [anon_sym_QMARK] = ACTIONS(405), + [anon_sym_try] = ACTIONS(405), + [anon_sym_int] = ACTIONS(405), + [anon_sym_boolean] = ACTIONS(405), + [anon_sym_char] = ACTIONS(405), + [anon_sym_short] = ACTIONS(405), + [anon_sym_long] = ACTIONS(405), + [anon_sym_float] = ACTIONS(405), + [anon_sym_double] = ACTIONS(405), + [anon_sym_void] = ACTIONS(405), + [anon_sym_public] = ACTIONS(405), + [anon_sym_protected] = ACTIONS(405), + [anon_sym_private] = ACTIONS(405), + [anon_sym_static] = ACTIONS(405), + [anon_sym_final] = ACTIONS(405), + [anon_sym_synchronized] = ACTIONS(405), + }, + [416] = { + [sym_comment] = STATE(416), + [sym_groovy_doc] = STATE(416), + [ts_builtin_sym_end] = ACTIONS(435), + [sym_identifier] = ACTIONS(433), + [anon_sym_break] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_DOT_AMP] = ACTIONS(435), + [anon_sym_DOT_AT] = ACTIONS(435), + [anon_sym_QMARK_DOT] = ACTIONS(435), + [anon_sym_STAR_DOT] = ACTIONS(435), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_import] = ACTIONS(433), + [anon_sym_as] = ACTIONS(433), + [anon_sym_package] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_assert] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PERCENT] = ACTIONS(435), + [anon_sym_SLASH] = ACTIONS(433), + [anon_sym_PLUS] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_LT_LT] = ACTIONS(435), + [anon_sym_GT_GT] = ACTIONS(433), + [anon_sym_GT_GT_GT] = ACTIONS(435), + [anon_sym_DOT_DOT] = ACTIONS(433), + [anon_sym_DOT_DOT_LT] = ACTIONS(435), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(435), + [anon_sym_LT_DOT_DOT] = ACTIONS(433), + [anon_sym_LT] = ACTIONS(433), + [anon_sym_LT_EQ] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(433), + [anon_sym_GT_EQ] = ACTIONS(435), + [anon_sym_in] = ACTIONS(433), + [anon_sym_BANGin] = ACTIONS(433), + [anon_sym_instanceof] = ACTIONS(433), + [anon_sym_BANGinstanceof] = ACTIONS(435), + [anon_sym_EQ_EQ] = ACTIONS(433), + [anon_sym_BANG_EQ] = ACTIONS(433), + [anon_sym_LT_EQ_GT] = ACTIONS(435), + [anon_sym_EQ_EQ_EQ] = ACTIONS(435), + [anon_sym_BANG_EQ_EQ] = ACTIONS(435), + [anon_sym_EQ_TILDE] = ACTIONS(435), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(435), + [anon_sym_AMP] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(433), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_QMARK_COLON] = ACTIONS(435), + [anon_sym_STAR_STAR] = ACTIONS(435), + [anon_sym_ATinterface] = ACTIONS(435), + [anon_sym_interface] = ACTIONS(433), + [anon_sym_class] = ACTIONS(433), + [anon_sym_COMMA] = ACTIONS(435), + [anon_sym_LBRACE] = ACTIONS(435), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(433), + [anon_sym_do] = ACTIONS(433), + [anon_sym_while] = ACTIONS(433), + [anon_sym_for] = ACTIONS(433), + [anon_sym_if] = ACTIONS(433), + [anon_sym_else] = ACTIONS(433), + [anon_sym_pipeline] = ACTIONS(433), + [anon_sym_return] = ACTIONS(433), + [anon_sym_SQUOTE] = ACTIONS(433), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(433), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(435), + [anon_sym_DOLLAR_SLASH] = ACTIONS(435), + [anon_sym_switch] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [anon_sym_try] = ACTIONS(433), + [anon_sym_int] = ACTIONS(433), + [anon_sym_boolean] = ACTIONS(433), + [anon_sym_char] = ACTIONS(433), + [anon_sym_short] = ACTIONS(433), + [anon_sym_long] = ACTIONS(433), + [anon_sym_float] = ACTIONS(433), + [anon_sym_double] = ACTIONS(433), + [anon_sym_void] = ACTIONS(433), + [anon_sym_public] = ACTIONS(433), + [anon_sym_protected] = ACTIONS(433), + [anon_sym_private] = ACTIONS(433), + [anon_sym_static] = ACTIONS(433), + [anon_sym_final] = ACTIONS(433), + [anon_sym_synchronized] = ACTIONS(433), + }, + [417] = { + [sym_comment] = STATE(417), + [sym_groovy_doc] = STATE(417), + [ts_builtin_sym_end] = ACTIONS(353), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(764), + [anon_sym_DOT_AT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(764), + [anon_sym_STAR_DOT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(768), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_GT_GT_GT] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(776), + [anon_sym_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_in] = ACTIONS(768), + [anon_sym_BANGin] = ACTIONS(768), + [anon_sym_instanceof] = ACTIONS(768), + [anon_sym_BANGinstanceof] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT_EQ_GT] = ACTIONS(782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_EQ_TILDE] = ACTIONS(782), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_pipeline] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [418] = { + [sym_comment] = STATE(418), + [sym_groovy_doc] = STATE(418), + [ts_builtin_sym_end] = ACTIONS(395), + [sym_identifier] = ACTIONS(393), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_DOT_AMP] = ACTIONS(395), + [anon_sym_DOT_AT] = ACTIONS(395), + [anon_sym_QMARK_DOT] = ACTIONS(395), + [anon_sym_STAR_DOT] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_import] = ACTIONS(393), + [anon_sym_as] = ACTIONS(393), + [anon_sym_package] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(393), + [anon_sym_assert] = ACTIONS(393), + [anon_sym_PLUS_PLUS] = ACTIONS(395), + [anon_sym_DASH_DASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_GT_GT_GT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_LT] = ACTIONS(395), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(395), + [anon_sym_LT_DOT_DOT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(395), + [anon_sym_in] = ACTIONS(393), + [anon_sym_BANGin] = ACTIONS(393), + [anon_sym_instanceof] = ACTIONS(393), + [anon_sym_BANGinstanceof] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_LT_EQ_GT] = ACTIONS(395), + [anon_sym_EQ_EQ_EQ] = ACTIONS(395), + [anon_sym_BANG_EQ_EQ] = ACTIONS(395), + [anon_sym_EQ_TILDE] = ACTIONS(395), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_AMP_AMP] = ACTIONS(395), + [anon_sym_PIPE_PIPE] = ACTIONS(395), + [anon_sym_QMARK_COLON] = ACTIONS(395), + [anon_sym_STAR_STAR] = ACTIONS(395), + [anon_sym_ATinterface] = ACTIONS(395), + [anon_sym_interface] = ACTIONS(393), + [anon_sym_class] = ACTIONS(393), + [anon_sym_COMMA] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(393), + [anon_sym_do] = ACTIONS(393), + [anon_sym_while] = ACTIONS(393), + [anon_sym_for] = ACTIONS(393), + [anon_sym_if] = ACTIONS(393), + [anon_sym_else] = ACTIONS(393), + [anon_sym_pipeline] = ACTIONS(393), + [anon_sym_return] = ACTIONS(393), + [anon_sym_SQUOTE] = ACTIONS(393), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(395), + [anon_sym_DQUOTE] = ACTIONS(393), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(395), + [anon_sym_DOLLAR_SLASH] = ACTIONS(395), + [anon_sym_switch] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_try] = ACTIONS(393), + [anon_sym_int] = ACTIONS(393), + [anon_sym_boolean] = ACTIONS(393), + [anon_sym_char] = ACTIONS(393), + [anon_sym_short] = ACTIONS(393), + [anon_sym_long] = ACTIONS(393), + [anon_sym_float] = ACTIONS(393), + [anon_sym_double] = ACTIONS(393), + [anon_sym_void] = ACTIONS(393), + [anon_sym_public] = ACTIONS(393), + [anon_sym_protected] = ACTIONS(393), + [anon_sym_private] = ACTIONS(393), + [anon_sym_static] = ACTIONS(393), + [anon_sym_final] = ACTIONS(393), + [anon_sym_synchronized] = ACTIONS(393), + }, + [419] = { + [sym_comment] = STATE(419), + [sym_groovy_doc] = STATE(419), + [sym_identifier] = ACTIONS(501), + [anon_sym_break] = ACTIONS(501), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_SEMI] = ACTIONS(503), + [anon_sym_DOT_AMP] = ACTIONS(726), + [anon_sym_DOT_AT] = ACTIONS(726), + [anon_sym_QMARK_DOT] = ACTIONS(726), + [anon_sym_STAR_DOT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_import] = ACTIONS(501), + [anon_sym_as] = ACTIONS(730), + [anon_sym_package] = ACTIONS(501), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_assert] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(503), + [anon_sym_DASH_DASH] = ACTIONS(503), + [anon_sym_PERCENT] = ACTIONS(732), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_LT_LT] = ACTIONS(736), + [anon_sym_GT_GT] = ACTIONS(738), + [anon_sym_GT_GT_GT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(738), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_in] = ACTIONS(730), + [anon_sym_BANGin] = ACTIONS(730), + [anon_sym_instanceof] = ACTIONS(730), + [anon_sym_BANGinstanceof] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_LT_EQ_GT] = ACTIONS(744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(744), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(752), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [anon_sym_QMARK_COLON] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(503), + [anon_sym_interface] = ACTIONS(501), + [anon_sym_class] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(503), + [anon_sym_RBRACE] = ACTIONS(503), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(501), + [anon_sym_do] = ACTIONS(501), + [anon_sym_while] = ACTIONS(501), + [anon_sym_for] = ACTIONS(501), + [anon_sym_if] = ACTIONS(501), + [anon_sym_else] = ACTIONS(501), + [anon_sym_return] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(503), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(503), + [anon_sym_DOLLAR_SLASH] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(501), + [anon_sym_case] = ACTIONS(501), + [anon_sym_default] = ACTIONS(501), + [anon_sym_QMARK] = ACTIONS(762), + [anon_sym_try] = ACTIONS(501), + [anon_sym_int] = ACTIONS(501), + [anon_sym_boolean] = ACTIONS(501), + [anon_sym_char] = ACTIONS(501), + [anon_sym_short] = ACTIONS(501), + [anon_sym_long] = ACTIONS(501), + [anon_sym_float] = ACTIONS(501), + [anon_sym_double] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_public] = ACTIONS(501), + [anon_sym_protected] = ACTIONS(501), + [anon_sym_private] = ACTIONS(501), + [anon_sym_static] = ACTIONS(501), + [anon_sym_final] = ACTIONS(501), + [anon_sym_synchronized] = ACTIONS(501), + }, + [420] = { + [sym_comment] = STATE(420), + [sym_groovy_doc] = STATE(420), + [ts_builtin_sym_end] = ACTIONS(399), + [sym_identifier] = ACTIONS(397), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_SEMI] = ACTIONS(399), + [anon_sym_DOT_AMP] = ACTIONS(399), + [anon_sym_DOT_AT] = ACTIONS(399), + [anon_sym_QMARK_DOT] = ACTIONS(399), + [anon_sym_STAR_DOT] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_import] = ACTIONS(397), + [anon_sym_as] = ACTIONS(397), + [anon_sym_package] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(397), + [anon_sym_assert] = ACTIONS(397), + [anon_sym_PLUS_PLUS] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_GT_GT_GT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_LT] = ACTIONS(399), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(399), + [anon_sym_LT_DOT_DOT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_in] = ACTIONS(397), + [anon_sym_BANGin] = ACTIONS(397), + [anon_sym_instanceof] = ACTIONS(397), + [anon_sym_BANGinstanceof] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_LT_EQ_GT] = ACTIONS(399), + [anon_sym_EQ_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ_EQ] = ACTIONS(399), + [anon_sym_EQ_TILDE] = ACTIONS(399), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(399), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_QMARK_COLON] = ACTIONS(399), + [anon_sym_STAR_STAR] = ACTIONS(399), + [anon_sym_ATinterface] = ACTIONS(399), + [anon_sym_interface] = ACTIONS(397), + [anon_sym_class] = ACTIONS(397), + [anon_sym_COMMA] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(399), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(397), + [anon_sym_do] = ACTIONS(397), + [anon_sym_while] = ACTIONS(397), + [anon_sym_for] = ACTIONS(397), + [anon_sym_if] = ACTIONS(397), + [anon_sym_else] = ACTIONS(397), + [anon_sym_pipeline] = ACTIONS(397), + [anon_sym_return] = ACTIONS(397), + [anon_sym_SQUOTE] = ACTIONS(397), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(399), + [anon_sym_DQUOTE] = ACTIONS(397), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(399), + [anon_sym_DOLLAR_SLASH] = ACTIONS(399), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_try] = ACTIONS(397), + [anon_sym_int] = ACTIONS(397), + [anon_sym_boolean] = ACTIONS(397), + [anon_sym_char] = ACTIONS(397), + [anon_sym_short] = ACTIONS(397), + [anon_sym_long] = ACTIONS(397), + [anon_sym_float] = ACTIONS(397), + [anon_sym_double] = ACTIONS(397), + [anon_sym_void] = ACTIONS(397), + [anon_sym_public] = ACTIONS(397), + [anon_sym_protected] = ACTIONS(397), + [anon_sym_private] = ACTIONS(397), + [anon_sym_static] = ACTIONS(397), + [anon_sym_final] = ACTIONS(397), + [anon_sym_synchronized] = ACTIONS(397), + }, + [421] = { + [sym_comment] = STATE(421), + [sym_groovy_doc] = STATE(421), + [sym_identifier] = ACTIONS(491), + [anon_sym_break] = ACTIONS(491), + [anon_sym_continue] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(493), + [anon_sym_DOT_AMP] = ACTIONS(726), + [anon_sym_DOT_AT] = ACTIONS(726), + [anon_sym_QMARK_DOT] = ACTIONS(726), + [anon_sym_STAR_DOT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_import] = ACTIONS(491), + [anon_sym_as] = ACTIONS(730), + [anon_sym_package] = ACTIONS(491), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_assert] = ACTIONS(491), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(732), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_LT_LT] = ACTIONS(736), + [anon_sym_GT_GT] = ACTIONS(738), + [anon_sym_GT_GT_GT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(738), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_in] = ACTIONS(730), + [anon_sym_BANGin] = ACTIONS(730), + [anon_sym_instanceof] = ACTIONS(730), + [anon_sym_BANGinstanceof] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_LT_EQ_GT] = ACTIONS(744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(744), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(752), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [anon_sym_QMARK_COLON] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(493), + [anon_sym_interface] = ACTIONS(491), + [anon_sym_class] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_RBRACE] = ACTIONS(493), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(491), + [anon_sym_do] = ACTIONS(491), + [anon_sym_while] = ACTIONS(491), + [anon_sym_for] = ACTIONS(491), + [anon_sym_if] = ACTIONS(491), + [anon_sym_else] = ACTIONS(491), + [anon_sym_return] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(491), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(491), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(493), + [anon_sym_DOLLAR_SLASH] = ACTIONS(493), + [anon_sym_switch] = ACTIONS(491), + [anon_sym_case] = ACTIONS(491), + [anon_sym_default] = ACTIONS(491), + [anon_sym_QMARK] = ACTIONS(762), + [anon_sym_try] = ACTIONS(491), + [anon_sym_int] = ACTIONS(491), + [anon_sym_boolean] = ACTIONS(491), + [anon_sym_char] = ACTIONS(491), + [anon_sym_short] = ACTIONS(491), + [anon_sym_long] = ACTIONS(491), + [anon_sym_float] = ACTIONS(491), + [anon_sym_double] = ACTIONS(491), + [anon_sym_void] = ACTIONS(491), + [anon_sym_public] = ACTIONS(491), + [anon_sym_protected] = ACTIONS(491), + [anon_sym_private] = ACTIONS(491), + [anon_sym_static] = ACTIONS(491), + [anon_sym_final] = ACTIONS(491), + [anon_sym_synchronized] = ACTIONS(491), + }, + [422] = { + [sym_comment] = STATE(422), + [sym_groovy_doc] = STATE(422), + [ts_builtin_sym_end] = ACTIONS(87), + [sym_identifier] = ACTIONS(85), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_STAR_COLON] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(87), + [anon_sym_import] = ACTIONS(85), + [anon_sym_package] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_assert] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(87), + [anon_sym_STAR_STAR_EQ] = ACTIONS(87), + [anon_sym_STAR_EQ] = ACTIONS(87), + [anon_sym_SLASH_EQ] = ACTIONS(87), + [anon_sym_PERCENT_EQ] = ACTIONS(87), + [anon_sym_PLUS_EQ] = ACTIONS(87), + [anon_sym_DASH_EQ] = ACTIONS(87), + [anon_sym_LT_LT_EQ] = ACTIONS(87), + [anon_sym_GT_GT_EQ] = ACTIONS(87), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(87), + [anon_sym_AMP_EQ] = ACTIONS(87), + [anon_sym_CARET_EQ] = ACTIONS(87), + [anon_sym_PIPE_EQ] = ACTIONS(87), + [anon_sym_QMARK_EQ] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_true] = ACTIONS(85), + [anon_sym_false] = ACTIONS(85), + [anon_sym_ATinterface] = ACTIONS(87), + [anon_sym_interface] = ACTIONS(85), + [anon_sym_class] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(87), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_RBRACE] = ACTIONS(87), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(85), + [anon_sym_this] = ACTIONS(85), + [anon_sym_null] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_RPAREN] = ACTIONS(87), + [anon_sym_do] = ACTIONS(85), + [anon_sym_while] = ACTIONS(85), + [anon_sym_for] = ACTIONS(85), + [anon_sym_if] = ACTIONS(85), + [anon_sym_else] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(85), + [aux_sym_number_literal_token1] = ACTIONS(85), + [aux_sym_number_literal_token2] = ACTIONS(87), + [aux_sym_number_literal_token3] = ACTIONS(87), + [aux_sym_number_literal_token4] = ACTIONS(85), + [aux_sym_number_literal_token5] = ACTIONS(87), + [anon_sym_pipeline] = ACTIONS(85), + [anon_sym_return] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_DOLLAR_SLASH] = ACTIONS(87), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_try] = ACTIONS(85), + [anon_sym_catch] = ACTIONS(85), + [anon_sym_finally] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_boolean] = ACTIONS(85), + [anon_sym_char] = ACTIONS(85), + [anon_sym_short] = ACTIONS(85), + [anon_sym_long] = ACTIONS(85), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [anon_sym_void] = ACTIONS(85), + [anon_sym_LBRACK_RBRACK] = ACTIONS(87), + [anon_sym_public] = ACTIONS(85), + [anon_sym_protected] = ACTIONS(85), + [anon_sym_private] = ACTIONS(85), + [anon_sym_static] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_synchronized] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_new] = ACTIONS(85), + }, + [423] = { + [sym_comment] = STATE(423), + [sym_groovy_doc] = STATE(423), + [sym_identifier] = ACTIONS(483), + [anon_sym_break] = ACTIONS(483), + [anon_sym_continue] = ACTIONS(483), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_DOT_AMP] = ACTIONS(726), + [anon_sym_DOT_AT] = ACTIONS(726), + [anon_sym_QMARK_DOT] = ACTIONS(726), + [anon_sym_STAR_DOT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_import] = ACTIONS(483), + [anon_sym_as] = ACTIONS(730), + [anon_sym_package] = ACTIONS(483), + [anon_sym_AT] = ACTIONS(483), + [anon_sym_assert] = ACTIONS(483), + [anon_sym_PLUS_PLUS] = ACTIONS(485), + [anon_sym_DASH_DASH] = ACTIONS(485), + [anon_sym_PERCENT] = ACTIONS(732), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_LT_LT] = ACTIONS(736), + [anon_sym_GT_GT] = ACTIONS(738), + [anon_sym_GT_GT_GT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(738), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_in] = ACTIONS(730), + [anon_sym_BANGin] = ACTIONS(730), + [anon_sym_instanceof] = ACTIONS(730), + [anon_sym_BANGinstanceof] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_LT_EQ_GT] = ACTIONS(744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(744), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(752), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [anon_sym_QMARK_COLON] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(485), + [anon_sym_interface] = ACTIONS(483), + [anon_sym_class] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_RBRACE] = ACTIONS(485), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(483), + [anon_sym_do] = ACTIONS(483), + [anon_sym_while] = ACTIONS(483), + [anon_sym_for] = ACTIONS(483), + [anon_sym_if] = ACTIONS(483), + [anon_sym_else] = ACTIONS(483), + [anon_sym_return] = ACTIONS(483), + [anon_sym_SQUOTE] = ACTIONS(483), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(485), + [anon_sym_DQUOTE] = ACTIONS(483), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(485), + [anon_sym_DOLLAR_SLASH] = ACTIONS(485), + [anon_sym_switch] = ACTIONS(483), + [anon_sym_case] = ACTIONS(483), + [anon_sym_default] = ACTIONS(483), + [anon_sym_QMARK] = ACTIONS(762), + [anon_sym_try] = ACTIONS(483), + [anon_sym_int] = ACTIONS(483), + [anon_sym_boolean] = ACTIONS(483), + [anon_sym_char] = ACTIONS(483), + [anon_sym_short] = ACTIONS(483), + [anon_sym_long] = ACTIONS(483), + [anon_sym_float] = ACTIONS(483), + [anon_sym_double] = ACTIONS(483), + [anon_sym_void] = ACTIONS(483), + [anon_sym_public] = ACTIONS(483), + [anon_sym_protected] = ACTIONS(483), + [anon_sym_private] = ACTIONS(483), + [anon_sym_static] = ACTIONS(483), + [anon_sym_final] = ACTIONS(483), + [anon_sym_synchronized] = ACTIONS(483), + }, + [424] = { + [sym_comment] = STATE(424), + [sym_groovy_doc] = STATE(424), + [sym_identifier] = ACTIONS(479), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(481), + [anon_sym_DOT_AMP] = ACTIONS(726), + [anon_sym_DOT_AT] = ACTIONS(726), + [anon_sym_QMARK_DOT] = ACTIONS(726), + [anon_sym_STAR_DOT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_import] = ACTIONS(479), + [anon_sym_as] = ACTIONS(730), + [anon_sym_package] = ACTIONS(479), + [anon_sym_AT] = ACTIONS(479), + [anon_sym_assert] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(732), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_LT_LT] = ACTIONS(736), + [anon_sym_GT_GT] = ACTIONS(738), + [anon_sym_GT_GT_GT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(738), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_in] = ACTIONS(730), + [anon_sym_BANGin] = ACTIONS(730), + [anon_sym_instanceof] = ACTIONS(730), + [anon_sym_BANGinstanceof] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_LT_EQ_GT] = ACTIONS(744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(744), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(752), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [anon_sym_QMARK_COLON] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(481), + [anon_sym_interface] = ACTIONS(479), + [anon_sym_class] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(481), + [anon_sym_RBRACE] = ACTIONS(481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(479), + [anon_sym_do] = ACTIONS(479), + [anon_sym_while] = ACTIONS(479), + [anon_sym_for] = ACTIONS(479), + [anon_sym_if] = ACTIONS(479), + [anon_sym_else] = ACTIONS(479), + [anon_sym_return] = ACTIONS(479), + [anon_sym_SQUOTE] = ACTIONS(479), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(481), + [anon_sym_DQUOTE] = ACTIONS(479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(481), + [anon_sym_DOLLAR_SLASH] = ACTIONS(481), + [anon_sym_switch] = ACTIONS(479), + [anon_sym_case] = ACTIONS(479), + [anon_sym_default] = ACTIONS(479), + [anon_sym_QMARK] = ACTIONS(762), + [anon_sym_try] = ACTIONS(479), + [anon_sym_int] = ACTIONS(479), + [anon_sym_boolean] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_short] = ACTIONS(479), + [anon_sym_long] = ACTIONS(479), + [anon_sym_float] = ACTIONS(479), + [anon_sym_double] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_public] = ACTIONS(479), + [anon_sym_protected] = ACTIONS(479), + [anon_sym_private] = ACTIONS(479), + [anon_sym_static] = ACTIONS(479), + [anon_sym_final] = ACTIONS(479), + [anon_sym_synchronized] = ACTIONS(479), + }, + [425] = { + [sym_comment] = STATE(425), + [sym_groovy_doc] = STATE(425), + [sym_identifier] = ACTIONS(495), + [anon_sym_break] = ACTIONS(495), + [anon_sym_continue] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(497), + [anon_sym_DOT_AMP] = ACTIONS(726), + [anon_sym_DOT_AT] = ACTIONS(726), + [anon_sym_QMARK_DOT] = ACTIONS(726), + [anon_sym_STAR_DOT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_import] = ACTIONS(495), + [anon_sym_as] = ACTIONS(730), + [anon_sym_package] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(495), + [anon_sym_assert] = ACTIONS(495), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_PERCENT] = ACTIONS(732), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_LT_LT] = ACTIONS(736), + [anon_sym_GT_GT] = ACTIONS(738), + [anon_sym_GT_GT_GT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(738), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_in] = ACTIONS(730), + [anon_sym_BANGin] = ACTIONS(730), + [anon_sym_instanceof] = ACTIONS(730), + [anon_sym_BANGinstanceof] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_LT_EQ_GT] = ACTIONS(744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(744), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(752), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [anon_sym_QMARK_COLON] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(497), + [anon_sym_interface] = ACTIONS(495), + [anon_sym_class] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(497), + [anon_sym_RBRACE] = ACTIONS(497), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(495), + [anon_sym_do] = ACTIONS(495), + [anon_sym_while] = ACTIONS(495), + [anon_sym_for] = ACTIONS(495), + [anon_sym_if] = ACTIONS(495), + [anon_sym_else] = ACTIONS(495), + [anon_sym_return] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(495), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(495), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(497), + [anon_sym_DOLLAR_SLASH] = ACTIONS(497), + [anon_sym_switch] = ACTIONS(495), + [anon_sym_case] = ACTIONS(495), + [anon_sym_default] = ACTIONS(495), + [anon_sym_QMARK] = ACTIONS(762), + [anon_sym_try] = ACTIONS(495), + [anon_sym_int] = ACTIONS(495), + [anon_sym_boolean] = ACTIONS(495), + [anon_sym_char] = ACTIONS(495), + [anon_sym_short] = ACTIONS(495), + [anon_sym_long] = ACTIONS(495), + [anon_sym_float] = ACTIONS(495), + [anon_sym_double] = ACTIONS(495), + [anon_sym_void] = ACTIONS(495), + [anon_sym_public] = ACTIONS(495), + [anon_sym_protected] = ACTIONS(495), + [anon_sym_private] = ACTIONS(495), + [anon_sym_static] = ACTIONS(495), + [anon_sym_final] = ACTIONS(495), + [anon_sym_synchronized] = ACTIONS(495), + }, + [426] = { + [sym_comment] = STATE(426), + [sym_groovy_doc] = STATE(426), + [sym_identifier] = ACTIONS(487), + [anon_sym_break] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_SEMI] = ACTIONS(489), + [anon_sym_DOT_AMP] = ACTIONS(726), + [anon_sym_DOT_AT] = ACTIONS(726), + [anon_sym_QMARK_DOT] = ACTIONS(726), + [anon_sym_STAR_DOT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_import] = ACTIONS(487), + [anon_sym_as] = ACTIONS(730), + [anon_sym_package] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(487), + [anon_sym_assert] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(489), + [anon_sym_DASH_DASH] = ACTIONS(489), + [anon_sym_PERCENT] = ACTIONS(732), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_LT_LT] = ACTIONS(736), + [anon_sym_GT_GT] = ACTIONS(738), + [anon_sym_GT_GT_GT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(738), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_in] = ACTIONS(730), + [anon_sym_BANGin] = ACTIONS(730), + [anon_sym_instanceof] = ACTIONS(730), + [anon_sym_BANGinstanceof] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_LT_EQ_GT] = ACTIONS(744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(744), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(752), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [anon_sym_QMARK_COLON] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(489), + [anon_sym_interface] = ACTIONS(487), + [anon_sym_class] = ACTIONS(487), + [anon_sym_LBRACE] = ACTIONS(489), + [anon_sym_RBRACE] = ACTIONS(489), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(487), + [anon_sym_do] = ACTIONS(487), + [anon_sym_while] = ACTIONS(487), + [anon_sym_for] = ACTIONS(487), + [anon_sym_if] = ACTIONS(487), + [anon_sym_else] = ACTIONS(487), + [anon_sym_return] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(487), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(489), + [anon_sym_DQUOTE] = ACTIONS(487), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(489), + [anon_sym_DOLLAR_SLASH] = ACTIONS(489), + [anon_sym_switch] = ACTIONS(487), + [anon_sym_case] = ACTIONS(487), + [anon_sym_default] = ACTIONS(487), + [anon_sym_QMARK] = ACTIONS(762), + [anon_sym_try] = ACTIONS(487), + [anon_sym_int] = ACTIONS(487), + [anon_sym_boolean] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_short] = ACTIONS(487), + [anon_sym_long] = ACTIONS(487), + [anon_sym_float] = ACTIONS(487), + [anon_sym_double] = ACTIONS(487), + [anon_sym_void] = ACTIONS(487), + [anon_sym_public] = ACTIONS(487), + [anon_sym_protected] = ACTIONS(487), + [anon_sym_private] = ACTIONS(487), + [anon_sym_static] = ACTIONS(487), + [anon_sym_final] = ACTIONS(487), + [anon_sym_synchronized] = ACTIONS(487), + }, + [427] = { + [sym_comment] = STATE(427), + [sym_groovy_doc] = STATE(427), + [ts_builtin_sym_end] = ACTIONS(427), + [sym_identifier] = ACTIONS(425), + [anon_sym_break] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(425), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_DOT_AMP] = ACTIONS(427), + [anon_sym_DOT_AT] = ACTIONS(427), + [anon_sym_QMARK_DOT] = ACTIONS(427), + [anon_sym_STAR_DOT] = ACTIONS(427), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_import] = ACTIONS(425), + [anon_sym_as] = ACTIONS(425), + [anon_sym_package] = ACTIONS(425), + [anon_sym_AT] = ACTIONS(425), + [anon_sym_assert] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(427), + [anon_sym_DASH_DASH] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(425), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_LT_LT] = ACTIONS(427), + [anon_sym_GT_GT] = ACTIONS(425), + [anon_sym_GT_GT_GT] = ACTIONS(427), + [anon_sym_DOT_DOT] = ACTIONS(425), + [anon_sym_DOT_DOT_LT] = ACTIONS(427), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(427), + [anon_sym_LT_DOT_DOT] = ACTIONS(425), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_LT_EQ] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(425), + [anon_sym_GT_EQ] = ACTIONS(427), + [anon_sym_in] = ACTIONS(425), + [anon_sym_BANGin] = ACTIONS(425), + [anon_sym_instanceof] = ACTIONS(425), + [anon_sym_BANGinstanceof] = ACTIONS(427), + [anon_sym_EQ_EQ] = ACTIONS(425), + [anon_sym_BANG_EQ] = ACTIONS(425), + [anon_sym_LT_EQ_GT] = ACTIONS(427), + [anon_sym_EQ_EQ_EQ] = ACTIONS(427), + [anon_sym_BANG_EQ_EQ] = ACTIONS(427), + [anon_sym_EQ_TILDE] = ACTIONS(427), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_PIPE] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(427), + [anon_sym_PIPE_PIPE] = ACTIONS(427), + [anon_sym_QMARK_COLON] = ACTIONS(427), + [anon_sym_STAR_STAR] = ACTIONS(427), + [anon_sym_ATinterface] = ACTIONS(427), + [anon_sym_interface] = ACTIONS(425), + [anon_sym_class] = ACTIONS(425), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(427), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(425), + [anon_sym_do] = ACTIONS(425), + [anon_sym_while] = ACTIONS(425), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(425), + [anon_sym_else] = ACTIONS(425), + [anon_sym_pipeline] = ACTIONS(425), + [anon_sym_return] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(425), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(425), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR_SLASH] = ACTIONS(427), + [anon_sym_switch] = ACTIONS(425), + [anon_sym_QMARK] = ACTIONS(425), + [anon_sym_try] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_boolean] = ACTIONS(425), + [anon_sym_char] = ACTIONS(425), + [anon_sym_short] = ACTIONS(425), + [anon_sym_long] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_double] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_public] = ACTIONS(425), + [anon_sym_protected] = ACTIONS(425), + [anon_sym_private] = ACTIONS(425), + [anon_sym_static] = ACTIONS(425), + [anon_sym_final] = ACTIONS(425), + [anon_sym_synchronized] = ACTIONS(425), + }, + [428] = { + [sym_comment] = STATE(428), + [sym_groovy_doc] = STATE(428), + [ts_builtin_sym_end] = ACTIONS(415), + [sym_identifier] = ACTIONS(413), + [anon_sym_break] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_DOT_AMP] = ACTIONS(415), + [anon_sym_DOT_AT] = ACTIONS(415), + [anon_sym_QMARK_DOT] = ACTIONS(415), + [anon_sym_STAR_DOT] = ACTIONS(415), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_import] = ACTIONS(413), + [anon_sym_as] = ACTIONS(413), + [anon_sym_package] = ACTIONS(413), + [anon_sym_AT] = ACTIONS(413), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_PLUS_PLUS] = ACTIONS(415), + [anon_sym_DASH_DASH] = ACTIONS(415), + [anon_sym_PERCENT] = ACTIONS(415), + [anon_sym_SLASH] = ACTIONS(413), + [anon_sym_PLUS] = ACTIONS(413), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(415), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_GT_GT_GT] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(413), + [anon_sym_DOT_DOT_LT] = ACTIONS(415), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(415), + [anon_sym_LT_DOT_DOT] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_EQ] = ACTIONS(413), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_in] = ACTIONS(413), + [anon_sym_BANGin] = ACTIONS(413), + [anon_sym_instanceof] = ACTIONS(413), + [anon_sym_BANGinstanceof] = ACTIONS(415), + [anon_sym_EQ_EQ] = ACTIONS(413), + [anon_sym_BANG_EQ] = ACTIONS(413), + [anon_sym_LT_EQ_GT] = ACTIONS(415), + [anon_sym_EQ_EQ_EQ] = ACTIONS(415), + [anon_sym_BANG_EQ_EQ] = ACTIONS(415), + [anon_sym_EQ_TILDE] = ACTIONS(415), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_QMARK_COLON] = ACTIONS(415), + [anon_sym_STAR_STAR] = ACTIONS(415), + [anon_sym_ATinterface] = ACTIONS(415), + [anon_sym_interface] = ACTIONS(413), + [anon_sym_class] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(415), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(413), + [anon_sym_do] = ACTIONS(413), + [anon_sym_while] = ACTIONS(413), + [anon_sym_for] = ACTIONS(413), + [anon_sym_if] = ACTIONS(413), + [anon_sym_else] = ACTIONS(413), + [anon_sym_pipeline] = ACTIONS(413), + [anon_sym_return] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(415), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_DOLLAR_SLASH] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(413), + [anon_sym_try] = ACTIONS(413), + [anon_sym_int] = ACTIONS(413), + [anon_sym_boolean] = ACTIONS(413), + [anon_sym_char] = ACTIONS(413), + [anon_sym_short] = ACTIONS(413), + [anon_sym_long] = ACTIONS(413), + [anon_sym_float] = ACTIONS(413), + [anon_sym_double] = ACTIONS(413), + [anon_sym_void] = ACTIONS(413), + [anon_sym_public] = ACTIONS(413), + [anon_sym_protected] = ACTIONS(413), + [anon_sym_private] = ACTIONS(413), + [anon_sym_static] = ACTIONS(413), + [anon_sym_final] = ACTIONS(413), + [anon_sym_synchronized] = ACTIONS(413), + }, + [429] = { + [sym_comment] = STATE(429), + [sym_groovy_doc] = STATE(429), + [ts_builtin_sym_end] = ACTIONS(83), + [sym_identifier] = ACTIONS(81), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_STAR_COLON] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(83), + [anon_sym_import] = ACTIONS(81), + [anon_sym_package] = ACTIONS(81), + [anon_sym_AT] = ACTIONS(81), + [anon_sym_assert] = ACTIONS(81), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_STAR_STAR_EQ] = ACTIONS(83), + [anon_sym_STAR_EQ] = ACTIONS(83), + [anon_sym_SLASH_EQ] = ACTIONS(83), + [anon_sym_PERCENT_EQ] = ACTIONS(83), + [anon_sym_PLUS_EQ] = ACTIONS(83), + [anon_sym_DASH_EQ] = ACTIONS(83), + [anon_sym_LT_LT_EQ] = ACTIONS(83), + [anon_sym_GT_GT_EQ] = ACTIONS(83), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(83), + [anon_sym_AMP_EQ] = ACTIONS(83), + [anon_sym_CARET_EQ] = ACTIONS(83), + [anon_sym_PIPE_EQ] = ACTIONS(83), + [anon_sym_QMARK_EQ] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_ATinterface] = ACTIONS(83), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_RBRACE] = ACTIONS(83), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(81), + [anon_sym_this] = ACTIONS(81), + [anon_sym_null] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [anon_sym_do] = ACTIONS(81), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(81), + [anon_sym_if] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(81), + [aux_sym_number_literal_token1] = ACTIONS(81), + [aux_sym_number_literal_token2] = ACTIONS(83), + [aux_sym_number_literal_token3] = ACTIONS(83), + [aux_sym_number_literal_token4] = ACTIONS(81), + [aux_sym_number_literal_token5] = ACTIONS(83), + [anon_sym_pipeline] = ACTIONS(81), + [anon_sym_return] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_SLASH] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_try] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_finally] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_boolean] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_float] = ACTIONS(81), + [anon_sym_double] = ACTIONS(81), + [anon_sym_void] = ACTIONS(81), + [anon_sym_LBRACK_RBRACK] = ACTIONS(83), + [anon_sym_public] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_static] = ACTIONS(81), + [anon_sym_final] = ACTIONS(81), + [anon_sym_synchronized] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(83), + [anon_sym_new] = ACTIONS(81), + }, + [430] = { + [sym_comment] = STATE(430), + [sym_groovy_doc] = STATE(430), + [ts_builtin_sym_end] = ACTIONS(357), + [sym_identifier] = ACTIONS(355), + [anon_sym_break] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_DOT_AMP] = ACTIONS(357), + [anon_sym_DOT_AT] = ACTIONS(357), + [anon_sym_QMARK_DOT] = ACTIONS(357), + [anon_sym_STAR_DOT] = ACTIONS(357), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_import] = ACTIONS(355), + [anon_sym_as] = ACTIONS(355), + [anon_sym_package] = ACTIONS(355), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_assert] = ACTIONS(355), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(355), + [anon_sym_PLUS] = ACTIONS(355), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_LT_LT] = ACTIONS(357), + [anon_sym_GT_GT] = ACTIONS(355), + [anon_sym_GT_GT_GT] = ACTIONS(357), + [anon_sym_DOT_DOT] = ACTIONS(355), + [anon_sym_DOT_DOT_LT] = ACTIONS(357), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(357), + [anon_sym_LT_DOT_DOT] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_LT_EQ] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_EQ] = ACTIONS(357), + [anon_sym_in] = ACTIONS(355), + [anon_sym_BANGin] = ACTIONS(355), + [anon_sym_instanceof] = ACTIONS(355), + [anon_sym_BANGinstanceof] = ACTIONS(357), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_BANG_EQ] = ACTIONS(355), + [anon_sym_LT_EQ_GT] = ACTIONS(357), + [anon_sym_EQ_EQ_EQ] = ACTIONS(357), + [anon_sym_BANG_EQ_EQ] = ACTIONS(357), + [anon_sym_EQ_TILDE] = ACTIONS(357), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_CARET] = ACTIONS(357), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(357), + [anon_sym_PIPE_PIPE] = ACTIONS(357), + [anon_sym_QMARK_COLON] = ACTIONS(357), + [anon_sym_STAR_STAR] = ACTIONS(357), + [anon_sym_ATinterface] = ACTIONS(357), + [anon_sym_interface] = ACTIONS(355), + [anon_sym_class] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(357), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(355), + [anon_sym_do] = ACTIONS(355), + [anon_sym_while] = ACTIONS(355), + [anon_sym_for] = ACTIONS(355), + [anon_sym_if] = ACTIONS(355), + [anon_sym_else] = ACTIONS(355), + [anon_sym_pipeline] = ACTIONS(355), + [anon_sym_return] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(355), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(357), + [anon_sym_DOLLAR_SLASH] = ACTIONS(357), + [anon_sym_switch] = ACTIONS(355), + [anon_sym_QMARK] = ACTIONS(355), + [anon_sym_try] = ACTIONS(355), + [anon_sym_int] = ACTIONS(355), + [anon_sym_boolean] = ACTIONS(355), + [anon_sym_char] = ACTIONS(355), + [anon_sym_short] = ACTIONS(355), + [anon_sym_long] = ACTIONS(355), + [anon_sym_float] = ACTIONS(355), + [anon_sym_double] = ACTIONS(355), + [anon_sym_void] = ACTIONS(355), + [anon_sym_public] = ACTIONS(355), + [anon_sym_protected] = ACTIONS(355), + [anon_sym_private] = ACTIONS(355), + [anon_sym_static] = ACTIONS(355), + [anon_sym_final] = ACTIONS(355), + [anon_sym_synchronized] = ACTIONS(355), + }, + [431] = { + [sym_comment] = STATE(431), + [sym_groovy_doc] = STATE(431), + [sym_identifier] = ACTIONS(517), + [anon_sym_break] = ACTIONS(517), + [anon_sym_continue] = ACTIONS(517), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_DOT_AMP] = ACTIONS(726), + [anon_sym_DOT_AT] = ACTIONS(726), + [anon_sym_QMARK_DOT] = ACTIONS(726), + [anon_sym_STAR_DOT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_import] = ACTIONS(517), + [anon_sym_as] = ACTIONS(730), + [anon_sym_package] = ACTIONS(517), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_assert] = ACTIONS(517), + [anon_sym_PLUS_PLUS] = ACTIONS(519), + [anon_sym_DASH_DASH] = ACTIONS(519), + [anon_sym_PERCENT] = ACTIONS(732), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_LT_LT] = ACTIONS(736), + [anon_sym_GT_GT] = ACTIONS(738), + [anon_sym_GT_GT_GT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(738), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_in] = ACTIONS(730), + [anon_sym_BANGin] = ACTIONS(730), + [anon_sym_instanceof] = ACTIONS(730), + [anon_sym_BANGinstanceof] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_LT_EQ_GT] = ACTIONS(744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(744), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(752), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [anon_sym_QMARK_COLON] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(519), + [anon_sym_interface] = ACTIONS(517), + [anon_sym_class] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_RBRACE] = ACTIONS(519), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(517), + [anon_sym_do] = ACTIONS(517), + [anon_sym_while] = ACTIONS(517), + [anon_sym_for] = ACTIONS(517), + [anon_sym_if] = ACTIONS(517), + [anon_sym_else] = ACTIONS(517), + [anon_sym_return] = ACTIONS(517), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE] = ACTIONS(517), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(519), + [anon_sym_DOLLAR_SLASH] = ACTIONS(519), + [anon_sym_switch] = ACTIONS(517), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(517), + [anon_sym_QMARK] = ACTIONS(762), + [anon_sym_try] = ACTIONS(517), + [anon_sym_int] = ACTIONS(517), + [anon_sym_boolean] = ACTIONS(517), + [anon_sym_char] = ACTIONS(517), + [anon_sym_short] = ACTIONS(517), + [anon_sym_long] = ACTIONS(517), + [anon_sym_float] = ACTIONS(517), + [anon_sym_double] = ACTIONS(517), + [anon_sym_void] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_protected] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_synchronized] = ACTIONS(517), + }, + [432] = { + [sym_comment] = STATE(432), + [sym_groovy_doc] = STATE(432), + [ts_builtin_sym_end] = ACTIONS(391), + [sym_identifier] = ACTIONS(389), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_SEMI] = ACTIONS(391), + [anon_sym_DOT_AMP] = ACTIONS(764), + [anon_sym_DOT_AT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(764), + [anon_sym_STAR_DOT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_import] = ACTIONS(389), + [anon_sym_as] = ACTIONS(768), + [anon_sym_package] = ACTIONS(389), + [anon_sym_AT] = ACTIONS(389), + [anon_sym_assert] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_GT_GT_GT] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(776), + [anon_sym_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_in] = ACTIONS(768), + [anon_sym_BANGin] = ACTIONS(768), + [anon_sym_instanceof] = ACTIONS(768), + [anon_sym_BANGinstanceof] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT_EQ_GT] = ACTIONS(782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_EQ_TILDE] = ACTIONS(782), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_QMARK_COLON] = ACTIONS(794), + [anon_sym_STAR_STAR] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(391), + [anon_sym_interface] = ACTIONS(389), + [anon_sym_class] = ACTIONS(389), + [anon_sym_COMMA] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(389), + [anon_sym_do] = ACTIONS(389), + [anon_sym_while] = ACTIONS(389), + [anon_sym_for] = ACTIONS(389), + [anon_sym_if] = ACTIONS(389), + [anon_sym_else] = ACTIONS(389), + [anon_sym_pipeline] = ACTIONS(389), + [anon_sym_return] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(391), + [anon_sym_DQUOTE] = ACTIONS(389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(391), + [anon_sym_DOLLAR_SLASH] = ACTIONS(391), + [anon_sym_switch] = ACTIONS(389), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_try] = ACTIONS(389), + [anon_sym_int] = ACTIONS(389), + [anon_sym_boolean] = ACTIONS(389), + [anon_sym_char] = ACTIONS(389), + [anon_sym_short] = ACTIONS(389), + [anon_sym_long] = ACTIONS(389), + [anon_sym_float] = ACTIONS(389), + [anon_sym_double] = ACTIONS(389), + [anon_sym_void] = ACTIONS(389), + [anon_sym_public] = ACTIONS(389), + [anon_sym_protected] = ACTIONS(389), + [anon_sym_private] = ACTIONS(389), + [anon_sym_static] = ACTIONS(389), + [anon_sym_final] = ACTIONS(389), + [anon_sym_synchronized] = ACTIONS(389), + }, + [433] = { + [sym_comment] = STATE(433), + [sym_groovy_doc] = STATE(433), + [sym_identifier] = ACTIONS(513), + [anon_sym_break] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(515), + [anon_sym_DOT_AMP] = ACTIONS(726), + [anon_sym_DOT_AT] = ACTIONS(726), + [anon_sym_QMARK_DOT] = ACTIONS(726), + [anon_sym_STAR_DOT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_import] = ACTIONS(513), + [anon_sym_as] = ACTIONS(730), + [anon_sym_package] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(513), + [anon_sym_assert] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(732), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_LT_LT] = ACTIONS(736), + [anon_sym_GT_GT] = ACTIONS(738), + [anon_sym_GT_GT_GT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(738), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_in] = ACTIONS(730), + [anon_sym_BANGin] = ACTIONS(730), + [anon_sym_instanceof] = ACTIONS(730), + [anon_sym_BANGinstanceof] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_LT_EQ_GT] = ACTIONS(744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(744), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(752), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [anon_sym_QMARK_COLON] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(515), + [anon_sym_interface] = ACTIONS(513), + [anon_sym_class] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_RBRACE] = ACTIONS(515), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(513), + [anon_sym_do] = ACTIONS(513), + [anon_sym_while] = ACTIONS(513), + [anon_sym_for] = ACTIONS(513), + [anon_sym_if] = ACTIONS(513), + [anon_sym_else] = ACTIONS(513), + [anon_sym_return] = ACTIONS(513), + [anon_sym_SQUOTE] = ACTIONS(513), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(513), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_SLASH] = ACTIONS(515), + [anon_sym_switch] = ACTIONS(513), + [anon_sym_case] = ACTIONS(513), + [anon_sym_default] = ACTIONS(513), + [anon_sym_QMARK] = ACTIONS(762), + [anon_sym_try] = ACTIONS(513), + [anon_sym_int] = ACTIONS(513), + [anon_sym_boolean] = ACTIONS(513), + [anon_sym_char] = ACTIONS(513), + [anon_sym_short] = ACTIONS(513), + [anon_sym_long] = ACTIONS(513), + [anon_sym_float] = ACTIONS(513), + [anon_sym_double] = ACTIONS(513), + [anon_sym_void] = ACTIONS(513), + [anon_sym_public] = ACTIONS(513), + [anon_sym_protected] = ACTIONS(513), + [anon_sym_private] = ACTIONS(513), + [anon_sym_static] = ACTIONS(513), + [anon_sym_final] = ACTIONS(513), + [anon_sym_synchronized] = ACTIONS(513), + }, + [434] = { + [sym_comment] = STATE(434), + [sym_groovy_doc] = STATE(434), + [sym_identifier] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(511), + [anon_sym_DOT_AMP] = ACTIONS(726), + [anon_sym_DOT_AT] = ACTIONS(726), + [anon_sym_QMARK_DOT] = ACTIONS(726), + [anon_sym_STAR_DOT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_import] = ACTIONS(509), + [anon_sym_as] = ACTIONS(730), + [anon_sym_package] = ACTIONS(509), + [anon_sym_AT] = ACTIONS(509), + [anon_sym_assert] = ACTIONS(509), + [anon_sym_PLUS_PLUS] = ACTIONS(511), + [anon_sym_DASH_DASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(732), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_LT_LT] = ACTIONS(736), + [anon_sym_GT_GT] = ACTIONS(738), + [anon_sym_GT_GT_GT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(738), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_in] = ACTIONS(730), + [anon_sym_BANGin] = ACTIONS(730), + [anon_sym_instanceof] = ACTIONS(730), + [anon_sym_BANGinstanceof] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_LT_EQ_GT] = ACTIONS(744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(744), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(752), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [anon_sym_QMARK_COLON] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(511), + [anon_sym_interface] = ACTIONS(509), + [anon_sym_class] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_RBRACE] = ACTIONS(511), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(509), + [anon_sym_do] = ACTIONS(509), + [anon_sym_while] = ACTIONS(509), + [anon_sym_for] = ACTIONS(509), + [anon_sym_if] = ACTIONS(509), + [anon_sym_else] = ACTIONS(509), + [anon_sym_return] = ACTIONS(509), + [anon_sym_SQUOTE] = ACTIONS(509), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(511), + [anon_sym_DQUOTE] = ACTIONS(509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_SLASH] = ACTIONS(511), + [anon_sym_switch] = ACTIONS(509), + [anon_sym_case] = ACTIONS(509), + [anon_sym_default] = ACTIONS(509), + [anon_sym_QMARK] = ACTIONS(762), + [anon_sym_try] = ACTIONS(509), + [anon_sym_int] = ACTIONS(509), + [anon_sym_boolean] = ACTIONS(509), + [anon_sym_char] = ACTIONS(509), + [anon_sym_short] = ACTIONS(509), + [anon_sym_long] = ACTIONS(509), + [anon_sym_float] = ACTIONS(509), + [anon_sym_double] = ACTIONS(509), + [anon_sym_void] = ACTIONS(509), + [anon_sym_public] = ACTIONS(509), + [anon_sym_protected] = ACTIONS(509), + [anon_sym_private] = ACTIONS(509), + [anon_sym_static] = ACTIONS(509), + [anon_sym_final] = ACTIONS(509), + [anon_sym_synchronized] = ACTIONS(509), + }, + [435] = { + [sym_comment] = STATE(435), + [sym_groovy_doc] = STATE(435), + [sym_identifier] = ACTIONS(505), + [anon_sym_break] = ACTIONS(505), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_DOT_AMP] = ACTIONS(726), + [anon_sym_DOT_AT] = ACTIONS(726), + [anon_sym_QMARK_DOT] = ACTIONS(726), + [anon_sym_STAR_DOT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_import] = ACTIONS(505), + [anon_sym_as] = ACTIONS(730), + [anon_sym_package] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(505), + [anon_sym_assert] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(732), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_LT_LT] = ACTIONS(736), + [anon_sym_GT_GT] = ACTIONS(738), + [anon_sym_GT_GT_GT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(738), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_in] = ACTIONS(730), + [anon_sym_BANGin] = ACTIONS(730), + [anon_sym_instanceof] = ACTIONS(730), + [anon_sym_BANGinstanceof] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_LT_EQ_GT] = ACTIONS(744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(744), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(752), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [anon_sym_QMARK_COLON] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(507), + [anon_sym_interface] = ACTIONS(505), + [anon_sym_class] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(507), + [anon_sym_RBRACE] = ACTIONS(507), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(505), + [anon_sym_do] = ACTIONS(505), + [anon_sym_while] = ACTIONS(505), + [anon_sym_for] = ACTIONS(505), + [anon_sym_if] = ACTIONS(505), + [anon_sym_else] = ACTIONS(505), + [anon_sym_return] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(507), + [anon_sym_DOLLAR_SLASH] = ACTIONS(507), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(505), + [anon_sym_default] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(762), + [anon_sym_try] = ACTIONS(505), + [anon_sym_int] = ACTIONS(505), + [anon_sym_boolean] = ACTIONS(505), + [anon_sym_char] = ACTIONS(505), + [anon_sym_short] = ACTIONS(505), + [anon_sym_long] = ACTIONS(505), + [anon_sym_float] = ACTIONS(505), + [anon_sym_double] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_public] = ACTIONS(505), + [anon_sym_protected] = ACTIONS(505), + [anon_sym_private] = ACTIONS(505), + [anon_sym_static] = ACTIONS(505), + [anon_sym_final] = ACTIONS(505), + [anon_sym_synchronized] = ACTIONS(505), + }, + [436] = { + [sym_comment] = STATE(436), + [sym_groovy_doc] = STATE(436), + [ts_builtin_sym_end] = ACTIONS(331), + [sym_identifier] = ACTIONS(329), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_DOT_AMP] = ACTIONS(331), + [anon_sym_DOT_AT] = ACTIONS(331), + [anon_sym_QMARK_DOT] = ACTIONS(331), + [anon_sym_STAR_DOT] = ACTIONS(331), + [anon_sym_STAR] = ACTIONS(329), + [anon_sym_import] = ACTIONS(329), + [anon_sym_as] = ACTIONS(329), + [anon_sym_package] = ACTIONS(329), + [anon_sym_AT] = ACTIONS(329), + [anon_sym_assert] = ACTIONS(329), + [anon_sym_PLUS_PLUS] = ACTIONS(331), + [anon_sym_DASH_DASH] = ACTIONS(331), + [anon_sym_PERCENT] = ACTIONS(331), + [anon_sym_SLASH] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(329), + [anon_sym_DASH] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(331), + [anon_sym_DOT_DOT] = ACTIONS(329), + [anon_sym_DOT_DOT_LT] = ACTIONS(331), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(331), + [anon_sym_LT_DOT_DOT] = ACTIONS(329), + [anon_sym_LT] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(329), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_GT_EQ] = ACTIONS(331), + [anon_sym_in] = ACTIONS(329), + [anon_sym_BANGin] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANGinstanceof] = ACTIONS(331), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_LT_EQ_GT] = ACTIONS(331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(331), + [anon_sym_EQ_TILDE] = ACTIONS(331), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(331), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(331), + [anon_sym_QMARK_COLON] = ACTIONS(331), + [anon_sym_STAR_STAR] = ACTIONS(331), + [anon_sym_ATinterface] = ACTIONS(331), + [anon_sym_interface] = ACTIONS(329), + [anon_sym_class] = ACTIONS(329), + [anon_sym_COMMA] = ACTIONS(331), + [anon_sym_LBRACE] = ACTIONS(331), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(329), + [anon_sym_do] = ACTIONS(329), + [anon_sym_while] = ACTIONS(329), + [anon_sym_for] = ACTIONS(329), + [anon_sym_if] = ACTIONS(329), + [anon_sym_else] = ACTIONS(329), + [anon_sym_pipeline] = ACTIONS(329), + [anon_sym_return] = ACTIONS(329), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(329), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(331), + [anon_sym_DOLLAR_SLASH] = ACTIONS(331), + [anon_sym_switch] = ACTIONS(329), + [anon_sym_QMARK] = ACTIONS(329), + [anon_sym_try] = ACTIONS(329), + [anon_sym_int] = ACTIONS(329), + [anon_sym_boolean] = ACTIONS(329), + [anon_sym_char] = ACTIONS(329), + [anon_sym_short] = ACTIONS(329), + [anon_sym_long] = ACTIONS(329), + [anon_sym_float] = ACTIONS(329), + [anon_sym_double] = ACTIONS(329), + [anon_sym_void] = ACTIONS(329), + [anon_sym_public] = ACTIONS(329), + [anon_sym_protected] = ACTIONS(329), + [anon_sym_private] = ACTIONS(329), + [anon_sym_static] = ACTIONS(329), + [anon_sym_final] = ACTIONS(329), + [anon_sym_synchronized] = ACTIONS(329), + }, + [437] = { + [sym_comment] = STATE(437), + [sym_groovy_doc] = STATE(437), + [ts_builtin_sym_end] = ACTIONS(411), + [sym_identifier] = ACTIONS(409), + [anon_sym_break] = ACTIONS(409), + [anon_sym_continue] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(411), + [anon_sym_DOT_AMP] = ACTIONS(411), + [anon_sym_DOT_AT] = ACTIONS(411), + [anon_sym_QMARK_DOT] = ACTIONS(411), + [anon_sym_STAR_DOT] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(409), + [anon_sym_import] = ACTIONS(409), + [anon_sym_as] = ACTIONS(409), + [anon_sym_package] = ACTIONS(409), + [anon_sym_AT] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_PLUS_PLUS] = ACTIONS(411), + [anon_sym_DASH_DASH] = ACTIONS(411), + [anon_sym_PERCENT] = ACTIONS(411), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_LT_LT] = ACTIONS(411), + [anon_sym_GT_GT] = ACTIONS(409), + [anon_sym_GT_GT_GT] = ACTIONS(411), + [anon_sym_DOT_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT_LT] = ACTIONS(411), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(411), + [anon_sym_LT_DOT_DOT] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_LT_EQ] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_GT_EQ] = ACTIONS(411), + [anon_sym_in] = ACTIONS(409), + [anon_sym_BANGin] = ACTIONS(409), + [anon_sym_instanceof] = ACTIONS(409), + [anon_sym_BANGinstanceof] = ACTIONS(411), + [anon_sym_EQ_EQ] = ACTIONS(409), + [anon_sym_BANG_EQ] = ACTIONS(409), + [anon_sym_LT_EQ_GT] = ACTIONS(411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(411), + [anon_sym_EQ_TILDE] = ACTIONS(411), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_CARET] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(411), + [anon_sym_PIPE_PIPE] = ACTIONS(411), + [anon_sym_QMARK_COLON] = ACTIONS(411), + [anon_sym_STAR_STAR] = ACTIONS(411), + [anon_sym_ATinterface] = ACTIONS(411), + [anon_sym_interface] = ACTIONS(409), + [anon_sym_class] = ACTIONS(409), + [anon_sym_COMMA] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(409), + [anon_sym_do] = ACTIONS(409), + [anon_sym_while] = ACTIONS(409), + [anon_sym_for] = ACTIONS(409), + [anon_sym_if] = ACTIONS(409), + [anon_sym_else] = ACTIONS(409), + [anon_sym_pipeline] = ACTIONS(409), + [anon_sym_return] = ACTIONS(409), + [anon_sym_SQUOTE] = ACTIONS(409), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(411), + [anon_sym_DOLLAR_SLASH] = ACTIONS(411), + [anon_sym_switch] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(409), + [anon_sym_try] = ACTIONS(409), + [anon_sym_int] = ACTIONS(409), + [anon_sym_boolean] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_short] = ACTIONS(409), + [anon_sym_long] = ACTIONS(409), + [anon_sym_float] = ACTIONS(409), + [anon_sym_double] = ACTIONS(409), + [anon_sym_void] = ACTIONS(409), + [anon_sym_public] = ACTIONS(409), + [anon_sym_protected] = ACTIONS(409), + [anon_sym_private] = ACTIONS(409), + [anon_sym_static] = ACTIONS(409), + [anon_sym_final] = ACTIONS(409), + [anon_sym_synchronized] = ACTIONS(409), + }, + [438] = { + [sym_comment] = STATE(438), + [sym_groovy_doc] = STATE(438), + [ts_builtin_sym_end] = ACTIONS(75), + [sym_identifier] = ACTIONS(73), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(73), + [anon_sym_STAR_COLON] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(75), + [anon_sym_import] = ACTIONS(73), + [anon_sym_package] = ACTIONS(73), + [anon_sym_AT] = ACTIONS(73), + [anon_sym_assert] = ACTIONS(73), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_STAR_STAR_EQ] = ACTIONS(75), + [anon_sym_STAR_EQ] = ACTIONS(75), + [anon_sym_SLASH_EQ] = ACTIONS(75), + [anon_sym_PERCENT_EQ] = ACTIONS(75), + [anon_sym_PLUS_EQ] = ACTIONS(75), + [anon_sym_DASH_EQ] = ACTIONS(75), + [anon_sym_LT_LT_EQ] = ACTIONS(75), + [anon_sym_GT_GT_EQ] = ACTIONS(75), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(75), + [anon_sym_AMP_EQ] = ACTIONS(75), + [anon_sym_CARET_EQ] = ACTIONS(75), + [anon_sym_PIPE_EQ] = ACTIONS(75), + [anon_sym_QMARK_EQ] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(73), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ATinterface] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_class] = ACTIONS(73), + [anon_sym_COMMA] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_RBRACE] = ACTIONS(75), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(73), + [anon_sym_this] = ACTIONS(73), + [anon_sym_null] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_RPAREN] = ACTIONS(75), + [anon_sym_do] = ACTIONS(73), + [anon_sym_while] = ACTIONS(73), + [anon_sym_for] = ACTIONS(73), + [anon_sym_if] = ACTIONS(73), + [anon_sym_else] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(73), + [aux_sym_number_literal_token1] = ACTIONS(73), + [aux_sym_number_literal_token2] = ACTIONS(75), + [aux_sym_number_literal_token3] = ACTIONS(75), + [aux_sym_number_literal_token4] = ACTIONS(73), + [aux_sym_number_literal_token5] = ACTIONS(75), + [anon_sym_pipeline] = ACTIONS(73), + [anon_sym_return] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(75), + [anon_sym_DOLLAR_SLASH] = ACTIONS(75), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_try] = ACTIONS(73), + [anon_sym_catch] = ACTIONS(73), + [anon_sym_finally] = ACTIONS(73), + [anon_sym_int] = ACTIONS(73), + [anon_sym_boolean] = ACTIONS(73), + [anon_sym_char] = ACTIONS(73), + [anon_sym_short] = ACTIONS(73), + [anon_sym_long] = ACTIONS(73), + [anon_sym_float] = ACTIONS(73), + [anon_sym_double] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_LBRACK_RBRACK] = ACTIONS(75), + [anon_sym_public] = ACTIONS(73), + [anon_sym_protected] = ACTIONS(73), + [anon_sym_private] = ACTIONS(73), + [anon_sym_static] = ACTIONS(73), + [anon_sym_final] = ACTIONS(73), + [anon_sym_synchronized] = ACTIONS(73), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_new] = ACTIONS(73), + }, + [439] = { + [sym_comment] = STATE(439), + [sym_groovy_doc] = STATE(439), + [ts_builtin_sym_end] = ACTIONS(407), + [sym_identifier] = ACTIONS(405), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(407), + [anon_sym_DOT_AMP] = ACTIONS(407), + [anon_sym_DOT_AT] = ACTIONS(407), + [anon_sym_QMARK_DOT] = ACTIONS(407), + [anon_sym_STAR_DOT] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_import] = ACTIONS(405), + [anon_sym_as] = ACTIONS(405), + [anon_sym_package] = ACTIONS(405), + [anon_sym_AT] = ACTIONS(405), + [anon_sym_assert] = ACTIONS(405), + [anon_sym_PLUS_PLUS] = ACTIONS(407), + [anon_sym_DASH_DASH] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_LT_LT] = ACTIONS(407), + [anon_sym_GT_GT] = ACTIONS(405), + [anon_sym_GT_GT_GT] = ACTIONS(407), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT_LT] = ACTIONS(407), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(407), + [anon_sym_LT_DOT_DOT] = ACTIONS(405), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(405), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_in] = ACTIONS(405), + [anon_sym_BANGin] = ACTIONS(405), + [anon_sym_instanceof] = ACTIONS(405), + [anon_sym_BANGinstanceof] = ACTIONS(407), + [anon_sym_EQ_EQ] = ACTIONS(405), + [anon_sym_BANG_EQ] = ACTIONS(405), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_EQ_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ_EQ] = ACTIONS(407), + [anon_sym_EQ_TILDE] = ACTIONS(407), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(405), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [anon_sym_QMARK_COLON] = ACTIONS(407), + [anon_sym_STAR_STAR] = ACTIONS(407), + [anon_sym_ATinterface] = ACTIONS(407), + [anon_sym_interface] = ACTIONS(405), + [anon_sym_class] = ACTIONS(405), + [anon_sym_COMMA] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(407), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(405), + [anon_sym_do] = ACTIONS(405), + [anon_sym_while] = ACTIONS(405), + [anon_sym_for] = ACTIONS(405), + [anon_sym_if] = ACTIONS(405), + [anon_sym_else] = ACTIONS(405), + [anon_sym_pipeline] = ACTIONS(405), + [anon_sym_return] = ACTIONS(405), + [anon_sym_SQUOTE] = ACTIONS(405), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(405), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(407), + [anon_sym_DOLLAR_SLASH] = ACTIONS(407), + [anon_sym_switch] = ACTIONS(405), + [anon_sym_QMARK] = ACTIONS(405), + [anon_sym_try] = ACTIONS(405), + [anon_sym_int] = ACTIONS(405), + [anon_sym_boolean] = ACTIONS(405), + [anon_sym_char] = ACTIONS(405), + [anon_sym_short] = ACTIONS(405), + [anon_sym_long] = ACTIONS(405), + [anon_sym_float] = ACTIONS(405), + [anon_sym_double] = ACTIONS(405), + [anon_sym_void] = ACTIONS(405), + [anon_sym_public] = ACTIONS(405), + [anon_sym_protected] = ACTIONS(405), + [anon_sym_private] = ACTIONS(405), + [anon_sym_static] = ACTIONS(405), + [anon_sym_final] = ACTIONS(405), + [anon_sym_synchronized] = ACTIONS(405), + }, + [440] = { + [sym_comment] = STATE(440), + [sym_groovy_doc] = STATE(440), + [ts_builtin_sym_end] = ACTIONS(377), + [sym_identifier] = ACTIONS(375), + [anon_sym_break] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(377), + [anon_sym_DOT_AMP] = ACTIONS(764), + [anon_sym_DOT_AT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(764), + [anon_sym_STAR_DOT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_import] = ACTIONS(375), + [anon_sym_as] = ACTIONS(768), + [anon_sym_package] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(375), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_PLUS_PLUS] = ACTIONS(377), + [anon_sym_DASH_DASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_GT_GT_GT] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(776), + [anon_sym_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_in] = ACTIONS(768), + [anon_sym_BANGin] = ACTIONS(768), + [anon_sym_instanceof] = ACTIONS(768), + [anon_sym_BANGinstanceof] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT_EQ_GT] = ACTIONS(782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_EQ_TILDE] = ACTIONS(782), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_QMARK_COLON] = ACTIONS(794), + [anon_sym_STAR_STAR] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(377), + [anon_sym_interface] = ACTIONS(375), + [anon_sym_class] = ACTIONS(375), + [anon_sym_COMMA] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(377), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(375), + [anon_sym_do] = ACTIONS(375), + [anon_sym_while] = ACTIONS(375), + [anon_sym_for] = ACTIONS(375), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(375), + [anon_sym_pipeline] = ACTIONS(375), + [anon_sym_return] = ACTIONS(375), + [anon_sym_SQUOTE] = ACTIONS(375), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_DOLLAR_SLASH] = ACTIONS(377), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_try] = ACTIONS(375), + [anon_sym_int] = ACTIONS(375), + [anon_sym_boolean] = ACTIONS(375), + [anon_sym_char] = ACTIONS(375), + [anon_sym_short] = ACTIONS(375), + [anon_sym_long] = ACTIONS(375), + [anon_sym_float] = ACTIONS(375), + [anon_sym_double] = ACTIONS(375), + [anon_sym_void] = ACTIONS(375), + [anon_sym_public] = ACTIONS(375), + [anon_sym_protected] = ACTIONS(375), + [anon_sym_private] = ACTIONS(375), + [anon_sym_static] = ACTIONS(375), + [anon_sym_final] = ACTIONS(375), + [anon_sym_synchronized] = ACTIONS(375), + }, + [441] = { + [sym_comment] = STATE(441), + [sym_groovy_doc] = STATE(441), + [ts_builtin_sym_end] = ACTIONS(373), + [sym_identifier] = ACTIONS(371), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(371), + [anon_sym_SEMI] = ACTIONS(373), + [anon_sym_DOT_AMP] = ACTIONS(764), + [anon_sym_DOT_AT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(764), + [anon_sym_STAR_DOT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_import] = ACTIONS(371), + [anon_sym_as] = ACTIONS(768), + [anon_sym_package] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_PLUS_PLUS] = ACTIONS(373), + [anon_sym_DASH_DASH] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_GT_GT_GT] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(776), + [anon_sym_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_in] = ACTIONS(768), + [anon_sym_BANGin] = ACTIONS(768), + [anon_sym_instanceof] = ACTIONS(768), + [anon_sym_BANGinstanceof] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT_EQ_GT] = ACTIONS(782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_EQ_TILDE] = ACTIONS(782), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_QMARK_COLON] = ACTIONS(794), + [anon_sym_STAR_STAR] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(373), + [anon_sym_interface] = ACTIONS(371), + [anon_sym_class] = ACTIONS(371), + [anon_sym_COMMA] = ACTIONS(373), + [anon_sym_LBRACE] = ACTIONS(373), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(371), + [anon_sym_do] = ACTIONS(371), + [anon_sym_while] = ACTIONS(371), + [anon_sym_for] = ACTIONS(371), + [anon_sym_if] = ACTIONS(371), + [anon_sym_else] = ACTIONS(371), + [anon_sym_pipeline] = ACTIONS(371), + [anon_sym_return] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_SLASH] = ACTIONS(373), + [anon_sym_switch] = ACTIONS(371), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_try] = ACTIONS(371), + [anon_sym_int] = ACTIONS(371), + [anon_sym_boolean] = ACTIONS(371), + [anon_sym_char] = ACTIONS(371), + [anon_sym_short] = ACTIONS(371), + [anon_sym_long] = ACTIONS(371), + [anon_sym_float] = ACTIONS(371), + [anon_sym_double] = ACTIONS(371), + [anon_sym_void] = ACTIONS(371), + [anon_sym_public] = ACTIONS(371), + [anon_sym_protected] = ACTIONS(371), + [anon_sym_private] = ACTIONS(371), + [anon_sym_static] = ACTIONS(371), + [anon_sym_final] = ACTIONS(371), + [anon_sym_synchronized] = ACTIONS(371), + }, + [442] = { + [sym_comment] = STATE(442), + [sym_groovy_doc] = STATE(442), + [ts_builtin_sym_end] = ACTIONS(403), + [sym_identifier] = ACTIONS(401), + [anon_sym_break] = ACTIONS(401), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(403), + [anon_sym_DOT_AMP] = ACTIONS(403), + [anon_sym_DOT_AT] = ACTIONS(403), + [anon_sym_QMARK_DOT] = ACTIONS(403), + [anon_sym_STAR_DOT] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_import] = ACTIONS(401), + [anon_sym_as] = ACTIONS(401), + [anon_sym_package] = ACTIONS(401), + [anon_sym_AT] = ACTIONS(401), + [anon_sym_assert] = ACTIONS(401), + [anon_sym_PLUS_PLUS] = ACTIONS(403), + [anon_sym_DASH_DASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_GT_GT_GT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_LT] = ACTIONS(403), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(403), + [anon_sym_LT_DOT_DOT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(403), + [anon_sym_in] = ACTIONS(401), + [anon_sym_BANGin] = ACTIONS(401), + [anon_sym_instanceof] = ACTIONS(401), + [anon_sym_BANGinstanceof] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_LT_EQ_GT] = ACTIONS(403), + [anon_sym_EQ_EQ_EQ] = ACTIONS(403), + [anon_sym_BANG_EQ_EQ] = ACTIONS(403), + [anon_sym_EQ_TILDE] = ACTIONS(403), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_QMARK_COLON] = ACTIONS(403), + [anon_sym_STAR_STAR] = ACTIONS(403), + [anon_sym_ATinterface] = ACTIONS(403), + [anon_sym_interface] = ACTIONS(401), + [anon_sym_class] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(403), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(401), + [anon_sym_do] = ACTIONS(401), + [anon_sym_while] = ACTIONS(401), + [anon_sym_for] = ACTIONS(401), + [anon_sym_if] = ACTIONS(401), + [anon_sym_else] = ACTIONS(401), + [anon_sym_pipeline] = ACTIONS(401), + [anon_sym_return] = ACTIONS(401), + [anon_sym_SQUOTE] = ACTIONS(401), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(403), + [anon_sym_DQUOTE] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_DOLLAR_SLASH] = ACTIONS(403), + [anon_sym_switch] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_try] = ACTIONS(401), + [anon_sym_int] = ACTIONS(401), + [anon_sym_boolean] = ACTIONS(401), + [anon_sym_char] = ACTIONS(401), + [anon_sym_short] = ACTIONS(401), + [anon_sym_long] = ACTIONS(401), + [anon_sym_float] = ACTIONS(401), + [anon_sym_double] = ACTIONS(401), + [anon_sym_void] = ACTIONS(401), + [anon_sym_public] = ACTIONS(401), + [anon_sym_protected] = ACTIONS(401), + [anon_sym_private] = ACTIONS(401), + [anon_sym_static] = ACTIONS(401), + [anon_sym_final] = ACTIONS(401), + [anon_sym_synchronized] = ACTIONS(401), + }, + [443] = { + [sym_comment] = STATE(443), + [sym_groovy_doc] = STATE(443), + [ts_builtin_sym_end] = ACTIONS(353), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(764), + [anon_sym_DOT_AT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(764), + [anon_sym_STAR_DOT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(353), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LT_LT] = ACTIONS(353), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_GT_GT_GT] = ACTIONS(353), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_pipeline] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [444] = { + [sym_comment] = STATE(444), + [sym_groovy_doc] = STATE(444), + [sym_identifier] = ACTIONS(473), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_DOT_AMP] = ACTIONS(726), + [anon_sym_DOT_AT] = ACTIONS(726), + [anon_sym_QMARK_DOT] = ACTIONS(726), + [anon_sym_STAR_DOT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_import] = ACTIONS(473), + [anon_sym_as] = ACTIONS(730), + [anon_sym_package] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(473), + [anon_sym_assert] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_PERCENT] = ACTIONS(732), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_LT_LT] = ACTIONS(736), + [anon_sym_GT_GT] = ACTIONS(738), + [anon_sym_GT_GT_GT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(738), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_LT_DOT_DOT] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_in] = ACTIONS(730), + [anon_sym_BANGin] = ACTIONS(730), + [anon_sym_instanceof] = ACTIONS(730), + [anon_sym_BANGinstanceof] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_LT_EQ_GT] = ACTIONS(744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(744), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(752), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [anon_sym_QMARK_COLON] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(475), + [anon_sym_interface] = ACTIONS(473), + [anon_sym_class] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_RBRACE] = ACTIONS(475), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(473), + [anon_sym_do] = ACTIONS(473), + [anon_sym_while] = ACTIONS(473), + [anon_sym_for] = ACTIONS(473), + [anon_sym_if] = ACTIONS(473), + [anon_sym_else] = ACTIONS(473), + [anon_sym_return] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_SLASH] = ACTIONS(475), + [anon_sym_switch] = ACTIONS(473), + [anon_sym_case] = ACTIONS(473), + [anon_sym_default] = ACTIONS(473), + [anon_sym_QMARK] = ACTIONS(762), + [anon_sym_try] = ACTIONS(473), + [anon_sym_int] = ACTIONS(473), + [anon_sym_boolean] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_short] = ACTIONS(473), + [anon_sym_long] = ACTIONS(473), + [anon_sym_float] = ACTIONS(473), + [anon_sym_double] = ACTIONS(473), + [anon_sym_void] = ACTIONS(473), + [anon_sym_public] = ACTIONS(473), + [anon_sym_protected] = ACTIONS(473), + [anon_sym_private] = ACTIONS(473), + [anon_sym_static] = ACTIONS(473), + [anon_sym_final] = ACTIONS(473), + [anon_sym_synchronized] = ACTIONS(473), + }, + [445] = { + [sym_comment] = STATE(445), + [sym_groovy_doc] = STATE(445), + [ts_builtin_sym_end] = ACTIONS(353), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(764), + [anon_sym_DOT_AT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(764), + [anon_sym_STAR_DOT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(768), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_GT_GT_GT] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(776), + [anon_sym_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_in] = ACTIONS(768), + [anon_sym_BANGin] = ACTIONS(768), + [anon_sym_instanceof] = ACTIONS(768), + [anon_sym_BANGinstanceof] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT_EQ_GT] = ACTIONS(782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_EQ_TILDE] = ACTIONS(782), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_pipeline] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [446] = { + [sym_comment] = STATE(446), + [sym_groovy_doc] = STATE(446), + [ts_builtin_sym_end] = ACTIONS(353), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(764), + [anon_sym_DOT_AT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(764), + [anon_sym_STAR_DOT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(768), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_GT_GT_GT] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(776), + [anon_sym_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_in] = ACTIONS(768), + [anon_sym_BANGin] = ACTIONS(768), + [anon_sym_instanceof] = ACTIONS(768), + [anon_sym_BANGinstanceof] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT_EQ_GT] = ACTIONS(782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_EQ_TILDE] = ACTIONS(782), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_pipeline] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [447] = { + [sym_comment] = STATE(447), + [sym_groovy_doc] = STATE(447), + [ts_builtin_sym_end] = ACTIONS(353), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(764), + [anon_sym_DOT_AT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(764), + [anon_sym_STAR_DOT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(768), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_GT_GT_GT] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(776), + [anon_sym_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_in] = ACTIONS(768), + [anon_sym_BANGin] = ACTIONS(768), + [anon_sym_instanceof] = ACTIONS(768), + [anon_sym_BANGinstanceof] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT_EQ_GT] = ACTIONS(782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_EQ_TILDE] = ACTIONS(782), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_pipeline] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [448] = { + [sym_comment] = STATE(448), + [sym_groovy_doc] = STATE(448), + [ts_builtin_sym_end] = ACTIONS(353), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(764), + [anon_sym_DOT_AT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(764), + [anon_sym_STAR_DOT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(768), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_GT_GT_GT] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(776), + [anon_sym_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_in] = ACTIONS(768), + [anon_sym_BANGin] = ACTIONS(768), + [anon_sym_instanceof] = ACTIONS(768), + [anon_sym_BANGinstanceof] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT_EQ_GT] = ACTIONS(782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_EQ_TILDE] = ACTIONS(782), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_pipeline] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [449] = { + [sym_comment] = STATE(449), + [sym_groovy_doc] = STATE(449), + [ts_builtin_sym_end] = ACTIONS(369), + [sym_identifier] = ACTIONS(367), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(369), + [anon_sym_DOT_AMP] = ACTIONS(764), + [anon_sym_DOT_AT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(764), + [anon_sym_STAR_DOT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_import] = ACTIONS(367), + [anon_sym_as] = ACTIONS(768), + [anon_sym_package] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(367), + [anon_sym_assert] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_GT_GT_GT] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(776), + [anon_sym_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_in] = ACTIONS(768), + [anon_sym_BANGin] = ACTIONS(768), + [anon_sym_instanceof] = ACTIONS(768), + [anon_sym_BANGinstanceof] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT_EQ_GT] = ACTIONS(782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_EQ_TILDE] = ACTIONS(782), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_QMARK_COLON] = ACTIONS(794), + [anon_sym_STAR_STAR] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(369), + [anon_sym_interface] = ACTIONS(367), + [anon_sym_class] = ACTIONS(367), + [anon_sym_COMMA] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(369), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(367), + [anon_sym_do] = ACTIONS(367), + [anon_sym_while] = ACTIONS(367), + [anon_sym_for] = ACTIONS(367), + [anon_sym_if] = ACTIONS(367), + [anon_sym_else] = ACTIONS(367), + [anon_sym_pipeline] = ACTIONS(367), + [anon_sym_return] = ACTIONS(367), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR_SLASH] = ACTIONS(369), + [anon_sym_switch] = ACTIONS(367), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_try] = ACTIONS(367), + [anon_sym_int] = ACTIONS(367), + [anon_sym_boolean] = ACTIONS(367), + [anon_sym_char] = ACTIONS(367), + [anon_sym_short] = ACTIONS(367), + [anon_sym_long] = ACTIONS(367), + [anon_sym_float] = ACTIONS(367), + [anon_sym_double] = ACTIONS(367), + [anon_sym_void] = ACTIONS(367), + [anon_sym_public] = ACTIONS(367), + [anon_sym_protected] = ACTIONS(367), + [anon_sym_private] = ACTIONS(367), + [anon_sym_static] = ACTIONS(367), + [anon_sym_final] = ACTIONS(367), + [anon_sym_synchronized] = ACTIONS(367), + }, + [450] = { + [sym_comment] = STATE(450), + [sym_groovy_doc] = STATE(450), + [ts_builtin_sym_end] = ACTIONS(353), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(764), + [anon_sym_DOT_AT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(764), + [anon_sym_STAR_DOT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(353), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LT_LT] = ACTIONS(353), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_GT_GT_GT] = ACTIONS(353), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_pipeline] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [451] = { + [sym_comment] = STATE(451), + [sym_groovy_doc] = STATE(451), + [ts_builtin_sym_end] = ACTIONS(71), + [sym_identifier] = ACTIONS(69), + [anon_sym_break] = ACTIONS(69), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_SEMI] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(69), + [anon_sym_STAR_COLON] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(71), + [anon_sym_import] = ACTIONS(69), + [anon_sym_package] = ACTIONS(69), + [anon_sym_AT] = ACTIONS(69), + [anon_sym_assert] = ACTIONS(69), + [anon_sym_EQ] = ACTIONS(71), + [anon_sym_STAR_STAR_EQ] = ACTIONS(71), + [anon_sym_STAR_EQ] = ACTIONS(71), + [anon_sym_SLASH_EQ] = ACTIONS(71), + [anon_sym_PERCENT_EQ] = ACTIONS(71), + [anon_sym_PLUS_EQ] = ACTIONS(71), + [anon_sym_DASH_EQ] = ACTIONS(71), + [anon_sym_LT_LT_EQ] = ACTIONS(71), + [anon_sym_GT_GT_EQ] = ACTIONS(71), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(71), + [anon_sym_AMP_EQ] = ACTIONS(71), + [anon_sym_CARET_EQ] = ACTIONS(71), + [anon_sym_PIPE_EQ] = ACTIONS(71), + [anon_sym_QMARK_EQ] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(69), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(69), + [anon_sym_class] = ACTIONS(69), + [anon_sym_COMMA] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(71), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(69), + [anon_sym_this] = ACTIONS(69), + [anon_sym_null] = ACTIONS(69), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(71), + [anon_sym_do] = ACTIONS(69), + [anon_sym_while] = ACTIONS(69), + [anon_sym_for] = ACTIONS(69), + [anon_sym_if] = ACTIONS(69), + [anon_sym_else] = ACTIONS(69), + [anon_sym_LBRACK] = ACTIONS(69), + [aux_sym_number_literal_token1] = ACTIONS(69), + [aux_sym_number_literal_token2] = ACTIONS(71), + [aux_sym_number_literal_token3] = ACTIONS(71), + [aux_sym_number_literal_token4] = ACTIONS(69), + [aux_sym_number_literal_token5] = ACTIONS(71), + [anon_sym_pipeline] = ACTIONS(69), + [anon_sym_return] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_SLASH] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_try] = ACTIONS(69), + [anon_sym_catch] = ACTIONS(69), + [anon_sym_finally] = ACTIONS(69), + [anon_sym_int] = ACTIONS(69), + [anon_sym_boolean] = ACTIONS(69), + [anon_sym_char] = ACTIONS(69), + [anon_sym_short] = ACTIONS(69), + [anon_sym_long] = ACTIONS(69), + [anon_sym_float] = ACTIONS(69), + [anon_sym_double] = ACTIONS(69), + [anon_sym_void] = ACTIONS(69), + [anon_sym_LBRACK_RBRACK] = ACTIONS(71), + [anon_sym_public] = ACTIONS(69), + [anon_sym_protected] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_final] = ACTIONS(69), + [anon_sym_synchronized] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_new] = ACTIONS(69), + }, + [452] = { + [sym_comment] = STATE(452), + [sym_groovy_doc] = STATE(452), + [ts_builtin_sym_end] = ACTIONS(93), + [sym_identifier] = ACTIONS(99), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_DOT_AMP] = ACTIONS(93), + [anon_sym_DOT_AT] = ACTIONS(93), + [anon_sym_QMARK_DOT] = ACTIONS(93), + [anon_sym_STAR_DOT] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_import] = ACTIONS(99), + [anon_sym_as] = ACTIONS(99), + [anon_sym_package] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_assert] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(93), + [anon_sym_SLASH] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(99), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_LT_LT] = ACTIONS(93), + [anon_sym_GT_GT] = ACTIONS(99), + [anon_sym_GT_GT_GT] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(99), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_in] = ACTIONS(99), + [anon_sym_BANGin] = ACTIONS(99), + [anon_sym_instanceof] = ACTIONS(99), + [anon_sym_BANGinstanceof] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_LT_EQ_GT] = ACTIONS(93), + [anon_sym_EQ_EQ_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ_EQ] = ACTIONS(93), + [anon_sym_EQ_TILDE] = ACTIONS(93), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(99), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(93), + [anon_sym_ATinterface] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(99), + [anon_sym_class] = ACTIONS(99), + [anon_sym_COMMA] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(93), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(99), + [anon_sym_do] = ACTIONS(99), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(99), + [anon_sym_if] = ACTIONS(99), + [anon_sym_else] = ACTIONS(99), + [anon_sym_pipeline] = ACTIONS(99), + [anon_sym_return] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_SLASH] = ACTIONS(93), + [anon_sym_switch] = ACTIONS(99), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_int] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_char] = ACTIONS(99), + [anon_sym_short] = ACTIONS(99), + [anon_sym_long] = ACTIONS(99), + [anon_sym_float] = ACTIONS(99), + [anon_sym_double] = ACTIONS(99), + [anon_sym_void] = ACTIONS(99), + [anon_sym_public] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_static] = ACTIONS(99), + [anon_sym_final] = ACTIONS(99), + [anon_sym_synchronized] = ACTIONS(99), + }, + [453] = { + [sym_comment] = STATE(453), + [sym_groovy_doc] = STATE(453), + [ts_builtin_sym_end] = ACTIONS(423), + [sym_identifier] = ACTIONS(421), + [anon_sym_break] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_SEMI] = ACTIONS(423), + [anon_sym_DOT_AMP] = ACTIONS(423), + [anon_sym_DOT_AT] = ACTIONS(423), + [anon_sym_QMARK_DOT] = ACTIONS(423), + [anon_sym_STAR_DOT] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(421), + [anon_sym_import] = ACTIONS(421), + [anon_sym_as] = ACTIONS(421), + [anon_sym_package] = ACTIONS(421), + [anon_sym_AT] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_PLUS_PLUS] = ACTIONS(423), + [anon_sym_DASH_DASH] = ACTIONS(423), + [anon_sym_PERCENT] = ACTIONS(423), + [anon_sym_SLASH] = ACTIONS(421), + [anon_sym_PLUS] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(421), + [anon_sym_LT_LT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(421), + [anon_sym_GT_GT_GT] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(421), + [anon_sym_DOT_DOT_LT] = ACTIONS(423), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(423), + [anon_sym_LT_DOT_DOT] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_LT_EQ] = ACTIONS(421), + [anon_sym_GT] = ACTIONS(421), + [anon_sym_GT_EQ] = ACTIONS(423), + [anon_sym_in] = ACTIONS(421), + [anon_sym_BANGin] = ACTIONS(421), + [anon_sym_instanceof] = ACTIONS(421), + [anon_sym_BANGinstanceof] = ACTIONS(423), + [anon_sym_EQ_EQ] = ACTIONS(421), + [anon_sym_BANG_EQ] = ACTIONS(421), + [anon_sym_LT_EQ_GT] = ACTIONS(423), + [anon_sym_EQ_EQ_EQ] = ACTIONS(423), + [anon_sym_BANG_EQ_EQ] = ACTIONS(423), + [anon_sym_EQ_TILDE] = ACTIONS(423), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(421), + [anon_sym_CARET] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_AMP_AMP] = ACTIONS(423), + [anon_sym_PIPE_PIPE] = ACTIONS(423), + [anon_sym_QMARK_COLON] = ACTIONS(423), + [anon_sym_STAR_STAR] = ACTIONS(423), + [anon_sym_ATinterface] = ACTIONS(423), + [anon_sym_interface] = ACTIONS(421), + [anon_sym_class] = ACTIONS(421), + [anon_sym_COMMA] = ACTIONS(423), + [anon_sym_LBRACE] = ACTIONS(423), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(421), + [anon_sym_do] = ACTIONS(421), + [anon_sym_while] = ACTIONS(421), + [anon_sym_for] = ACTIONS(421), + [anon_sym_if] = ACTIONS(421), + [anon_sym_else] = ACTIONS(421), + [anon_sym_pipeline] = ACTIONS(421), + [anon_sym_return] = ACTIONS(421), + [anon_sym_SQUOTE] = ACTIONS(421), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(423), + [anon_sym_DQUOTE] = ACTIONS(421), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(423), + [anon_sym_DOLLAR_SLASH] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(421), + [anon_sym_QMARK] = ACTIONS(421), + [anon_sym_try] = ACTIONS(421), + [anon_sym_int] = ACTIONS(421), + [anon_sym_boolean] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_short] = ACTIONS(421), + [anon_sym_long] = ACTIONS(421), + [anon_sym_float] = ACTIONS(421), + [anon_sym_double] = ACTIONS(421), + [anon_sym_void] = ACTIONS(421), + [anon_sym_public] = ACTIONS(421), + [anon_sym_protected] = ACTIONS(421), + [anon_sym_private] = ACTIONS(421), + [anon_sym_static] = ACTIONS(421), + [anon_sym_final] = ACTIONS(421), + [anon_sym_synchronized] = ACTIONS(421), + }, + [454] = { + [sym_comment] = STATE(454), + [sym_groovy_doc] = STATE(454), + [ts_builtin_sym_end] = ACTIONS(353), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(764), + [anon_sym_DOT_AT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(764), + [anon_sym_STAR_DOT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_GT_GT_GT] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(776), + [anon_sym_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_pipeline] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [455] = { + [sym_comment] = STATE(455), + [sym_groovy_doc] = STATE(455), + [ts_builtin_sym_end] = ACTIONS(361), + [sym_identifier] = ACTIONS(359), + [anon_sym_break] = ACTIONS(359), + [anon_sym_continue] = ACTIONS(359), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym_DOT_AMP] = ACTIONS(361), + [anon_sym_DOT_AT] = ACTIONS(361), + [anon_sym_QMARK_DOT] = ACTIONS(361), + [anon_sym_STAR_DOT] = ACTIONS(361), + [anon_sym_STAR] = ACTIONS(359), + [anon_sym_import] = ACTIONS(359), + [anon_sym_as] = ACTIONS(359), + [anon_sym_package] = ACTIONS(359), + [anon_sym_AT] = ACTIONS(359), + [anon_sym_assert] = ACTIONS(359), + [anon_sym_PLUS_PLUS] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(361), + [anon_sym_PERCENT] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(359), + [anon_sym_DASH] = ACTIONS(359), + [anon_sym_LT_LT] = ACTIONS(361), + [anon_sym_GT_GT] = ACTIONS(359), + [anon_sym_GT_GT_GT] = ACTIONS(361), + [anon_sym_DOT_DOT] = ACTIONS(359), + [anon_sym_DOT_DOT_LT] = ACTIONS(361), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(361), + [anon_sym_LT_DOT_DOT] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(359), + [anon_sym_LT_EQ] = ACTIONS(359), + [anon_sym_GT] = ACTIONS(359), + [anon_sym_GT_EQ] = ACTIONS(361), + [anon_sym_in] = ACTIONS(359), + [anon_sym_BANGin] = ACTIONS(359), + [anon_sym_instanceof] = ACTIONS(359), + [anon_sym_BANGinstanceof] = ACTIONS(361), + [anon_sym_EQ_EQ] = ACTIONS(359), + [anon_sym_BANG_EQ] = ACTIONS(359), + [anon_sym_LT_EQ_GT] = ACTIONS(361), + [anon_sym_EQ_EQ_EQ] = ACTIONS(361), + [anon_sym_BANG_EQ_EQ] = ACTIONS(361), + [anon_sym_EQ_TILDE] = ACTIONS(361), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(361), + [anon_sym_AMP] = ACTIONS(359), + [anon_sym_CARET] = ACTIONS(361), + [anon_sym_PIPE] = ACTIONS(359), + [anon_sym_AMP_AMP] = ACTIONS(361), + [anon_sym_PIPE_PIPE] = ACTIONS(361), + [anon_sym_QMARK_COLON] = ACTIONS(361), + [anon_sym_STAR_STAR] = ACTIONS(361), + [anon_sym_ATinterface] = ACTIONS(361), + [anon_sym_interface] = ACTIONS(359), + [anon_sym_class] = ACTIONS(359), + [anon_sym_COMMA] = ACTIONS(361), + [anon_sym_LBRACE] = ACTIONS(361), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(359), + [anon_sym_do] = ACTIONS(359), + [anon_sym_while] = ACTIONS(359), + [anon_sym_for] = ACTIONS(359), + [anon_sym_if] = ACTIONS(359), + [anon_sym_else] = ACTIONS(359), + [anon_sym_pipeline] = ACTIONS(359), + [anon_sym_return] = ACTIONS(359), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(361), + [anon_sym_DOLLAR_SLASH] = ACTIONS(361), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_QMARK] = ACTIONS(359), + [anon_sym_try] = ACTIONS(359), + [anon_sym_int] = ACTIONS(359), + [anon_sym_boolean] = ACTIONS(359), + [anon_sym_char] = ACTIONS(359), + [anon_sym_short] = ACTIONS(359), + [anon_sym_long] = ACTIONS(359), + [anon_sym_float] = ACTIONS(359), + [anon_sym_double] = ACTIONS(359), + [anon_sym_void] = ACTIONS(359), + [anon_sym_public] = ACTIONS(359), + [anon_sym_protected] = ACTIONS(359), + [anon_sym_private] = ACTIONS(359), + [anon_sym_static] = ACTIONS(359), + [anon_sym_final] = ACTIONS(359), + [anon_sym_synchronized] = ACTIONS(359), + }, + [456] = { + [sym_comment] = STATE(456), + [sym_groovy_doc] = STATE(456), + [ts_builtin_sym_end] = ACTIONS(353), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(764), + [anon_sym_DOT_AT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(764), + [anon_sym_STAR_DOT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LT_LT] = ACTIONS(353), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_GT_GT_GT] = ACTIONS(353), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_pipeline] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [457] = { + [sym_comment] = STATE(457), + [sym_groovy_doc] = STATE(457), + [ts_builtin_sym_end] = ACTIONS(79), + [sym_identifier] = ACTIONS(77), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(77), + [anon_sym_STAR_COLON] = ACTIONS(79), + [anon_sym_DOT] = ACTIONS(79), + [anon_sym_import] = ACTIONS(77), + [anon_sym_package] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_assert] = ACTIONS(77), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_STAR_STAR_EQ] = ACTIONS(79), + [anon_sym_STAR_EQ] = ACTIONS(79), + [anon_sym_SLASH_EQ] = ACTIONS(79), + [anon_sym_PERCENT_EQ] = ACTIONS(79), + [anon_sym_PLUS_EQ] = ACTIONS(79), + [anon_sym_DASH_EQ] = ACTIONS(79), + [anon_sym_LT_LT_EQ] = ACTIONS(79), + [anon_sym_GT_GT_EQ] = ACTIONS(79), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(79), + [anon_sym_AMP_EQ] = ACTIONS(79), + [anon_sym_CARET_EQ] = ACTIONS(79), + [anon_sym_PIPE_EQ] = ACTIONS(79), + [anon_sym_QMARK_EQ] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_class] = ACTIONS(77), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_RBRACE] = ACTIONS(79), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(77), + [anon_sym_this] = ACTIONS(77), + [anon_sym_null] = ACTIONS(77), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [anon_sym_do] = ACTIONS(77), + [anon_sym_while] = ACTIONS(77), + [anon_sym_for] = ACTIONS(77), + [anon_sym_if] = ACTIONS(77), + [anon_sym_else] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym_number_literal_token1] = ACTIONS(77), + [aux_sym_number_literal_token2] = ACTIONS(79), + [aux_sym_number_literal_token3] = ACTIONS(79), + [aux_sym_number_literal_token4] = ACTIONS(77), + [aux_sym_number_literal_token5] = ACTIONS(79), + [anon_sym_pipeline] = ACTIONS(77), + [anon_sym_return] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(77), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR_SLASH] = ACTIONS(79), + [anon_sym_switch] = ACTIONS(77), + [anon_sym_try] = ACTIONS(77), + [anon_sym_catch] = ACTIONS(77), + [anon_sym_finally] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_boolean] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [anon_sym_void] = ACTIONS(77), + [anon_sym_LBRACK_RBRACK] = ACTIONS(79), + [anon_sym_public] = ACTIONS(77), + [anon_sym_protected] = ACTIONS(77), + [anon_sym_private] = ACTIONS(77), + [anon_sym_static] = ACTIONS(77), + [anon_sym_final] = ACTIONS(77), + [anon_sym_synchronized] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_new] = ACTIONS(77), + }, + [458] = { + [sym_comment] = STATE(458), + [sym_groovy_doc] = STATE(458), + [ts_builtin_sym_end] = ACTIONS(353), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(764), + [anon_sym_DOT_AT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(764), + [anon_sym_STAR_DOT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(353), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_GT_GT_GT] = ACTIONS(353), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(353), + [anon_sym_LT_DOT_DOT] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_in] = ACTIONS(351), + [anon_sym_BANGin] = ACTIONS(351), + [anon_sym_instanceof] = ACTIONS(351), + [anon_sym_BANGinstanceof] = ACTIONS(353), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_pipeline] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [459] = { + [sym_comment] = STATE(459), + [sym_groovy_doc] = STATE(459), + [ts_builtin_sym_end] = ACTIONS(415), + [sym_identifier] = ACTIONS(413), + [anon_sym_break] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_DOT_AMP] = ACTIONS(764), + [anon_sym_DOT_AT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(764), + [anon_sym_STAR_DOT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_import] = ACTIONS(413), + [anon_sym_as] = ACTIONS(413), + [anon_sym_package] = ACTIONS(413), + [anon_sym_AT] = ACTIONS(413), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_PLUS_PLUS] = ACTIONS(415), + [anon_sym_DASH_DASH] = ACTIONS(415), + [anon_sym_PERCENT] = ACTIONS(415), + [anon_sym_SLASH] = ACTIONS(413), + [anon_sym_PLUS] = ACTIONS(413), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(415), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_GT_GT_GT] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(413), + [anon_sym_DOT_DOT_LT] = ACTIONS(415), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(415), + [anon_sym_LT_DOT_DOT] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_EQ] = ACTIONS(413), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_in] = ACTIONS(413), + [anon_sym_BANGin] = ACTIONS(413), + [anon_sym_instanceof] = ACTIONS(413), + [anon_sym_BANGinstanceof] = ACTIONS(415), + [anon_sym_EQ_EQ] = ACTIONS(413), + [anon_sym_BANG_EQ] = ACTIONS(413), + [anon_sym_LT_EQ_GT] = ACTIONS(415), + [anon_sym_EQ_EQ_EQ] = ACTIONS(415), + [anon_sym_BANG_EQ_EQ] = ACTIONS(415), + [anon_sym_EQ_TILDE] = ACTIONS(415), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_QMARK_COLON] = ACTIONS(415), + [anon_sym_STAR_STAR] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(415), + [anon_sym_interface] = ACTIONS(413), + [anon_sym_class] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(415), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(413), + [anon_sym_do] = ACTIONS(413), + [anon_sym_while] = ACTIONS(413), + [anon_sym_for] = ACTIONS(413), + [anon_sym_if] = ACTIONS(413), + [anon_sym_else] = ACTIONS(413), + [anon_sym_pipeline] = ACTIONS(413), + [anon_sym_return] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(415), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_DOLLAR_SLASH] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(413), + [anon_sym_try] = ACTIONS(413), + [anon_sym_int] = ACTIONS(413), + [anon_sym_boolean] = ACTIONS(413), + [anon_sym_char] = ACTIONS(413), + [anon_sym_short] = ACTIONS(413), + [anon_sym_long] = ACTIONS(413), + [anon_sym_float] = ACTIONS(413), + [anon_sym_double] = ACTIONS(413), + [anon_sym_void] = ACTIONS(413), + [anon_sym_public] = ACTIONS(413), + [anon_sym_protected] = ACTIONS(413), + [anon_sym_private] = ACTIONS(413), + [anon_sym_static] = ACTIONS(413), + [anon_sym_final] = ACTIONS(413), + [anon_sym_synchronized] = ACTIONS(413), + }, + [460] = { + [sym_comment] = STATE(460), + [sym_groovy_doc] = STATE(460), + [ts_builtin_sym_end] = ACTIONS(353), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(764), + [anon_sym_DOT_AT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(764), + [anon_sym_STAR_DOT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(768), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_GT_GT_GT] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(776), + [anon_sym_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_in] = ACTIONS(768), + [anon_sym_BANGin] = ACTIONS(768), + [anon_sym_instanceof] = ACTIONS(768), + [anon_sym_BANGinstanceof] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(353), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_pipeline] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [461] = { + [sym_comment] = STATE(461), + [sym_groovy_doc] = STATE(461), + [ts_builtin_sym_end] = ACTIONS(353), + [sym_identifier] = ACTIONS(351), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_DOT_AMP] = ACTIONS(764), + [anon_sym_DOT_AT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(764), + [anon_sym_STAR_DOT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_import] = ACTIONS(351), + [anon_sym_as] = ACTIONS(768), + [anon_sym_package] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_GT_GT_GT] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(776), + [anon_sym_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_in] = ACTIONS(768), + [anon_sym_BANGin] = ACTIONS(768), + [anon_sym_instanceof] = ACTIONS(768), + [anon_sym_BANGinstanceof] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT_EQ_GT] = ACTIONS(782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_EQ_TILDE] = ACTIONS(782), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_QMARK_COLON] = ACTIONS(353), + [anon_sym_STAR_STAR] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(353), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_class] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_else] = ACTIONS(351), + [anon_sym_pipeline] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR_SLASH] = ACTIONS(353), + [anon_sym_switch] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_int] = ACTIONS(351), + [anon_sym_boolean] = ACTIONS(351), + [anon_sym_char] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_float] = ACTIONS(351), + [anon_sym_double] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_public] = ACTIONS(351), + [anon_sym_protected] = ACTIONS(351), + [anon_sym_private] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_final] = ACTIONS(351), + [anon_sym_synchronized] = ACTIONS(351), + }, + [462] = { + [sym_access_op] = STATE(298), + [sym_dotted_identifier] = STATE(206), + [sym__prefix_expression] = STATE(2248), + [sym_increment_op] = STATE(298), + [sym_binary_op] = STATE(298), + [sym_boolean_literal] = STATE(298), + [sym_closure] = STATE(298), + [sym_comment] = STATE(462), + [sym_groovy_doc] = STATE(462), + [sym__expression] = STATE(317), + [sym_function_call] = STATE(206), + [sym_index] = STATE(206), + [sym_list] = STATE(298), + [sym_map] = STATE(298), + [sym_number_literal] = STATE(298), + [sym_string] = STATE(206), + [sym__plain_string] = STATE(214), + [sym__interpolate_string] = STATE(214), + [sym_ternary_op] = STATE(298), + [sym_unary_op] = STATE(298), + [sym_identifier] = ACTIONS(804), + [anon_sym_break] = ACTIONS(806), + [anon_sym_continue] = ACTIONS(806), + [anon_sym_SEMI] = ACTIONS(808), + [anon_sym_STAR] = ACTIONS(810), + [anon_sym_STAR_COLON] = ACTIONS(812), + [anon_sym_import] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(806), + [anon_sym_assert] = ACTIONS(806), + [anon_sym_PLUS_PLUS] = ACTIONS(814), + [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_SLASH] = ACTIONS(816), + [anon_sym_PLUS] = ACTIONS(818), + [anon_sym_DASH] = ACTIONS(818), + [anon_sym_true] = ACTIONS(820), + [anon_sym_false] = ACTIONS(820), + [anon_sym_ATinterface] = ACTIONS(808), + [anon_sym_interface] = ACTIONS(806), + [anon_sym_class] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(822), + [anon_sym_RBRACE] = ACTIONS(808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(806), + [anon_sym_this] = ACTIONS(824), + [anon_sym_null] = ACTIONS(824), + [anon_sym_LPAREN] = ACTIONS(826), + [anon_sym_do] = ACTIONS(806), + [anon_sym_while] = ACTIONS(806), + [anon_sym_for] = ACTIONS(806), + [anon_sym_if] = ACTIONS(806), + [anon_sym_else] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(828), + [aux_sym_number_literal_token1] = ACTIONS(830), + [aux_sym_number_literal_token2] = ACTIONS(832), + [aux_sym_number_literal_token3] = ACTIONS(832), + [aux_sym_number_literal_token4] = ACTIONS(830), + [aux_sym_number_literal_token5] = ACTIONS(832), + [anon_sym_return] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(834), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(840), + [anon_sym_DOLLAR_SLASH] = ACTIONS(842), + [anon_sym_switch] = ACTIONS(806), + [anon_sym_case] = ACTIONS(806), + [anon_sym_default] = ACTIONS(806), + [anon_sym_try] = ACTIONS(806), + [anon_sym_catch] = ACTIONS(806), + [anon_sym_finally] = ACTIONS(806), + [anon_sym_int] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_char] = ACTIONS(806), + [anon_sym_short] = ACTIONS(806), + [anon_sym_long] = ACTIONS(806), + [anon_sym_float] = ACTIONS(806), + [anon_sym_double] = ACTIONS(806), + [anon_sym_void] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_synchronized] = ACTIONS(806), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_BANG] = ACTIONS(844), + [anon_sym_new] = ACTIONS(846), + }, + [463] = { + [sym_comment] = STATE(463), + [sym_groovy_doc] = STATE(463), + [ts_builtin_sym_end] = ACTIONS(507), + [sym_identifier] = ACTIONS(505), + [anon_sym_break] = ACTIONS(505), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_DOT_AMP] = ACTIONS(764), + [anon_sym_DOT_AT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(764), + [anon_sym_STAR_DOT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_import] = ACTIONS(505), + [anon_sym_as] = ACTIONS(768), + [anon_sym_package] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(505), + [anon_sym_assert] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_GT_GT_GT] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(776), + [anon_sym_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_in] = ACTIONS(768), + [anon_sym_BANGin] = ACTIONS(768), + [anon_sym_instanceof] = ACTIONS(768), + [anon_sym_BANGinstanceof] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT_EQ_GT] = ACTIONS(782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_EQ_TILDE] = ACTIONS(782), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_QMARK_COLON] = ACTIONS(794), + [anon_sym_STAR_STAR] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(507), + [anon_sym_interface] = ACTIONS(505), + [anon_sym_class] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(507), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(505), + [anon_sym_do] = ACTIONS(505), + [anon_sym_while] = ACTIONS(505), + [anon_sym_for] = ACTIONS(505), + [anon_sym_if] = ACTIONS(505), + [anon_sym_else] = ACTIONS(505), + [anon_sym_pipeline] = ACTIONS(505), + [anon_sym_return] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(507), + [anon_sym_DOLLAR_SLASH] = ACTIONS(507), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_try] = ACTIONS(505), + [anon_sym_int] = ACTIONS(505), + [anon_sym_boolean] = ACTIONS(505), + [anon_sym_char] = ACTIONS(505), + [anon_sym_short] = ACTIONS(505), + [anon_sym_long] = ACTIONS(505), + [anon_sym_float] = ACTIONS(505), + [anon_sym_double] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_public] = ACTIONS(505), + [anon_sym_protected] = ACTIONS(505), + [anon_sym_private] = ACTIONS(505), + [anon_sym_static] = ACTIONS(505), + [anon_sym_final] = ACTIONS(505), + [anon_sym_synchronized] = ACTIONS(505), + }, + [464] = { + [sym_comment] = STATE(464), + [sym_groovy_doc] = STATE(464), + [ts_builtin_sym_end] = ACTIONS(475), + [sym_identifier] = ACTIONS(473), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_DOT_AMP] = ACTIONS(764), + [anon_sym_DOT_AT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(764), + [anon_sym_STAR_DOT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_import] = ACTIONS(473), + [anon_sym_as] = ACTIONS(768), + [anon_sym_package] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(473), + [anon_sym_assert] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_GT_GT_GT] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(776), + [anon_sym_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_in] = ACTIONS(768), + [anon_sym_BANGin] = ACTIONS(768), + [anon_sym_instanceof] = ACTIONS(768), + [anon_sym_BANGinstanceof] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT_EQ_GT] = ACTIONS(782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_EQ_TILDE] = ACTIONS(782), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_QMARK_COLON] = ACTIONS(794), + [anon_sym_STAR_STAR] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(475), + [anon_sym_interface] = ACTIONS(473), + [anon_sym_class] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(475), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(473), + [anon_sym_do] = ACTIONS(473), + [anon_sym_while] = ACTIONS(473), + [anon_sym_for] = ACTIONS(473), + [anon_sym_if] = ACTIONS(473), + [anon_sym_else] = ACTIONS(473), + [anon_sym_pipeline] = ACTIONS(473), + [anon_sym_return] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_SLASH] = ACTIONS(475), + [anon_sym_switch] = ACTIONS(473), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_try] = ACTIONS(473), + [anon_sym_int] = ACTIONS(473), + [anon_sym_boolean] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_short] = ACTIONS(473), + [anon_sym_long] = ACTIONS(473), + [anon_sym_float] = ACTIONS(473), + [anon_sym_double] = ACTIONS(473), + [anon_sym_void] = ACTIONS(473), + [anon_sym_public] = ACTIONS(473), + [anon_sym_protected] = ACTIONS(473), + [anon_sym_private] = ACTIONS(473), + [anon_sym_static] = ACTIONS(473), + [anon_sym_final] = ACTIONS(473), + [anon_sym_synchronized] = ACTIONS(473), + }, + [465] = { + [sym_comment] = STATE(465), + [sym_groovy_doc] = STATE(465), + [ts_builtin_sym_end] = ACTIONS(503), + [sym_identifier] = ACTIONS(501), + [anon_sym_break] = ACTIONS(501), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_SEMI] = ACTIONS(503), + [anon_sym_DOT_AMP] = ACTIONS(764), + [anon_sym_DOT_AT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(764), + [anon_sym_STAR_DOT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_import] = ACTIONS(501), + [anon_sym_as] = ACTIONS(768), + [anon_sym_package] = ACTIONS(501), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_assert] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(503), + [anon_sym_DASH_DASH] = ACTIONS(503), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_GT_GT_GT] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(776), + [anon_sym_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_in] = ACTIONS(768), + [anon_sym_BANGin] = ACTIONS(768), + [anon_sym_instanceof] = ACTIONS(768), + [anon_sym_BANGinstanceof] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT_EQ_GT] = ACTIONS(782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_EQ_TILDE] = ACTIONS(782), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_QMARK_COLON] = ACTIONS(794), + [anon_sym_STAR_STAR] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(503), + [anon_sym_interface] = ACTIONS(501), + [anon_sym_class] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(503), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(501), + [anon_sym_do] = ACTIONS(501), + [anon_sym_while] = ACTIONS(501), + [anon_sym_for] = ACTIONS(501), + [anon_sym_if] = ACTIONS(501), + [anon_sym_else] = ACTIONS(501), + [anon_sym_pipeline] = ACTIONS(501), + [anon_sym_return] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(503), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(503), + [anon_sym_DOLLAR_SLASH] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(501), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_try] = ACTIONS(501), + [anon_sym_int] = ACTIONS(501), + [anon_sym_boolean] = ACTIONS(501), + [anon_sym_char] = ACTIONS(501), + [anon_sym_short] = ACTIONS(501), + [anon_sym_long] = ACTIONS(501), + [anon_sym_float] = ACTIONS(501), + [anon_sym_double] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_public] = ACTIONS(501), + [anon_sym_protected] = ACTIONS(501), + [anon_sym_private] = ACTIONS(501), + [anon_sym_static] = ACTIONS(501), + [anon_sym_final] = ACTIONS(501), + [anon_sym_synchronized] = ACTIONS(501), + }, + [466] = { + [sym_comment] = STATE(466), + [sym_groovy_doc] = STATE(466), + [ts_builtin_sym_end] = ACTIONS(519), + [sym_identifier] = ACTIONS(517), + [anon_sym_break] = ACTIONS(517), + [anon_sym_continue] = ACTIONS(517), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_DOT_AMP] = ACTIONS(764), + [anon_sym_DOT_AT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(764), + [anon_sym_STAR_DOT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_import] = ACTIONS(517), + [anon_sym_as] = ACTIONS(768), + [anon_sym_package] = ACTIONS(517), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_assert] = ACTIONS(517), + [anon_sym_PLUS_PLUS] = ACTIONS(519), + [anon_sym_DASH_DASH] = ACTIONS(519), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_GT_GT_GT] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(776), + [anon_sym_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_in] = ACTIONS(768), + [anon_sym_BANGin] = ACTIONS(768), + [anon_sym_instanceof] = ACTIONS(768), + [anon_sym_BANGinstanceof] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT_EQ_GT] = ACTIONS(782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_EQ_TILDE] = ACTIONS(782), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_QMARK_COLON] = ACTIONS(794), + [anon_sym_STAR_STAR] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(519), + [anon_sym_interface] = ACTIONS(517), + [anon_sym_class] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(519), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(517), + [anon_sym_do] = ACTIONS(517), + [anon_sym_while] = ACTIONS(517), + [anon_sym_for] = ACTIONS(517), + [anon_sym_if] = ACTIONS(517), + [anon_sym_else] = ACTIONS(517), + [anon_sym_pipeline] = ACTIONS(517), + [anon_sym_return] = ACTIONS(517), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE] = ACTIONS(517), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(519), + [anon_sym_DOLLAR_SLASH] = ACTIONS(519), + [anon_sym_switch] = ACTIONS(517), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_try] = ACTIONS(517), + [anon_sym_int] = ACTIONS(517), + [anon_sym_boolean] = ACTIONS(517), + [anon_sym_char] = ACTIONS(517), + [anon_sym_short] = ACTIONS(517), + [anon_sym_long] = ACTIONS(517), + [anon_sym_float] = ACTIONS(517), + [anon_sym_double] = ACTIONS(517), + [anon_sym_void] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_protected] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_synchronized] = ACTIONS(517), + }, + [467] = { + [sym_comment] = STATE(467), + [sym_groovy_doc] = STATE(467), + [ts_builtin_sym_end] = ACTIONS(489), + [sym_identifier] = ACTIONS(487), + [anon_sym_break] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_SEMI] = ACTIONS(489), + [anon_sym_DOT_AMP] = ACTIONS(764), + [anon_sym_DOT_AT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(764), + [anon_sym_STAR_DOT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_import] = ACTIONS(487), + [anon_sym_as] = ACTIONS(768), + [anon_sym_package] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(487), + [anon_sym_assert] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(489), + [anon_sym_DASH_DASH] = ACTIONS(489), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_GT_GT_GT] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(776), + [anon_sym_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_in] = ACTIONS(768), + [anon_sym_BANGin] = ACTIONS(768), + [anon_sym_instanceof] = ACTIONS(768), + [anon_sym_BANGinstanceof] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT_EQ_GT] = ACTIONS(782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_EQ_TILDE] = ACTIONS(782), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_QMARK_COLON] = ACTIONS(794), + [anon_sym_STAR_STAR] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(489), + [anon_sym_interface] = ACTIONS(487), + [anon_sym_class] = ACTIONS(487), + [anon_sym_LBRACE] = ACTIONS(489), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(487), + [anon_sym_do] = ACTIONS(487), + [anon_sym_while] = ACTIONS(487), + [anon_sym_for] = ACTIONS(487), + [anon_sym_if] = ACTIONS(487), + [anon_sym_else] = ACTIONS(487), + [anon_sym_pipeline] = ACTIONS(487), + [anon_sym_return] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(487), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(489), + [anon_sym_DQUOTE] = ACTIONS(487), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(489), + [anon_sym_DOLLAR_SLASH] = ACTIONS(489), + [anon_sym_switch] = ACTIONS(487), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_try] = ACTIONS(487), + [anon_sym_int] = ACTIONS(487), + [anon_sym_boolean] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_short] = ACTIONS(487), + [anon_sym_long] = ACTIONS(487), + [anon_sym_float] = ACTIONS(487), + [anon_sym_double] = ACTIONS(487), + [anon_sym_void] = ACTIONS(487), + [anon_sym_public] = ACTIONS(487), + [anon_sym_protected] = ACTIONS(487), + [anon_sym_private] = ACTIONS(487), + [anon_sym_static] = ACTIONS(487), + [anon_sym_final] = ACTIONS(487), + [anon_sym_synchronized] = ACTIONS(487), + }, + [468] = { + [sym_comment] = STATE(468), + [sym_groovy_doc] = STATE(468), + [ts_builtin_sym_end] = ACTIONS(515), + [sym_identifier] = ACTIONS(513), + [anon_sym_break] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(515), + [anon_sym_DOT_AMP] = ACTIONS(764), + [anon_sym_DOT_AT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(764), + [anon_sym_STAR_DOT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_import] = ACTIONS(513), + [anon_sym_as] = ACTIONS(768), + [anon_sym_package] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(513), + [anon_sym_assert] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_GT_GT_GT] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(776), + [anon_sym_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_in] = ACTIONS(768), + [anon_sym_BANGin] = ACTIONS(768), + [anon_sym_instanceof] = ACTIONS(768), + [anon_sym_BANGinstanceof] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT_EQ_GT] = ACTIONS(782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_EQ_TILDE] = ACTIONS(782), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_QMARK_COLON] = ACTIONS(794), + [anon_sym_STAR_STAR] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(515), + [anon_sym_interface] = ACTIONS(513), + [anon_sym_class] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(515), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(513), + [anon_sym_do] = ACTIONS(513), + [anon_sym_while] = ACTIONS(513), + [anon_sym_for] = ACTIONS(513), + [anon_sym_if] = ACTIONS(513), + [anon_sym_else] = ACTIONS(513), + [anon_sym_pipeline] = ACTIONS(513), + [anon_sym_return] = ACTIONS(513), + [anon_sym_SQUOTE] = ACTIONS(513), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(513), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_SLASH] = ACTIONS(515), + [anon_sym_switch] = ACTIONS(513), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_try] = ACTIONS(513), + [anon_sym_int] = ACTIONS(513), + [anon_sym_boolean] = ACTIONS(513), + [anon_sym_char] = ACTIONS(513), + [anon_sym_short] = ACTIONS(513), + [anon_sym_long] = ACTIONS(513), + [anon_sym_float] = ACTIONS(513), + [anon_sym_double] = ACTIONS(513), + [anon_sym_void] = ACTIONS(513), + [anon_sym_public] = ACTIONS(513), + [anon_sym_protected] = ACTIONS(513), + [anon_sym_private] = ACTIONS(513), + [anon_sym_static] = ACTIONS(513), + [anon_sym_final] = ACTIONS(513), + [anon_sym_synchronized] = ACTIONS(513), + }, + [469] = { + [sym_comment] = STATE(469), + [sym_groovy_doc] = STATE(469), + [ts_builtin_sym_end] = ACTIONS(493), + [sym_identifier] = ACTIONS(491), + [anon_sym_break] = ACTIONS(491), + [anon_sym_continue] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(493), + [anon_sym_DOT_AMP] = ACTIONS(764), + [anon_sym_DOT_AT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(764), + [anon_sym_STAR_DOT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_import] = ACTIONS(491), + [anon_sym_as] = ACTIONS(768), + [anon_sym_package] = ACTIONS(491), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_assert] = ACTIONS(491), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_GT_GT_GT] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(776), + [anon_sym_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_in] = ACTIONS(768), + [anon_sym_BANGin] = ACTIONS(768), + [anon_sym_instanceof] = ACTIONS(768), + [anon_sym_BANGinstanceof] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT_EQ_GT] = ACTIONS(782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_EQ_TILDE] = ACTIONS(782), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_QMARK_COLON] = ACTIONS(794), + [anon_sym_STAR_STAR] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(493), + [anon_sym_interface] = ACTIONS(491), + [anon_sym_class] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(493), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(491), + [anon_sym_do] = ACTIONS(491), + [anon_sym_while] = ACTIONS(491), + [anon_sym_for] = ACTIONS(491), + [anon_sym_if] = ACTIONS(491), + [anon_sym_else] = ACTIONS(491), + [anon_sym_pipeline] = ACTIONS(491), + [anon_sym_return] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(491), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(491), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(493), + [anon_sym_DOLLAR_SLASH] = ACTIONS(493), + [anon_sym_switch] = ACTIONS(491), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_try] = ACTIONS(491), + [anon_sym_int] = ACTIONS(491), + [anon_sym_boolean] = ACTIONS(491), + [anon_sym_char] = ACTIONS(491), + [anon_sym_short] = ACTIONS(491), + [anon_sym_long] = ACTIONS(491), + [anon_sym_float] = ACTIONS(491), + [anon_sym_double] = ACTIONS(491), + [anon_sym_void] = ACTIONS(491), + [anon_sym_public] = ACTIONS(491), + [anon_sym_protected] = ACTIONS(491), + [anon_sym_private] = ACTIONS(491), + [anon_sym_static] = ACTIONS(491), + [anon_sym_final] = ACTIONS(491), + [anon_sym_synchronized] = ACTIONS(491), + }, + [470] = { + [sym_comment] = STATE(470), + [sym_groovy_doc] = STATE(470), + [ts_builtin_sym_end] = ACTIONS(485), + [sym_identifier] = ACTIONS(483), + [anon_sym_break] = ACTIONS(483), + [anon_sym_continue] = ACTIONS(483), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_DOT_AMP] = ACTIONS(764), + [anon_sym_DOT_AT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(764), + [anon_sym_STAR_DOT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_import] = ACTIONS(483), + [anon_sym_as] = ACTIONS(768), + [anon_sym_package] = ACTIONS(483), + [anon_sym_AT] = ACTIONS(483), + [anon_sym_assert] = ACTIONS(483), + [anon_sym_PLUS_PLUS] = ACTIONS(485), + [anon_sym_DASH_DASH] = ACTIONS(485), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_GT_GT_GT] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(776), + [anon_sym_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_in] = ACTIONS(768), + [anon_sym_BANGin] = ACTIONS(768), + [anon_sym_instanceof] = ACTIONS(768), + [anon_sym_BANGinstanceof] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT_EQ_GT] = ACTIONS(782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_EQ_TILDE] = ACTIONS(782), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_QMARK_COLON] = ACTIONS(794), + [anon_sym_STAR_STAR] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(485), + [anon_sym_interface] = ACTIONS(483), + [anon_sym_class] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(485), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(483), + [anon_sym_do] = ACTIONS(483), + [anon_sym_while] = ACTIONS(483), + [anon_sym_for] = ACTIONS(483), + [anon_sym_if] = ACTIONS(483), + [anon_sym_else] = ACTIONS(483), + [anon_sym_pipeline] = ACTIONS(483), + [anon_sym_return] = ACTIONS(483), + [anon_sym_SQUOTE] = ACTIONS(483), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(485), + [anon_sym_DQUOTE] = ACTIONS(483), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(485), + [anon_sym_DOLLAR_SLASH] = ACTIONS(485), + [anon_sym_switch] = ACTIONS(483), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_try] = ACTIONS(483), + [anon_sym_int] = ACTIONS(483), + [anon_sym_boolean] = ACTIONS(483), + [anon_sym_char] = ACTIONS(483), + [anon_sym_short] = ACTIONS(483), + [anon_sym_long] = ACTIONS(483), + [anon_sym_float] = ACTIONS(483), + [anon_sym_double] = ACTIONS(483), + [anon_sym_void] = ACTIONS(483), + [anon_sym_public] = ACTIONS(483), + [anon_sym_protected] = ACTIONS(483), + [anon_sym_private] = ACTIONS(483), + [anon_sym_static] = ACTIONS(483), + [anon_sym_final] = ACTIONS(483), + [anon_sym_synchronized] = ACTIONS(483), + }, + [471] = { + [sym_comment] = STATE(471), + [sym_groovy_doc] = STATE(471), + [ts_builtin_sym_end] = ACTIONS(511), + [sym_identifier] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(511), + [anon_sym_DOT_AMP] = ACTIONS(764), + [anon_sym_DOT_AT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(764), + [anon_sym_STAR_DOT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_import] = ACTIONS(509), + [anon_sym_as] = ACTIONS(768), + [anon_sym_package] = ACTIONS(509), + [anon_sym_AT] = ACTIONS(509), + [anon_sym_assert] = ACTIONS(509), + [anon_sym_PLUS_PLUS] = ACTIONS(511), + [anon_sym_DASH_DASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_GT_GT_GT] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(776), + [anon_sym_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_in] = ACTIONS(768), + [anon_sym_BANGin] = ACTIONS(768), + [anon_sym_instanceof] = ACTIONS(768), + [anon_sym_BANGinstanceof] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT_EQ_GT] = ACTIONS(782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_EQ_TILDE] = ACTIONS(782), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_QMARK_COLON] = ACTIONS(794), + [anon_sym_STAR_STAR] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(511), + [anon_sym_interface] = ACTIONS(509), + [anon_sym_class] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(511), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(509), + [anon_sym_do] = ACTIONS(509), + [anon_sym_while] = ACTIONS(509), + [anon_sym_for] = ACTIONS(509), + [anon_sym_if] = ACTIONS(509), + [anon_sym_else] = ACTIONS(509), + [anon_sym_pipeline] = ACTIONS(509), + [anon_sym_return] = ACTIONS(509), + [anon_sym_SQUOTE] = ACTIONS(509), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(511), + [anon_sym_DQUOTE] = ACTIONS(509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_SLASH] = ACTIONS(511), + [anon_sym_switch] = ACTIONS(509), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_try] = ACTIONS(509), + [anon_sym_int] = ACTIONS(509), + [anon_sym_boolean] = ACTIONS(509), + [anon_sym_char] = ACTIONS(509), + [anon_sym_short] = ACTIONS(509), + [anon_sym_long] = ACTIONS(509), + [anon_sym_float] = ACTIONS(509), + [anon_sym_double] = ACTIONS(509), + [anon_sym_void] = ACTIONS(509), + [anon_sym_public] = ACTIONS(509), + [anon_sym_protected] = ACTIONS(509), + [anon_sym_private] = ACTIONS(509), + [anon_sym_static] = ACTIONS(509), + [anon_sym_final] = ACTIONS(509), + [anon_sym_synchronized] = ACTIONS(509), + }, + [472] = { + [sym_comment] = STATE(472), + [sym_groovy_doc] = STATE(472), + [ts_builtin_sym_end] = ACTIONS(497), + [sym_identifier] = ACTIONS(495), + [anon_sym_break] = ACTIONS(495), + [anon_sym_continue] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(497), + [anon_sym_DOT_AMP] = ACTIONS(764), + [anon_sym_DOT_AT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(764), + [anon_sym_STAR_DOT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_import] = ACTIONS(495), + [anon_sym_as] = ACTIONS(768), + [anon_sym_package] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(495), + [anon_sym_assert] = ACTIONS(495), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_GT_GT_GT] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(776), + [anon_sym_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_in] = ACTIONS(768), + [anon_sym_BANGin] = ACTIONS(768), + [anon_sym_instanceof] = ACTIONS(768), + [anon_sym_BANGinstanceof] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT_EQ_GT] = ACTIONS(782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_EQ_TILDE] = ACTIONS(782), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_QMARK_COLON] = ACTIONS(794), + [anon_sym_STAR_STAR] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(497), + [anon_sym_interface] = ACTIONS(495), + [anon_sym_class] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(497), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(495), + [anon_sym_do] = ACTIONS(495), + [anon_sym_while] = ACTIONS(495), + [anon_sym_for] = ACTIONS(495), + [anon_sym_if] = ACTIONS(495), + [anon_sym_else] = ACTIONS(495), + [anon_sym_pipeline] = ACTIONS(495), + [anon_sym_return] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(495), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(495), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(497), + [anon_sym_DOLLAR_SLASH] = ACTIONS(497), + [anon_sym_switch] = ACTIONS(495), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_try] = ACTIONS(495), + [anon_sym_int] = ACTIONS(495), + [anon_sym_boolean] = ACTIONS(495), + [anon_sym_char] = ACTIONS(495), + [anon_sym_short] = ACTIONS(495), + [anon_sym_long] = ACTIONS(495), + [anon_sym_float] = ACTIONS(495), + [anon_sym_double] = ACTIONS(495), + [anon_sym_void] = ACTIONS(495), + [anon_sym_public] = ACTIONS(495), + [anon_sym_protected] = ACTIONS(495), + [anon_sym_private] = ACTIONS(495), + [anon_sym_static] = ACTIONS(495), + [anon_sym_final] = ACTIONS(495), + [anon_sym_synchronized] = ACTIONS(495), + }, + [473] = { + [sym_comment] = STATE(473), + [sym_groovy_doc] = STATE(473), + [ts_builtin_sym_end] = ACTIONS(481), + [sym_identifier] = ACTIONS(479), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(481), + [anon_sym_DOT_AMP] = ACTIONS(764), + [anon_sym_DOT_AT] = ACTIONS(764), + [anon_sym_QMARK_DOT] = ACTIONS(764), + [anon_sym_STAR_DOT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_import] = ACTIONS(479), + [anon_sym_as] = ACTIONS(768), + [anon_sym_package] = ACTIONS(479), + [anon_sym_AT] = ACTIONS(479), + [anon_sym_assert] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_GT_GT_GT] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(776), + [anon_sym_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(774), + [anon_sym_LT_DOT_DOT] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_in] = ACTIONS(768), + [anon_sym_BANGin] = ACTIONS(768), + [anon_sym_instanceof] = ACTIONS(768), + [anon_sym_BANGinstanceof] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT_EQ_GT] = ACTIONS(782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_EQ_TILDE] = ACTIONS(782), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_QMARK_COLON] = ACTIONS(794), + [anon_sym_STAR_STAR] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(481), + [anon_sym_interface] = ACTIONS(479), + [anon_sym_class] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(479), + [anon_sym_do] = ACTIONS(479), + [anon_sym_while] = ACTIONS(479), + [anon_sym_for] = ACTIONS(479), + [anon_sym_if] = ACTIONS(479), + [anon_sym_else] = ACTIONS(479), + [anon_sym_pipeline] = ACTIONS(479), + [anon_sym_return] = ACTIONS(479), + [anon_sym_SQUOTE] = ACTIONS(479), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(481), + [anon_sym_DQUOTE] = ACTIONS(479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(481), + [anon_sym_DOLLAR_SLASH] = ACTIONS(481), + [anon_sym_switch] = ACTIONS(479), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_try] = ACTIONS(479), + [anon_sym_int] = ACTIONS(479), + [anon_sym_boolean] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_short] = ACTIONS(479), + [anon_sym_long] = ACTIONS(479), + [anon_sym_float] = ACTIONS(479), + [anon_sym_double] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_public] = ACTIONS(479), + [anon_sym_protected] = ACTIONS(479), + [anon_sym_private] = ACTIONS(479), + [anon_sym_static] = ACTIONS(479), + [anon_sym_final] = ACTIONS(479), + [anon_sym_synchronized] = ACTIONS(479), + }, + [474] = { + [sym_comment] = STATE(474), + [sym_groovy_doc] = STATE(474), + [sym_identifier] = ACTIONS(73), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(73), + [anon_sym_STAR_COLON] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(75), + [anon_sym_import] = ACTIONS(73), + [anon_sym_package] = ACTIONS(73), + [anon_sym_AT] = ACTIONS(73), + [anon_sym_assert] = ACTIONS(73), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_STAR_STAR_EQ] = ACTIONS(75), + [anon_sym_STAR_EQ] = ACTIONS(75), + [anon_sym_SLASH_EQ] = ACTIONS(75), + [anon_sym_PERCENT_EQ] = ACTIONS(75), + [anon_sym_PLUS_EQ] = ACTIONS(75), + [anon_sym_DASH_EQ] = ACTIONS(75), + [anon_sym_LT_LT_EQ] = ACTIONS(75), + [anon_sym_GT_GT_EQ] = ACTIONS(75), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(75), + [anon_sym_AMP_EQ] = ACTIONS(75), + [anon_sym_CARET_EQ] = ACTIONS(75), + [anon_sym_PIPE_EQ] = ACTIONS(75), + [anon_sym_QMARK_EQ] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(73), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ATinterface] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_class] = ACTIONS(73), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_RBRACE] = ACTIONS(75), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(73), + [anon_sym_this] = ACTIONS(73), + [anon_sym_null] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_do] = ACTIONS(73), + [anon_sym_while] = ACTIONS(73), + [anon_sym_for] = ACTIONS(73), + [anon_sym_if] = ACTIONS(73), + [anon_sym_else] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(73), + [aux_sym_number_literal_token1] = ACTIONS(73), + [aux_sym_number_literal_token2] = ACTIONS(75), + [aux_sym_number_literal_token3] = ACTIONS(75), + [aux_sym_number_literal_token4] = ACTIONS(73), + [aux_sym_number_literal_token5] = ACTIONS(75), + [anon_sym_return] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(75), + [anon_sym_DOLLAR_SLASH] = ACTIONS(75), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(73), + [anon_sym_default] = ACTIONS(73), + [anon_sym_try] = ACTIONS(73), + [anon_sym_catch] = ACTIONS(73), + [anon_sym_finally] = ACTIONS(73), + [anon_sym_int] = ACTIONS(73), + [anon_sym_boolean] = ACTIONS(73), + [anon_sym_char] = ACTIONS(73), + [anon_sym_short] = ACTIONS(73), + [anon_sym_long] = ACTIONS(73), + [anon_sym_float] = ACTIONS(73), + [anon_sym_double] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_LBRACK_RBRACK] = ACTIONS(75), + [anon_sym_public] = ACTIONS(73), + [anon_sym_protected] = ACTIONS(73), + [anon_sym_private] = ACTIONS(73), + [anon_sym_static] = ACTIONS(73), + [anon_sym_final] = ACTIONS(73), + [anon_sym_synchronized] = ACTIONS(73), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_new] = ACTIONS(73), + }, + [475] = { + [sym_comment] = STATE(475), + [sym_groovy_doc] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(71), + [sym_identifier] = ACTIONS(69), + [anon_sym_break] = ACTIONS(69), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_SEMI] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(69), + [anon_sym_STAR_COLON] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(71), + [anon_sym_import] = ACTIONS(69), + [anon_sym_package] = ACTIONS(69), + [anon_sym_AT] = ACTIONS(69), + [anon_sym_assert] = ACTIONS(69), + [anon_sym_EQ] = ACTIONS(71), + [anon_sym_STAR_STAR_EQ] = ACTIONS(71), + [anon_sym_STAR_EQ] = ACTIONS(71), + [anon_sym_SLASH_EQ] = ACTIONS(71), + [anon_sym_PERCENT_EQ] = ACTIONS(71), + [anon_sym_PLUS_EQ] = ACTIONS(71), + [anon_sym_DASH_EQ] = ACTIONS(71), + [anon_sym_LT_LT_EQ] = ACTIONS(71), + [anon_sym_GT_GT_EQ] = ACTIONS(71), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(71), + [anon_sym_AMP_EQ] = ACTIONS(71), + [anon_sym_CARET_EQ] = ACTIONS(71), + [anon_sym_PIPE_EQ] = ACTIONS(71), + [anon_sym_QMARK_EQ] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(69), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(69), + [anon_sym_class] = ACTIONS(69), + [anon_sym_COMMA] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(71), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(69), + [anon_sym_this] = ACTIONS(69), + [anon_sym_null] = ACTIONS(69), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(71), + [anon_sym_do] = ACTIONS(69), + [anon_sym_while] = ACTIONS(69), + [anon_sym_for] = ACTIONS(69), + [anon_sym_if] = ACTIONS(69), + [anon_sym_else] = ACTIONS(69), + [anon_sym_LBRACK] = ACTIONS(69), + [aux_sym_number_literal_token1] = ACTIONS(69), + [aux_sym_number_literal_token2] = ACTIONS(71), + [aux_sym_number_literal_token3] = ACTIONS(71), + [aux_sym_number_literal_token4] = ACTIONS(69), + [aux_sym_number_literal_token5] = ACTIONS(71), + [anon_sym_pipeline] = ACTIONS(69), + [anon_sym_return] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_SLASH] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_try] = ACTIONS(69), + [anon_sym_int] = ACTIONS(69), + [anon_sym_boolean] = ACTIONS(69), + [anon_sym_char] = ACTIONS(69), + [anon_sym_short] = ACTIONS(69), + [anon_sym_long] = ACTIONS(69), + [anon_sym_float] = ACTIONS(69), + [anon_sym_double] = ACTIONS(69), + [anon_sym_void] = ACTIONS(69), + [anon_sym_LBRACK_RBRACK] = ACTIONS(71), + [anon_sym_public] = ACTIONS(69), + [anon_sym_protected] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_final] = ACTIONS(69), + [anon_sym_synchronized] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_new] = ACTIONS(69), + }, + [476] = { + [sym_comment] = STATE(476), + [sym_groovy_doc] = STATE(476), + [sym_identifier] = ACTIONS(85), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_STAR_COLON] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(87), + [anon_sym_import] = ACTIONS(85), + [anon_sym_package] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_assert] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(87), + [anon_sym_STAR_STAR_EQ] = ACTIONS(87), + [anon_sym_STAR_EQ] = ACTIONS(87), + [anon_sym_SLASH_EQ] = ACTIONS(87), + [anon_sym_PERCENT_EQ] = ACTIONS(87), + [anon_sym_PLUS_EQ] = ACTIONS(87), + [anon_sym_DASH_EQ] = ACTIONS(87), + [anon_sym_LT_LT_EQ] = ACTIONS(87), + [anon_sym_GT_GT_EQ] = ACTIONS(87), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(87), + [anon_sym_AMP_EQ] = ACTIONS(87), + [anon_sym_CARET_EQ] = ACTIONS(87), + [anon_sym_PIPE_EQ] = ACTIONS(87), + [anon_sym_QMARK_EQ] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_true] = ACTIONS(85), + [anon_sym_false] = ACTIONS(85), + [anon_sym_ATinterface] = ACTIONS(87), + [anon_sym_interface] = ACTIONS(85), + [anon_sym_class] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_RBRACE] = ACTIONS(87), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(85), + [anon_sym_this] = ACTIONS(85), + [anon_sym_null] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_do] = ACTIONS(85), + [anon_sym_while] = ACTIONS(85), + [anon_sym_for] = ACTIONS(85), + [anon_sym_if] = ACTIONS(85), + [anon_sym_else] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(85), + [aux_sym_number_literal_token1] = ACTIONS(85), + [aux_sym_number_literal_token2] = ACTIONS(87), + [aux_sym_number_literal_token3] = ACTIONS(87), + [aux_sym_number_literal_token4] = ACTIONS(85), + [aux_sym_number_literal_token5] = ACTIONS(87), + [anon_sym_return] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_DOLLAR_SLASH] = ACTIONS(87), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(85), + [anon_sym_default] = ACTIONS(85), + [anon_sym_try] = ACTIONS(85), + [anon_sym_catch] = ACTIONS(85), + [anon_sym_finally] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_boolean] = ACTIONS(85), + [anon_sym_char] = ACTIONS(85), + [anon_sym_short] = ACTIONS(85), + [anon_sym_long] = ACTIONS(85), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [anon_sym_void] = ACTIONS(85), + [anon_sym_LBRACK_RBRACK] = ACTIONS(87), + [anon_sym_public] = ACTIONS(85), + [anon_sym_protected] = ACTIONS(85), + [anon_sym_private] = ACTIONS(85), + [anon_sym_static] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_synchronized] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_new] = ACTIONS(85), + }, + [477] = { + [sym_comment] = STATE(477), + [sym_groovy_doc] = STATE(477), + [ts_builtin_sym_end] = ACTIONS(87), + [sym_identifier] = ACTIONS(85), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_STAR_COLON] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(87), + [anon_sym_import] = ACTIONS(85), + [anon_sym_package] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_assert] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(87), + [anon_sym_STAR_STAR_EQ] = ACTIONS(87), + [anon_sym_STAR_EQ] = ACTIONS(87), + [anon_sym_SLASH_EQ] = ACTIONS(87), + [anon_sym_PERCENT_EQ] = ACTIONS(87), + [anon_sym_PLUS_EQ] = ACTIONS(87), + [anon_sym_DASH_EQ] = ACTIONS(87), + [anon_sym_LT_LT_EQ] = ACTIONS(87), + [anon_sym_GT_GT_EQ] = ACTIONS(87), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(87), + [anon_sym_AMP_EQ] = ACTIONS(87), + [anon_sym_CARET_EQ] = ACTIONS(87), + [anon_sym_PIPE_EQ] = ACTIONS(87), + [anon_sym_QMARK_EQ] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_true] = ACTIONS(85), + [anon_sym_false] = ACTIONS(85), + [anon_sym_ATinterface] = ACTIONS(87), + [anon_sym_interface] = ACTIONS(85), + [anon_sym_class] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(87), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_RBRACE] = ACTIONS(87), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(85), + [anon_sym_this] = ACTIONS(85), + [anon_sym_null] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_RPAREN] = ACTIONS(87), + [anon_sym_do] = ACTIONS(85), + [anon_sym_while] = ACTIONS(85), + [anon_sym_for] = ACTIONS(85), + [anon_sym_if] = ACTIONS(85), + [anon_sym_else] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(85), + [aux_sym_number_literal_token1] = ACTIONS(85), + [aux_sym_number_literal_token2] = ACTIONS(87), + [aux_sym_number_literal_token3] = ACTIONS(87), + [aux_sym_number_literal_token4] = ACTIONS(85), + [aux_sym_number_literal_token5] = ACTIONS(87), + [anon_sym_pipeline] = ACTIONS(85), + [anon_sym_return] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_DOLLAR_SLASH] = ACTIONS(87), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_try] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_boolean] = ACTIONS(85), + [anon_sym_char] = ACTIONS(85), + [anon_sym_short] = ACTIONS(85), + [anon_sym_long] = ACTIONS(85), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [anon_sym_void] = ACTIONS(85), + [anon_sym_LBRACK_RBRACK] = ACTIONS(87), + [anon_sym_public] = ACTIONS(85), + [anon_sym_protected] = ACTIONS(85), + [anon_sym_private] = ACTIONS(85), + [anon_sym_static] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_synchronized] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_new] = ACTIONS(85), + }, + [478] = { + [sym_comment] = STATE(478), + [sym_groovy_doc] = STATE(478), + [sym_identifier] = ACTIONS(69), + [anon_sym_break] = ACTIONS(69), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_SEMI] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(69), + [anon_sym_STAR_COLON] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(71), + [anon_sym_import] = ACTIONS(69), + [anon_sym_package] = ACTIONS(69), + [anon_sym_AT] = ACTIONS(69), + [anon_sym_assert] = ACTIONS(69), + [anon_sym_EQ] = ACTIONS(71), + [anon_sym_STAR_STAR_EQ] = ACTIONS(71), + [anon_sym_STAR_EQ] = ACTIONS(71), + [anon_sym_SLASH_EQ] = ACTIONS(71), + [anon_sym_PERCENT_EQ] = ACTIONS(71), + [anon_sym_PLUS_EQ] = ACTIONS(71), + [anon_sym_DASH_EQ] = ACTIONS(71), + [anon_sym_LT_LT_EQ] = ACTIONS(71), + [anon_sym_GT_GT_EQ] = ACTIONS(71), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(71), + [anon_sym_AMP_EQ] = ACTIONS(71), + [anon_sym_CARET_EQ] = ACTIONS(71), + [anon_sym_PIPE_EQ] = ACTIONS(71), + [anon_sym_QMARK_EQ] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(69), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(69), + [anon_sym_class] = ACTIONS(69), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(71), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(69), + [anon_sym_this] = ACTIONS(69), + [anon_sym_null] = ACTIONS(69), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_do] = ACTIONS(69), + [anon_sym_while] = ACTIONS(69), + [anon_sym_for] = ACTIONS(69), + [anon_sym_if] = ACTIONS(69), + [anon_sym_else] = ACTIONS(69), + [anon_sym_LBRACK] = ACTIONS(69), + [aux_sym_number_literal_token1] = ACTIONS(69), + [aux_sym_number_literal_token2] = ACTIONS(71), + [aux_sym_number_literal_token3] = ACTIONS(71), + [aux_sym_number_literal_token4] = ACTIONS(69), + [aux_sym_number_literal_token5] = ACTIONS(71), + [anon_sym_return] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_SLASH] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_case] = ACTIONS(69), + [anon_sym_default] = ACTIONS(69), + [anon_sym_try] = ACTIONS(69), + [anon_sym_catch] = ACTIONS(69), + [anon_sym_finally] = ACTIONS(69), + [anon_sym_int] = ACTIONS(69), + [anon_sym_boolean] = ACTIONS(69), + [anon_sym_char] = ACTIONS(69), + [anon_sym_short] = ACTIONS(69), + [anon_sym_long] = ACTIONS(69), + [anon_sym_float] = ACTIONS(69), + [anon_sym_double] = ACTIONS(69), + [anon_sym_void] = ACTIONS(69), + [anon_sym_LBRACK_RBRACK] = ACTIONS(71), + [anon_sym_public] = ACTIONS(69), + [anon_sym_protected] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_final] = ACTIONS(69), + [anon_sym_synchronized] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_new] = ACTIONS(69), + }, + [479] = { + [sym_comment] = STATE(479), + [sym_groovy_doc] = STATE(479), + [ts_builtin_sym_end] = ACTIONS(75), + [sym_identifier] = ACTIONS(73), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(73), + [anon_sym_STAR_COLON] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(75), + [anon_sym_import] = ACTIONS(73), + [anon_sym_package] = ACTIONS(73), + [anon_sym_AT] = ACTIONS(73), + [anon_sym_assert] = ACTIONS(73), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_STAR_STAR_EQ] = ACTIONS(75), + [anon_sym_STAR_EQ] = ACTIONS(75), + [anon_sym_SLASH_EQ] = ACTIONS(75), + [anon_sym_PERCENT_EQ] = ACTIONS(75), + [anon_sym_PLUS_EQ] = ACTIONS(75), + [anon_sym_DASH_EQ] = ACTIONS(75), + [anon_sym_LT_LT_EQ] = ACTIONS(75), + [anon_sym_GT_GT_EQ] = ACTIONS(75), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(75), + [anon_sym_AMP_EQ] = ACTIONS(75), + [anon_sym_CARET_EQ] = ACTIONS(75), + [anon_sym_PIPE_EQ] = ACTIONS(75), + [anon_sym_QMARK_EQ] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(73), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ATinterface] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_class] = ACTIONS(73), + [anon_sym_COMMA] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_RBRACE] = ACTIONS(75), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(73), + [anon_sym_this] = ACTIONS(73), + [anon_sym_null] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_RPAREN] = ACTIONS(75), + [anon_sym_do] = ACTIONS(73), + [anon_sym_while] = ACTIONS(73), + [anon_sym_for] = ACTIONS(73), + [anon_sym_if] = ACTIONS(73), + [anon_sym_else] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(73), + [aux_sym_number_literal_token1] = ACTIONS(73), + [aux_sym_number_literal_token2] = ACTIONS(75), + [aux_sym_number_literal_token3] = ACTIONS(75), + [aux_sym_number_literal_token4] = ACTIONS(73), + [aux_sym_number_literal_token5] = ACTIONS(75), + [anon_sym_pipeline] = ACTIONS(73), + [anon_sym_return] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(75), + [anon_sym_DOLLAR_SLASH] = ACTIONS(75), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_try] = ACTIONS(73), + [anon_sym_int] = ACTIONS(73), + [anon_sym_boolean] = ACTIONS(73), + [anon_sym_char] = ACTIONS(73), + [anon_sym_short] = ACTIONS(73), + [anon_sym_long] = ACTIONS(73), + [anon_sym_float] = ACTIONS(73), + [anon_sym_double] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_LBRACK_RBRACK] = ACTIONS(75), + [anon_sym_public] = ACTIONS(73), + [anon_sym_protected] = ACTIONS(73), + [anon_sym_private] = ACTIONS(73), + [anon_sym_static] = ACTIONS(73), + [anon_sym_final] = ACTIONS(73), + [anon_sym_synchronized] = ACTIONS(73), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_new] = ACTIONS(73), + }, + [480] = { + [sym_comment] = STATE(480), + [sym_groovy_doc] = STATE(480), + [ts_builtin_sym_end] = ACTIONS(79), + [sym_identifier] = ACTIONS(77), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(77), + [anon_sym_STAR_COLON] = ACTIONS(79), + [anon_sym_DOT] = ACTIONS(79), + [anon_sym_import] = ACTIONS(77), + [anon_sym_package] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_assert] = ACTIONS(77), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_STAR_STAR_EQ] = ACTIONS(79), + [anon_sym_STAR_EQ] = ACTIONS(79), + [anon_sym_SLASH_EQ] = ACTIONS(79), + [anon_sym_PERCENT_EQ] = ACTIONS(79), + [anon_sym_PLUS_EQ] = ACTIONS(79), + [anon_sym_DASH_EQ] = ACTIONS(79), + [anon_sym_LT_LT_EQ] = ACTIONS(79), + [anon_sym_GT_GT_EQ] = ACTIONS(79), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(79), + [anon_sym_AMP_EQ] = ACTIONS(79), + [anon_sym_CARET_EQ] = ACTIONS(79), + [anon_sym_PIPE_EQ] = ACTIONS(79), + [anon_sym_QMARK_EQ] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_class] = ACTIONS(77), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_RBRACE] = ACTIONS(79), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(77), + [anon_sym_this] = ACTIONS(77), + [anon_sym_null] = ACTIONS(77), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(79), + [anon_sym_do] = ACTIONS(77), + [anon_sym_while] = ACTIONS(77), + [anon_sym_for] = ACTIONS(77), + [anon_sym_if] = ACTIONS(77), + [anon_sym_else] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym_number_literal_token1] = ACTIONS(77), + [aux_sym_number_literal_token2] = ACTIONS(79), + [aux_sym_number_literal_token3] = ACTIONS(79), + [aux_sym_number_literal_token4] = ACTIONS(77), + [aux_sym_number_literal_token5] = ACTIONS(79), + [anon_sym_pipeline] = ACTIONS(77), + [anon_sym_return] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(77), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR_SLASH] = ACTIONS(79), + [anon_sym_switch] = ACTIONS(77), + [anon_sym_try] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_boolean] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [anon_sym_void] = ACTIONS(77), + [anon_sym_LBRACK_RBRACK] = ACTIONS(79), + [anon_sym_public] = ACTIONS(77), + [anon_sym_protected] = ACTIONS(77), + [anon_sym_private] = ACTIONS(77), + [anon_sym_static] = ACTIONS(77), + [anon_sym_final] = ACTIONS(77), + [anon_sym_synchronized] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_new] = ACTIONS(77), + }, + [481] = { + [sym_comment] = STATE(481), + [sym_groovy_doc] = STATE(481), + [sym_identifier] = ACTIONS(89), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_STAR] = ACTIONS(97), + [anon_sym_STAR_COLON] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(101), + [anon_sym_import] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(101), + [anon_sym_STAR_STAR_EQ] = ACTIONS(101), + [anon_sym_STAR_EQ] = ACTIONS(101), + [anon_sym_SLASH_EQ] = ACTIONS(101), + [anon_sym_PERCENT_EQ] = ACTIONS(101), + [anon_sym_PLUS_EQ] = ACTIONS(101), + [anon_sym_DASH_EQ] = ACTIONS(101), + [anon_sym_LT_LT_EQ] = ACTIONS(101), + [anon_sym_GT_GT_EQ] = ACTIONS(101), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(101), + [anon_sym_AMP_EQ] = ACTIONS(101), + [anon_sym_CARET_EQ] = ACTIONS(101), + [anon_sym_PIPE_EQ] = ACTIONS(101), + [anon_sym_QMARK_EQ] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_true] = ACTIONS(97), + [anon_sym_false] = ACTIONS(97), + [anon_sym_ATinterface] = ACTIONS(95), + [anon_sym_interface] = ACTIONS(89), + [anon_sym_class] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(89), + [anon_sym_this] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(89), + [anon_sym_while] = ACTIONS(89), + [anon_sym_for] = ACTIONS(89), + [anon_sym_if] = ACTIONS(89), + [anon_sym_else] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(97), + [aux_sym_number_literal_token1] = ACTIONS(97), + [aux_sym_number_literal_token2] = ACTIONS(101), + [aux_sym_number_literal_token3] = ACTIONS(101), + [aux_sym_number_literal_token4] = ACTIONS(97), + [aux_sym_number_literal_token5] = ACTIONS(101), + [anon_sym_return] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SLASH] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(89), + [anon_sym_case] = ACTIONS(89), + [anon_sym_default] = ACTIONS(89), + [anon_sym_try] = ACTIONS(89), + [anon_sym_catch] = ACTIONS(89), + [anon_sym_finally] = ACTIONS(89), + [anon_sym_int] = ACTIONS(89), + [anon_sym_boolean] = ACTIONS(89), + [anon_sym_char] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_float] = ACTIONS(89), + [anon_sym_double] = ACTIONS(89), + [anon_sym_void] = ACTIONS(89), + [anon_sym_LBRACK_RBRACK] = ACTIONS(101), + [anon_sym_public] = ACTIONS(89), + [anon_sym_protected] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_static] = ACTIONS(89), + [anon_sym_final] = ACTIONS(89), + [anon_sym_synchronized] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_new] = ACTIONS(97), + }, + [482] = { + [sym_comment] = STATE(482), + [sym_groovy_doc] = STATE(482), + [ts_builtin_sym_end] = ACTIONS(83), + [sym_identifier] = ACTIONS(81), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_STAR_COLON] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(83), + [anon_sym_import] = ACTIONS(81), + [anon_sym_package] = ACTIONS(81), + [anon_sym_AT] = ACTIONS(81), + [anon_sym_assert] = ACTIONS(81), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_STAR_STAR_EQ] = ACTIONS(83), + [anon_sym_STAR_EQ] = ACTIONS(83), + [anon_sym_SLASH_EQ] = ACTIONS(83), + [anon_sym_PERCENT_EQ] = ACTIONS(83), + [anon_sym_PLUS_EQ] = ACTIONS(83), + [anon_sym_DASH_EQ] = ACTIONS(83), + [anon_sym_LT_LT_EQ] = ACTIONS(83), + [anon_sym_GT_GT_EQ] = ACTIONS(83), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(83), + [anon_sym_AMP_EQ] = ACTIONS(83), + [anon_sym_CARET_EQ] = ACTIONS(83), + [anon_sym_PIPE_EQ] = ACTIONS(83), + [anon_sym_QMARK_EQ] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_ATinterface] = ACTIONS(83), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_RBRACE] = ACTIONS(83), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(81), + [anon_sym_this] = ACTIONS(81), + [anon_sym_null] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [anon_sym_do] = ACTIONS(81), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(81), + [anon_sym_if] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(81), + [aux_sym_number_literal_token1] = ACTIONS(81), + [aux_sym_number_literal_token2] = ACTIONS(83), + [aux_sym_number_literal_token3] = ACTIONS(83), + [aux_sym_number_literal_token4] = ACTIONS(81), + [aux_sym_number_literal_token5] = ACTIONS(83), + [anon_sym_pipeline] = ACTIONS(81), + [anon_sym_return] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_SLASH] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_try] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_boolean] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_float] = ACTIONS(81), + [anon_sym_double] = ACTIONS(81), + [anon_sym_void] = ACTIONS(81), + [anon_sym_LBRACK_RBRACK] = ACTIONS(83), + [anon_sym_public] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_static] = ACTIONS(81), + [anon_sym_final] = ACTIONS(81), + [anon_sym_synchronized] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(83), + [anon_sym_new] = ACTIONS(81), + }, + [483] = { + [sym_access_op] = STATE(311), + [sym_dotted_identifier] = STATE(227), + [sym__prefix_expression] = STATE(2240), + [sym_increment_op] = STATE(311), + [sym_binary_op] = STATE(311), + [sym_boolean_literal] = STATE(311), + [sym_closure] = STATE(311), + [sym_comment] = STATE(483), + [sym_groovy_doc] = STATE(483), + [sym__expression] = STATE(382), + [sym_function_call] = STATE(227), + [sym_index] = STATE(227), + [sym_list] = STATE(311), + [sym_map] = STATE(311), + [sym_number_literal] = STATE(311), + [sym_string] = STATE(227), + [sym__plain_string] = STATE(230), + [sym__interpolate_string] = STATE(230), + [sym_ternary_op] = STATE(311), + [sym_unary_op] = STATE(311), + [ts_builtin_sym_end] = ACTIONS(808), + [sym_identifier] = ACTIONS(848), + [anon_sym_break] = ACTIONS(806), + [anon_sym_continue] = ACTIONS(806), + [anon_sym_SEMI] = ACTIONS(808), + [anon_sym_STAR] = ACTIONS(850), + [anon_sym_STAR_COLON] = ACTIONS(852), + [anon_sym_import] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(806), + [anon_sym_assert] = ACTIONS(806), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_true] = ACTIONS(860), + [anon_sym_false] = ACTIONS(860), + [anon_sym_ATinterface] = ACTIONS(808), + [anon_sym_interface] = ACTIONS(806), + [anon_sym_class] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(862), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(806), + [anon_sym_this] = ACTIONS(864), + [anon_sym_null] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(866), + [anon_sym_do] = ACTIONS(806), + [anon_sym_while] = ACTIONS(806), + [anon_sym_for] = ACTIONS(806), + [anon_sym_if] = ACTIONS(806), + [anon_sym_else] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(868), + [aux_sym_number_literal_token1] = ACTIONS(870), + [aux_sym_number_literal_token2] = ACTIONS(872), + [aux_sym_number_literal_token3] = ACTIONS(872), + [aux_sym_number_literal_token4] = ACTIONS(870), + [aux_sym_number_literal_token5] = ACTIONS(872), + [anon_sym_pipeline] = ACTIONS(806), + [anon_sym_return] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(874), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(880), + [anon_sym_DOLLAR_SLASH] = ACTIONS(882), + [anon_sym_switch] = ACTIONS(806), + [anon_sym_try] = ACTIONS(806), + [anon_sym_catch] = ACTIONS(806), + [anon_sym_finally] = ACTIONS(806), + [anon_sym_int] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_char] = ACTIONS(806), + [anon_sym_short] = ACTIONS(806), + [anon_sym_long] = ACTIONS(806), + [anon_sym_float] = ACTIONS(806), + [anon_sym_double] = ACTIONS(806), + [anon_sym_void] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_synchronized] = ACTIONS(806), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_new] = ACTIONS(886), + }, + [484] = { + [sym_comment] = STATE(484), + [sym_groovy_doc] = STATE(484), + [sym_identifier] = ACTIONS(77), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(77), + [anon_sym_STAR_COLON] = ACTIONS(79), + [anon_sym_DOT] = ACTIONS(79), + [anon_sym_import] = ACTIONS(77), + [anon_sym_package] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_assert] = ACTIONS(77), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_STAR_STAR_EQ] = ACTIONS(79), + [anon_sym_STAR_EQ] = ACTIONS(79), + [anon_sym_SLASH_EQ] = ACTIONS(79), + [anon_sym_PERCENT_EQ] = ACTIONS(79), + [anon_sym_PLUS_EQ] = ACTIONS(79), + [anon_sym_DASH_EQ] = ACTIONS(79), + [anon_sym_LT_LT_EQ] = ACTIONS(79), + [anon_sym_GT_GT_EQ] = ACTIONS(79), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(79), + [anon_sym_AMP_EQ] = ACTIONS(79), + [anon_sym_CARET_EQ] = ACTIONS(79), + [anon_sym_PIPE_EQ] = ACTIONS(79), + [anon_sym_QMARK_EQ] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_class] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_RBRACE] = ACTIONS(79), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(77), + [anon_sym_this] = ACTIONS(77), + [anon_sym_null] = ACTIONS(77), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_do] = ACTIONS(77), + [anon_sym_while] = ACTIONS(77), + [anon_sym_for] = ACTIONS(77), + [anon_sym_if] = ACTIONS(77), + [anon_sym_else] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym_number_literal_token1] = ACTIONS(77), + [aux_sym_number_literal_token2] = ACTIONS(79), + [aux_sym_number_literal_token3] = ACTIONS(79), + [aux_sym_number_literal_token4] = ACTIONS(77), + [aux_sym_number_literal_token5] = ACTIONS(79), + [anon_sym_return] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(77), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR_SLASH] = ACTIONS(79), + [anon_sym_switch] = ACTIONS(77), + [anon_sym_case] = ACTIONS(77), + [anon_sym_default] = ACTIONS(77), + [anon_sym_try] = ACTIONS(77), + [anon_sym_catch] = ACTIONS(77), + [anon_sym_finally] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_boolean] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [anon_sym_void] = ACTIONS(77), + [anon_sym_LBRACK_RBRACK] = ACTIONS(79), + [anon_sym_public] = ACTIONS(77), + [anon_sym_protected] = ACTIONS(77), + [anon_sym_private] = ACTIONS(77), + [anon_sym_static] = ACTIONS(77), + [anon_sym_final] = ACTIONS(77), + [anon_sym_synchronized] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_new] = ACTIONS(77), + }, + [485] = { + [sym_comment] = STATE(485), + [sym_groovy_doc] = STATE(485), + [sym_identifier] = ACTIONS(97), + [anon_sym_DOT_AMP] = ACTIONS(93), + [anon_sym_DOT_AT] = ACTIONS(93), + [anon_sym_QMARK_DOT] = ACTIONS(93), + [anon_sym_STAR_DOT] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(97), + [anon_sym_STAR_COLON] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(97), + [anon_sym_as] = ACTIONS(99), + [anon_sym_EQ] = ACTIONS(97), + [anon_sym_STAR_STAR_EQ] = ACTIONS(101), + [anon_sym_STAR_EQ] = ACTIONS(101), + [anon_sym_SLASH_EQ] = ACTIONS(101), + [anon_sym_PERCENT_EQ] = ACTIONS(101), + [anon_sym_PLUS_EQ] = ACTIONS(101), + [anon_sym_DASH_EQ] = ACTIONS(101), + [anon_sym_LT_LT_EQ] = ACTIONS(101), + [anon_sym_GT_GT_EQ] = ACTIONS(101), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(101), + [anon_sym_AMP_EQ] = ACTIONS(101), + [anon_sym_CARET_EQ] = ACTIONS(101), + [anon_sym_PIPE_EQ] = ACTIONS(101), + [anon_sym_QMARK_EQ] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(99), + [anon_sym_SLASH] = ACTIONS(97), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_GT_GT] = ACTIONS(99), + [anon_sym_GT_GT_GT] = ACTIONS(99), + [anon_sym_DOT_DOT] = ACTIONS(99), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_in] = ACTIONS(99), + [anon_sym_BANGin] = ACTIONS(99), + [anon_sym_instanceof] = ACTIONS(99), + [anon_sym_BANGinstanceof] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_LT_EQ_GT] = ACTIONS(93), + [anon_sym_EQ_EQ_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ_EQ] = ACTIONS(93), + [anon_sym_EQ_TILDE] = ACTIONS(93), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(99), + [anon_sym_PIPE] = ACTIONS(99), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(99), + [anon_sym_true] = ACTIONS(97), + [anon_sym_false] = ACTIONS(97), + [anon_sym_COMMA] = ACTIONS(888), + [anon_sym_LBRACE] = ACTIONS(101), + [anon_sym_DASH_GT] = ACTIONS(888), + [anon_sym_RBRACE] = ACTIONS(93), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_this] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(97), + [aux_sym_number_literal_token1] = ACTIONS(97), + [aux_sym_number_literal_token2] = ACTIONS(101), + [aux_sym_number_literal_token3] = ACTIONS(101), + [aux_sym_number_literal_token4] = ACTIONS(97), + [aux_sym_number_literal_token5] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(101), + [anon_sym_DOLLAR_SLASH] = ACTIONS(101), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_LBRACK_RBRACK] = ACTIONS(101), + [anon_sym_TILDE] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_new] = ACTIONS(97), + }, + [486] = { + [sym_comment] = STATE(486), + [sym_groovy_doc] = STATE(486), + [sym_identifier] = ACTIONS(81), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_STAR_COLON] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(83), + [anon_sym_import] = ACTIONS(81), + [anon_sym_package] = ACTIONS(81), + [anon_sym_AT] = ACTIONS(81), + [anon_sym_assert] = ACTIONS(81), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_STAR_STAR_EQ] = ACTIONS(83), + [anon_sym_STAR_EQ] = ACTIONS(83), + [anon_sym_SLASH_EQ] = ACTIONS(83), + [anon_sym_PERCENT_EQ] = ACTIONS(83), + [anon_sym_PLUS_EQ] = ACTIONS(83), + [anon_sym_DASH_EQ] = ACTIONS(83), + [anon_sym_LT_LT_EQ] = ACTIONS(83), + [anon_sym_GT_GT_EQ] = ACTIONS(83), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(83), + [anon_sym_AMP_EQ] = ACTIONS(83), + [anon_sym_CARET_EQ] = ACTIONS(83), + [anon_sym_PIPE_EQ] = ACTIONS(83), + [anon_sym_QMARK_EQ] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_ATinterface] = ACTIONS(83), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_RBRACE] = ACTIONS(83), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(81), + [anon_sym_this] = ACTIONS(81), + [anon_sym_null] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_do] = ACTIONS(81), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(81), + [anon_sym_if] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(81), + [aux_sym_number_literal_token1] = ACTIONS(81), + [aux_sym_number_literal_token2] = ACTIONS(83), + [aux_sym_number_literal_token3] = ACTIONS(83), + [aux_sym_number_literal_token4] = ACTIONS(81), + [aux_sym_number_literal_token5] = ACTIONS(83), + [anon_sym_return] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_SLASH] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(81), + [anon_sym_default] = ACTIONS(81), + [anon_sym_try] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_finally] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_boolean] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_float] = ACTIONS(81), + [anon_sym_double] = ACTIONS(81), + [anon_sym_void] = ACTIONS(81), + [anon_sym_LBRACK_RBRACK] = ACTIONS(83), + [anon_sym_public] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_static] = ACTIONS(81), + [anon_sym_final] = ACTIONS(81), + [anon_sym_synchronized] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(83), + [anon_sym_new] = ACTIONS(81), + }, + [487] = { + [sym_access_op] = STATE(107), + [sym_dotted_identifier] = STATE(73), + [sym__prefix_expression] = STATE(2287), + [sym_increment_op] = STATE(107), + [sym_binary_op] = STATE(107), + [sym_boolean_literal] = STATE(107), + [sym_closure] = STATE(107), + [sym_comment] = STATE(487), + [sym_groovy_doc] = STATE(487), + [sym__expression] = STATE(159), + [sym_function_call] = STATE(73), + [sym_index] = STATE(73), + [sym_list] = STATE(107), + [sym_map] = STATE(107), + [sym_number_literal] = STATE(107), + [sym_string] = STATE(73), + [sym__plain_string] = STATE(66), + [sym__interpolate_string] = STATE(66), + [sym_ternary_op] = STATE(107), + [sym_unary_op] = STATE(107), + [sym_identifier] = ACTIONS(890), + [anon_sym_break] = ACTIONS(806), + [anon_sym_continue] = ACTIONS(806), + [anon_sym_SEMI] = ACTIONS(808), + [anon_sym_STAR] = ACTIONS(892), + [anon_sym_STAR_COLON] = ACTIONS(894), + [anon_sym_import] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(806), + [anon_sym_assert] = ACTIONS(806), + [anon_sym_PLUS_PLUS] = ACTIONS(896), + [anon_sym_DASH_DASH] = ACTIONS(896), + [anon_sym_SLASH] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_true] = ACTIONS(902), + [anon_sym_false] = ACTIONS(902), + [anon_sym_ATinterface] = ACTIONS(808), + [anon_sym_interface] = ACTIONS(806), + [anon_sym_class] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(904), + [anon_sym_RBRACE] = ACTIONS(808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(806), + [anon_sym_this] = ACTIONS(906), + [anon_sym_null] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(908), + [anon_sym_do] = ACTIONS(806), + [anon_sym_while] = ACTIONS(806), + [anon_sym_for] = ACTIONS(806), + [anon_sym_if] = ACTIONS(806), + [anon_sym_else] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(910), + [aux_sym_number_literal_token1] = ACTIONS(912), + [aux_sym_number_literal_token2] = ACTIONS(914), + [aux_sym_number_literal_token3] = ACTIONS(914), + [aux_sym_number_literal_token4] = ACTIONS(912), + [aux_sym_number_literal_token5] = ACTIONS(914), + [anon_sym_return] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(916), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(918), + [anon_sym_DQUOTE] = ACTIONS(920), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(922), + [anon_sym_DOLLAR_SLASH] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(806), + [anon_sym_try] = ACTIONS(806), + [anon_sym_catch] = ACTIONS(806), + [anon_sym_finally] = ACTIONS(806), + [anon_sym_int] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_char] = ACTIONS(806), + [anon_sym_short] = ACTIONS(806), + [anon_sym_long] = ACTIONS(806), + [anon_sym_float] = ACTIONS(806), + [anon_sym_double] = ACTIONS(806), + [anon_sym_void] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_synchronized] = ACTIONS(806), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_new] = ACTIONS(928), + }, + [488] = { + [sym_comment] = STATE(488), + [sym_groovy_doc] = STATE(488), + [ts_builtin_sym_end] = ACTIONS(95), + [sym_identifier] = ACTIONS(89), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_STAR] = ACTIONS(97), + [anon_sym_STAR_COLON] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(101), + [anon_sym_import] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(101), + [anon_sym_STAR_STAR_EQ] = ACTIONS(101), + [anon_sym_STAR_EQ] = ACTIONS(101), + [anon_sym_SLASH_EQ] = ACTIONS(101), + [anon_sym_PERCENT_EQ] = ACTIONS(101), + [anon_sym_PLUS_EQ] = ACTIONS(101), + [anon_sym_DASH_EQ] = ACTIONS(101), + [anon_sym_LT_LT_EQ] = ACTIONS(101), + [anon_sym_GT_GT_EQ] = ACTIONS(101), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(101), + [anon_sym_AMP_EQ] = ACTIONS(101), + [anon_sym_CARET_EQ] = ACTIONS(101), + [anon_sym_PIPE_EQ] = ACTIONS(101), + [anon_sym_QMARK_EQ] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_true] = ACTIONS(97), + [anon_sym_false] = ACTIONS(97), + [anon_sym_ATinterface] = ACTIONS(95), + [anon_sym_interface] = ACTIONS(89), + [anon_sym_class] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(95), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(89), + [anon_sym_this] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(89), + [anon_sym_while] = ACTIONS(89), + [anon_sym_for] = ACTIONS(89), + [anon_sym_if] = ACTIONS(89), + [anon_sym_else] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(97), + [aux_sym_number_literal_token1] = ACTIONS(97), + [aux_sym_number_literal_token2] = ACTIONS(101), + [aux_sym_number_literal_token3] = ACTIONS(101), + [aux_sym_number_literal_token4] = ACTIONS(97), + [aux_sym_number_literal_token5] = ACTIONS(101), + [anon_sym_pipeline] = ACTIONS(89), + [anon_sym_return] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SLASH] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(89), + [anon_sym_try] = ACTIONS(89), + [anon_sym_catch] = ACTIONS(89), + [anon_sym_finally] = ACTIONS(89), + [anon_sym_int] = ACTIONS(89), + [anon_sym_boolean] = ACTIONS(89), + [anon_sym_char] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_float] = ACTIONS(89), + [anon_sym_double] = ACTIONS(89), + [anon_sym_void] = ACTIONS(89), + [anon_sym_LBRACK_RBRACK] = ACTIONS(101), + [anon_sym_public] = ACTIONS(89), + [anon_sym_protected] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_static] = ACTIONS(89), + [anon_sym_final] = ACTIONS(89), + [anon_sym_synchronized] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_new] = ACTIONS(97), + }, + [489] = { + [sym_access_op] = STATE(364), + [sym_dotted_identifier] = STATE(244), + [sym__prefix_expression] = STATE(2196), + [sym_increment_op] = STATE(364), + [sym_binary_op] = STATE(364), + [sym_boolean_literal] = STATE(364), + [sym_closure] = STATE(364), + [sym_comment] = STATE(489), + [sym_groovy_doc] = STATE(489), + [sym__expression] = STATE(426), + [sym_function_call] = STATE(244), + [sym_index] = STATE(244), + [sym_list] = STATE(364), + [sym_map] = STATE(364), + [sym_number_literal] = STATE(364), + [sym_string] = STATE(244), + [sym__plain_string] = STATE(260), + [sym__interpolate_string] = STATE(260), + [sym_ternary_op] = STATE(364), + [sym_unary_op] = STATE(364), + [sym_identifier] = ACTIONS(930), + [anon_sym_break] = ACTIONS(806), + [anon_sym_continue] = ACTIONS(806), + [anon_sym_SEMI] = ACTIONS(808), + [anon_sym_STAR] = ACTIONS(932), + [anon_sym_STAR_COLON] = ACTIONS(934), + [anon_sym_import] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(806), + [anon_sym_assert] = ACTIONS(806), + [anon_sym_PLUS_PLUS] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(936), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(940), + [anon_sym_DASH] = ACTIONS(940), + [anon_sym_true] = ACTIONS(942), + [anon_sym_false] = ACTIONS(942), + [anon_sym_ATinterface] = ACTIONS(808), + [anon_sym_interface] = ACTIONS(806), + [anon_sym_class] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(806), + [anon_sym_this] = ACTIONS(946), + [anon_sym_null] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_do] = ACTIONS(806), + [anon_sym_while] = ACTIONS(806), + [anon_sym_for] = ACTIONS(806), + [anon_sym_if] = ACTIONS(806), + [anon_sym_else] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(950), + [aux_sym_number_literal_token1] = ACTIONS(952), + [aux_sym_number_literal_token2] = ACTIONS(954), + [aux_sym_number_literal_token3] = ACTIONS(954), + [aux_sym_number_literal_token4] = ACTIONS(952), + [aux_sym_number_literal_token5] = ACTIONS(954), + [anon_sym_return] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(956), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(960), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(962), + [anon_sym_DOLLAR_SLASH] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(806), + [anon_sym_case] = ACTIONS(806), + [anon_sym_default] = ACTIONS(806), + [anon_sym_try] = ACTIONS(806), + [anon_sym_int] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_char] = ACTIONS(806), + [anon_sym_short] = ACTIONS(806), + [anon_sym_long] = ACTIONS(806), + [anon_sym_float] = ACTIONS(806), + [anon_sym_double] = ACTIONS(806), + [anon_sym_void] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_synchronized] = ACTIONS(806), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_new] = ACTIONS(968), + }, + [490] = { + [sym__statement] = STATE(1514), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(1513), + [sym_groovy_package] = STATE(1513), + [sym__prefix_expression] = STATE(1413), + [sym_annotation] = STATE(1764), + [sym_assertion] = STATE(1513), + [sym_assignment] = STATE(1513), + [sym_increment_op] = STATE(1222), + [sym_class_definition] = STATE(1513), + [sym_closure] = STATE(1513), + [sym_comment] = STATE(490), + [sym_groovy_doc] = STATE(490), + [sym_declaration] = STATE(1513), + [sym_do_while_loop] = STATE(1513), + [sym_for_loop] = STATE(1513), + [sym_for_in_loop] = STATE(1513), + [sym_function_call] = STATE(515), + [sym_function_declaration] = STATE(1513), + [sym_function_definition] = STATE(1513), + [sym_if_statement] = STATE(1513), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(1513), + [sym__juxt_function_name] = STATE(1057), + [sym_return] = STATE(1513), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(1513), + [sym_try_statement] = STATE(1513), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2414), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1801), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(1513), + [aux_sym_source_file_repeat1] = STATE(497), + [aux_sym_class_definition_repeat1] = STATE(1804), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(970), + [anon_sym_continue] = ACTIONS(970), + [anon_sym_import] = ACTIONS(972), + [anon_sym_package] = ACTIONS(974), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(976), + [anon_sym_PLUS_PLUS] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(936), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(978), + [anon_sym_interface] = ACTIONS(980), + [anon_sym_class] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(982), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(984), + [anon_sym_do] = ACTIONS(986), + [anon_sym_while] = ACTIONS(988), + [anon_sym_for] = ACTIONS(990), + [anon_sym_if] = ACTIONS(992), + [anon_sym_return] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_case] = ACTIONS(998), + [anon_sym_default] = ACTIONS(998), + [anon_sym_try] = ACTIONS(1000), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [491] = { + [sym_comment] = STATE(491), + [sym_groovy_doc] = STATE(491), + [sym_identifier] = ACTIONS(275), + [anon_sym_DOT_AMP] = ACTIONS(277), + [anon_sym_DOT_AT] = ACTIONS(277), + [anon_sym_QMARK_DOT] = ACTIONS(277), + [anon_sym_STAR_DOT] = ACTIONS(277), + [anon_sym_STAR] = ACTIONS(275), + [anon_sym_STAR_COLON] = ACTIONS(277), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_as] = ACTIONS(275), + [anon_sym_EQ] = ACTIONS(275), + [anon_sym_STAR_STAR_EQ] = ACTIONS(277), + [anon_sym_STAR_EQ] = ACTIONS(277), + [anon_sym_SLASH_EQ] = ACTIONS(277), + [anon_sym_PERCENT_EQ] = ACTIONS(277), + [anon_sym_PLUS_EQ] = ACTIONS(277), + [anon_sym_DASH_EQ] = ACTIONS(277), + [anon_sym_LT_LT_EQ] = ACTIONS(277), + [anon_sym_GT_GT_EQ] = ACTIONS(277), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(277), + [anon_sym_AMP_EQ] = ACTIONS(277), + [anon_sym_CARET_EQ] = ACTIONS(277), + [anon_sym_PIPE_EQ] = ACTIONS(277), + [anon_sym_QMARK_EQ] = ACTIONS(277), + [anon_sym_PLUS_PLUS] = ACTIONS(277), + [anon_sym_DASH_DASH] = ACTIONS(277), + [anon_sym_PERCENT] = ACTIONS(275), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_PLUS] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_LT] = ACTIONS(275), + [anon_sym_GT_GT] = ACTIONS(275), + [anon_sym_GT_GT_GT] = ACTIONS(275), + [anon_sym_DOT_DOT] = ACTIONS(275), + [anon_sym_DOT_DOT_LT] = ACTIONS(277), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(277), + [anon_sym_LT_DOT_DOT] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_LT_EQ] = ACTIONS(275), + [anon_sym_GT] = ACTIONS(275), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_in] = ACTIONS(275), + [anon_sym_BANGin] = ACTIONS(275), + [anon_sym_instanceof] = ACTIONS(275), + [anon_sym_BANGinstanceof] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_LT_EQ_GT] = ACTIONS(277), + [anon_sym_EQ_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ_EQ] = ACTIONS(277), + [anon_sym_EQ_TILDE] = ACTIONS(277), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(277), + [anon_sym_AMP] = ACTIONS(275), + [anon_sym_CARET] = ACTIONS(275), + [anon_sym_PIPE] = ACTIONS(275), + [anon_sym_AMP_AMP] = ACTIONS(277), + [anon_sym_PIPE_PIPE] = ACTIONS(277), + [anon_sym_QMARK_COLON] = ACTIONS(277), + [anon_sym_STAR_STAR] = ACTIONS(275), + [anon_sym_true] = ACTIONS(275), + [anon_sym_false] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(277), + [anon_sym_RBRACE] = ACTIONS(277), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_this] = ACTIONS(275), + [anon_sym_null] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(275), + [aux_sym_number_literal_token1] = ACTIONS(275), + [aux_sym_number_literal_token2] = ACTIONS(277), + [aux_sym_number_literal_token3] = ACTIONS(277), + [aux_sym_number_literal_token4] = ACTIONS(275), + [aux_sym_number_literal_token5] = ACTIONS(277), + [anon_sym_SQUOTE] = ACTIONS(275), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(277), + [anon_sym_DQUOTE] = ACTIONS(275), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(277), + [anon_sym_DOLLAR_SLASH] = ACTIONS(277), + [anon_sym_QMARK] = ACTIONS(275), + [anon_sym_LBRACK_RBRACK] = ACTIONS(277), + [anon_sym_TILDE] = ACTIONS(277), + [anon_sym_BANG] = ACTIONS(275), + [anon_sym_new] = ACTIONS(275), + }, + [492] = { + [sym_comment] = STATE(492), + [sym_groovy_doc] = STATE(492), + [sym_identifier] = ACTIONS(73), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(73), + [anon_sym_STAR_COLON] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(75), + [anon_sym_import] = ACTIONS(73), + [anon_sym_package] = ACTIONS(73), + [anon_sym_AT] = ACTIONS(73), + [anon_sym_assert] = ACTIONS(73), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_STAR_STAR_EQ] = ACTIONS(75), + [anon_sym_STAR_EQ] = ACTIONS(75), + [anon_sym_SLASH_EQ] = ACTIONS(75), + [anon_sym_PERCENT_EQ] = ACTIONS(75), + [anon_sym_PLUS_EQ] = ACTIONS(75), + [anon_sym_DASH_EQ] = ACTIONS(75), + [anon_sym_LT_LT_EQ] = ACTIONS(75), + [anon_sym_GT_GT_EQ] = ACTIONS(75), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(75), + [anon_sym_AMP_EQ] = ACTIONS(75), + [anon_sym_CARET_EQ] = ACTIONS(75), + [anon_sym_PIPE_EQ] = ACTIONS(75), + [anon_sym_QMARK_EQ] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(73), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ATinterface] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_class] = ACTIONS(73), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_RBRACE] = ACTIONS(75), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(73), + [anon_sym_this] = ACTIONS(73), + [anon_sym_null] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_do] = ACTIONS(73), + [anon_sym_while] = ACTIONS(73), + [anon_sym_for] = ACTIONS(73), + [anon_sym_if] = ACTIONS(73), + [anon_sym_else] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(73), + [aux_sym_number_literal_token1] = ACTIONS(73), + [aux_sym_number_literal_token2] = ACTIONS(75), + [aux_sym_number_literal_token3] = ACTIONS(75), + [aux_sym_number_literal_token4] = ACTIONS(73), + [aux_sym_number_literal_token5] = ACTIONS(75), + [anon_sym_return] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(75), + [anon_sym_DOLLAR_SLASH] = ACTIONS(75), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(73), + [anon_sym_default] = ACTIONS(73), + [anon_sym_try] = ACTIONS(73), + [anon_sym_int] = ACTIONS(73), + [anon_sym_boolean] = ACTIONS(73), + [anon_sym_char] = ACTIONS(73), + [anon_sym_short] = ACTIONS(73), + [anon_sym_long] = ACTIONS(73), + [anon_sym_float] = ACTIONS(73), + [anon_sym_double] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_LBRACK_RBRACK] = ACTIONS(75), + [anon_sym_public] = ACTIONS(73), + [anon_sym_protected] = ACTIONS(73), + [anon_sym_private] = ACTIONS(73), + [anon_sym_static] = ACTIONS(73), + [anon_sym_final] = ACTIONS(73), + [anon_sym_synchronized] = ACTIONS(73), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_new] = ACTIONS(73), + }, + [493] = { + [sym_comment] = STATE(493), + [sym_groovy_doc] = STATE(493), + [sym_identifier] = ACTIONS(97), + [anon_sym_DOT_AMP] = ACTIONS(93), + [anon_sym_DOT_AT] = ACTIONS(93), + [anon_sym_QMARK_DOT] = ACTIONS(93), + [anon_sym_STAR_DOT] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(97), + [anon_sym_STAR_COLON] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(97), + [anon_sym_as] = ACTIONS(99), + [anon_sym_EQ] = ACTIONS(97), + [anon_sym_STAR_STAR_EQ] = ACTIONS(101), + [anon_sym_STAR_EQ] = ACTIONS(101), + [anon_sym_SLASH_EQ] = ACTIONS(101), + [anon_sym_PERCENT_EQ] = ACTIONS(101), + [anon_sym_PLUS_EQ] = ACTIONS(101), + [anon_sym_DASH_EQ] = ACTIONS(101), + [anon_sym_LT_LT_EQ] = ACTIONS(101), + [anon_sym_GT_GT_EQ] = ACTIONS(101), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(101), + [anon_sym_AMP_EQ] = ACTIONS(101), + [anon_sym_CARET_EQ] = ACTIONS(101), + [anon_sym_PIPE_EQ] = ACTIONS(101), + [anon_sym_QMARK_EQ] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(99), + [anon_sym_SLASH] = ACTIONS(97), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_GT_GT] = ACTIONS(99), + [anon_sym_GT_GT_GT] = ACTIONS(99), + [anon_sym_DOT_DOT] = ACTIONS(99), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(93), + [anon_sym_LT_DOT_DOT] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_in] = ACTIONS(99), + [anon_sym_BANGin] = ACTIONS(99), + [anon_sym_instanceof] = ACTIONS(99), + [anon_sym_BANGinstanceof] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_LT_EQ_GT] = ACTIONS(93), + [anon_sym_EQ_EQ_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ_EQ] = ACTIONS(93), + [anon_sym_EQ_TILDE] = ACTIONS(93), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(99), + [anon_sym_PIPE] = ACTIONS(99), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(99), + [anon_sym_true] = ACTIONS(97), + [anon_sym_false] = ACTIONS(97), + [anon_sym_LBRACE] = ACTIONS(101), + [anon_sym_RBRACE] = ACTIONS(93), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_this] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(97), + [aux_sym_number_literal_token1] = ACTIONS(97), + [aux_sym_number_literal_token2] = ACTIONS(101), + [aux_sym_number_literal_token3] = ACTIONS(101), + [aux_sym_number_literal_token4] = ACTIONS(97), + [aux_sym_number_literal_token5] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(101), + [anon_sym_DOLLAR_SLASH] = ACTIONS(101), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_LBRACK_RBRACK] = ACTIONS(101), + [anon_sym_TILDE] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_new] = ACTIONS(97), + }, + [494] = { + [sym__statement] = STATE(1514), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(1513), + [sym_groovy_package] = STATE(1513), + [sym__prefix_expression] = STATE(1413), + [sym_annotation] = STATE(1764), + [sym_assertion] = STATE(1513), + [sym_assignment] = STATE(1513), + [sym_increment_op] = STATE(1222), + [sym_class_definition] = STATE(1513), + [sym_closure] = STATE(1513), + [sym_comment] = STATE(494), + [sym_groovy_doc] = STATE(494), + [sym_declaration] = STATE(1513), + [sym_do_while_loop] = STATE(1513), + [sym_for_loop] = STATE(1513), + [sym_for_in_loop] = STATE(1513), + [sym_function_call] = STATE(515), + [sym_function_declaration] = STATE(1513), + [sym_function_definition] = STATE(1513), + [sym_if_statement] = STATE(1513), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(1513), + [sym__juxt_function_name] = STATE(1057), + [sym_return] = STATE(1513), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(1513), + [sym_try_statement] = STATE(1513), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2414), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1801), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(1513), + [aux_sym_source_file_repeat1] = STATE(490), + [aux_sym_class_definition_repeat1] = STATE(1804), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(970), + [anon_sym_continue] = ACTIONS(970), + [anon_sym_import] = ACTIONS(972), + [anon_sym_package] = ACTIONS(974), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(976), + [anon_sym_PLUS_PLUS] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(936), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(978), + [anon_sym_interface] = ACTIONS(980), + [anon_sym_class] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1002), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(984), + [anon_sym_do] = ACTIONS(986), + [anon_sym_while] = ACTIONS(988), + [anon_sym_for] = ACTIONS(990), + [anon_sym_if] = ACTIONS(992), + [anon_sym_return] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_case] = ACTIONS(1004), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_try] = ACTIONS(1000), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [495] = { + [sym_comment] = STATE(495), + [sym_groovy_doc] = STATE(495), + [sym_identifier] = ACTIONS(279), + [anon_sym_DOT_AMP] = ACTIONS(281), + [anon_sym_DOT_AT] = ACTIONS(281), + [anon_sym_QMARK_DOT] = ACTIONS(281), + [anon_sym_STAR_DOT] = ACTIONS(281), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_STAR_COLON] = ACTIONS(281), + [anon_sym_DOT] = ACTIONS(279), + [anon_sym_as] = ACTIONS(279), + [anon_sym_EQ] = ACTIONS(279), + [anon_sym_STAR_STAR_EQ] = ACTIONS(281), + [anon_sym_STAR_EQ] = ACTIONS(281), + [anon_sym_SLASH_EQ] = ACTIONS(281), + [anon_sym_PERCENT_EQ] = ACTIONS(281), + [anon_sym_PLUS_EQ] = ACTIONS(281), + [anon_sym_DASH_EQ] = ACTIONS(281), + [anon_sym_LT_LT_EQ] = ACTIONS(281), + [anon_sym_GT_GT_EQ] = ACTIONS(281), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(281), + [anon_sym_AMP_EQ] = ACTIONS(281), + [anon_sym_CARET_EQ] = ACTIONS(281), + [anon_sym_PIPE_EQ] = ACTIONS(281), + [anon_sym_QMARK_EQ] = ACTIONS(281), + [anon_sym_PLUS_PLUS] = ACTIONS(281), + [anon_sym_DASH_DASH] = ACTIONS(281), + [anon_sym_PERCENT] = ACTIONS(279), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_LT_LT] = ACTIONS(279), + [anon_sym_GT_GT] = ACTIONS(279), + [anon_sym_GT_GT_GT] = ACTIONS(279), + [anon_sym_DOT_DOT] = ACTIONS(279), + [anon_sym_DOT_DOT_LT] = ACTIONS(281), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(281), + [anon_sym_LT_DOT_DOT] = ACTIONS(279), + [anon_sym_LT] = ACTIONS(279), + [anon_sym_LT_EQ] = ACTIONS(279), + [anon_sym_GT] = ACTIONS(279), + [anon_sym_GT_EQ] = ACTIONS(281), + [anon_sym_in] = ACTIONS(279), + [anon_sym_BANGin] = ACTIONS(279), + [anon_sym_instanceof] = ACTIONS(279), + [anon_sym_BANGinstanceof] = ACTIONS(281), + [anon_sym_EQ_EQ] = ACTIONS(279), + [anon_sym_BANG_EQ] = ACTIONS(279), + [anon_sym_LT_EQ_GT] = ACTIONS(281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(281), + [anon_sym_EQ_TILDE] = ACTIONS(281), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(279), + [anon_sym_CARET] = ACTIONS(279), + [anon_sym_PIPE] = ACTIONS(279), + [anon_sym_AMP_AMP] = ACTIONS(281), + [anon_sym_PIPE_PIPE] = ACTIONS(281), + [anon_sym_QMARK_COLON] = ACTIONS(281), + [anon_sym_STAR_STAR] = ACTIONS(279), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(281), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_this] = ACTIONS(279), + [anon_sym_null] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(279), + [aux_sym_number_literal_token1] = ACTIONS(279), + [aux_sym_number_literal_token2] = ACTIONS(281), + [aux_sym_number_literal_token3] = ACTIONS(281), + [aux_sym_number_literal_token4] = ACTIONS(279), + [aux_sym_number_literal_token5] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(279), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(281), + [anon_sym_DQUOTE] = ACTIONS(279), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [anon_sym_DOLLAR_SLASH] = ACTIONS(281), + [anon_sym_QMARK] = ACTIONS(279), + [anon_sym_LBRACK_RBRACK] = ACTIONS(281), + [anon_sym_TILDE] = ACTIONS(281), + [anon_sym_BANG] = ACTIONS(279), + [anon_sym_new] = ACTIONS(279), + }, + [496] = { + [sym_comment] = STATE(496), + [sym_groovy_doc] = STATE(496), + [sym_identifier] = ACTIONS(85), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_STAR_COLON] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(87), + [anon_sym_import] = ACTIONS(85), + [anon_sym_package] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_assert] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(87), + [anon_sym_STAR_STAR_EQ] = ACTIONS(87), + [anon_sym_STAR_EQ] = ACTIONS(87), + [anon_sym_SLASH_EQ] = ACTIONS(87), + [anon_sym_PERCENT_EQ] = ACTIONS(87), + [anon_sym_PLUS_EQ] = ACTIONS(87), + [anon_sym_DASH_EQ] = ACTIONS(87), + [anon_sym_LT_LT_EQ] = ACTIONS(87), + [anon_sym_GT_GT_EQ] = ACTIONS(87), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(87), + [anon_sym_AMP_EQ] = ACTIONS(87), + [anon_sym_CARET_EQ] = ACTIONS(87), + [anon_sym_PIPE_EQ] = ACTIONS(87), + [anon_sym_QMARK_EQ] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_true] = ACTIONS(85), + [anon_sym_false] = ACTIONS(85), + [anon_sym_ATinterface] = ACTIONS(87), + [anon_sym_interface] = ACTIONS(85), + [anon_sym_class] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_RBRACE] = ACTIONS(87), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(85), + [anon_sym_this] = ACTIONS(85), + [anon_sym_null] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_do] = ACTIONS(85), + [anon_sym_while] = ACTIONS(85), + [anon_sym_for] = ACTIONS(85), + [anon_sym_if] = ACTIONS(85), + [anon_sym_else] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(85), + [aux_sym_number_literal_token1] = ACTIONS(85), + [aux_sym_number_literal_token2] = ACTIONS(87), + [aux_sym_number_literal_token3] = ACTIONS(87), + [aux_sym_number_literal_token4] = ACTIONS(85), + [aux_sym_number_literal_token5] = ACTIONS(87), + [anon_sym_return] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_DOLLAR_SLASH] = ACTIONS(87), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(85), + [anon_sym_default] = ACTIONS(85), + [anon_sym_try] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_boolean] = ACTIONS(85), + [anon_sym_char] = ACTIONS(85), + [anon_sym_short] = ACTIONS(85), + [anon_sym_long] = ACTIONS(85), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [anon_sym_void] = ACTIONS(85), + [anon_sym_LBRACK_RBRACK] = ACTIONS(87), + [anon_sym_public] = ACTIONS(85), + [anon_sym_protected] = ACTIONS(85), + [anon_sym_private] = ACTIONS(85), + [anon_sym_static] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_synchronized] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_new] = ACTIONS(85), + }, + [497] = { + [sym__statement] = STATE(1514), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(1513), + [sym_groovy_package] = STATE(1513), + [sym__prefix_expression] = STATE(1413), + [sym_annotation] = STATE(1764), + [sym_assertion] = STATE(1513), + [sym_assignment] = STATE(1513), + [sym_increment_op] = STATE(1222), + [sym_class_definition] = STATE(1513), + [sym_closure] = STATE(1513), + [sym_comment] = STATE(497), + [sym_groovy_doc] = STATE(497), + [sym_declaration] = STATE(1513), + [sym_do_while_loop] = STATE(1513), + [sym_for_loop] = STATE(1513), + [sym_for_in_loop] = STATE(1513), + [sym_function_call] = STATE(515), + [sym_function_declaration] = STATE(1513), + [sym_function_definition] = STATE(1513), + [sym_if_statement] = STATE(1513), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(1513), + [sym__juxt_function_name] = STATE(1057), + [sym_return] = STATE(1513), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(1513), + [sym_try_statement] = STATE(1513), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2414), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1801), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(1513), + [aux_sym_source_file_repeat1] = STATE(497), + [aux_sym_class_definition_repeat1] = STATE(1804), + [sym_identifier] = ACTIONS(523), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(1009), + [anon_sym_package] = ACTIONS(1012), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_assert] = ACTIONS(1015), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_SLASH] = ACTIONS(548), + [anon_sym_ATinterface] = ACTIONS(1021), + [anon_sym_interface] = ACTIONS(1024), + [anon_sym_class] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1027), + [anon_sym_RBRACE] = ACTIONS(531), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1030), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1045), + [anon_sym_SQUOTE] = ACTIONS(578), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(581), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), + [anon_sym_DOLLAR_SLASH] = ACTIONS(590), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_case] = ACTIONS(529), + [anon_sym_default] = ACTIONS(529), + [anon_sym_try] = ACTIONS(1051), + [anon_sym_int] = ACTIONS(599), + [anon_sym_boolean] = ACTIONS(599), + [anon_sym_char] = ACTIONS(599), + [anon_sym_short] = ACTIONS(599), + [anon_sym_long] = ACTIONS(599), + [anon_sym_float] = ACTIONS(599), + [anon_sym_double] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_public] = ACTIONS(602), + [anon_sym_protected] = ACTIONS(602), + [anon_sym_private] = ACTIONS(602), + [anon_sym_static] = ACTIONS(605), + [anon_sym_final] = ACTIONS(605), + [anon_sym_synchronized] = ACTIONS(605), + }, + [498] = { + [sym__statement] = STATE(833), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1258), + [sym_annotation] = STATE(1766), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(790), + [sym_comment] = STATE(498), + [sym_groovy_doc] = STATE(498), + [sym_declaration] = STATE(790), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(519), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(984), + [sym_pipeline] = STATE(2662), + [sym_return] = STATE(790), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(790), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2383), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1784), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(517), + [aux_sym_class_definition_repeat1] = STATE(1781), + [ts_builtin_sym_end] = ACTIONS(1054), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(35), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_for] = ACTIONS(41), + [anon_sym_if] = ACTIONS(43), + [anon_sym_pipeline] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(61), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [499] = { + [sym_comment] = STATE(499), + [sym_groovy_doc] = STATE(499), + [sym_identifier] = ACTIONS(81), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_STAR_COLON] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(83), + [anon_sym_import] = ACTIONS(81), + [anon_sym_package] = ACTIONS(81), + [anon_sym_AT] = ACTIONS(81), + [anon_sym_assert] = ACTIONS(81), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_STAR_STAR_EQ] = ACTIONS(83), + [anon_sym_STAR_EQ] = ACTIONS(83), + [anon_sym_SLASH_EQ] = ACTIONS(83), + [anon_sym_PERCENT_EQ] = ACTIONS(83), + [anon_sym_PLUS_EQ] = ACTIONS(83), + [anon_sym_DASH_EQ] = ACTIONS(83), + [anon_sym_LT_LT_EQ] = ACTIONS(83), + [anon_sym_GT_GT_EQ] = ACTIONS(83), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(83), + [anon_sym_AMP_EQ] = ACTIONS(83), + [anon_sym_CARET_EQ] = ACTIONS(83), + [anon_sym_PIPE_EQ] = ACTIONS(83), + [anon_sym_QMARK_EQ] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_ATinterface] = ACTIONS(83), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_RBRACE] = ACTIONS(83), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(81), + [anon_sym_this] = ACTIONS(81), + [anon_sym_null] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_do] = ACTIONS(81), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(81), + [anon_sym_if] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(81), + [aux_sym_number_literal_token1] = ACTIONS(81), + [aux_sym_number_literal_token2] = ACTIONS(83), + [aux_sym_number_literal_token3] = ACTIONS(83), + [aux_sym_number_literal_token4] = ACTIONS(81), + [aux_sym_number_literal_token5] = ACTIONS(83), + [anon_sym_return] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_SLASH] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(81), + [anon_sym_default] = ACTIONS(81), + [anon_sym_try] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_boolean] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_float] = ACTIONS(81), + [anon_sym_double] = ACTIONS(81), + [anon_sym_void] = ACTIONS(81), + [anon_sym_LBRACK_RBRACK] = ACTIONS(83), + [anon_sym_public] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_static] = ACTIONS(81), + [anon_sym_final] = ACTIONS(81), + [anon_sym_synchronized] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(83), + [anon_sym_new] = ACTIONS(81), + }, + [500] = { + [sym_comment] = STATE(500), + [sym_groovy_doc] = STATE(500), + [sym_identifier] = ACTIONS(271), + [anon_sym_DOT_AMP] = ACTIONS(273), + [anon_sym_DOT_AT] = ACTIONS(273), + [anon_sym_QMARK_DOT] = ACTIONS(273), + [anon_sym_STAR_DOT] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_COLON] = ACTIONS(273), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_as] = ACTIONS(271), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_STAR_STAR_EQ] = ACTIONS(273), + [anon_sym_STAR_EQ] = ACTIONS(273), + [anon_sym_SLASH_EQ] = ACTIONS(273), + [anon_sym_PERCENT_EQ] = ACTIONS(273), + [anon_sym_PLUS_EQ] = ACTIONS(273), + [anon_sym_DASH_EQ] = ACTIONS(273), + [anon_sym_LT_LT_EQ] = ACTIONS(273), + [anon_sym_GT_GT_EQ] = ACTIONS(273), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(273), + [anon_sym_AMP_EQ] = ACTIONS(273), + [anon_sym_CARET_EQ] = ACTIONS(273), + [anon_sym_PIPE_EQ] = ACTIONS(273), + [anon_sym_QMARK_EQ] = ACTIONS(273), + [anon_sym_PLUS_PLUS] = ACTIONS(273), + [anon_sym_DASH_DASH] = ACTIONS(273), + [anon_sym_PERCENT] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_DOT_DOT_LT] = ACTIONS(273), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(273), + [anon_sym_LT_DOT_DOT] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(273), + [anon_sym_in] = ACTIONS(271), + [anon_sym_BANGin] = ACTIONS(271), + [anon_sym_instanceof] = ACTIONS(271), + [anon_sym_BANGinstanceof] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_LT_EQ_GT] = ACTIONS(273), + [anon_sym_EQ_EQ_EQ] = ACTIONS(273), + [anon_sym_BANG_EQ_EQ] = ACTIONS(273), + [anon_sym_EQ_TILDE] = ACTIONS(273), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(273), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(273), + [anon_sym_PIPE_PIPE] = ACTIONS(273), + [anon_sym_QMARK_COLON] = ACTIONS(273), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_true] = ACTIONS(271), + [anon_sym_false] = ACTIONS(271), + [anon_sym_LBRACE] = ACTIONS(273), + [anon_sym_RBRACE] = ACTIONS(273), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_this] = ACTIONS(271), + [anon_sym_null] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(273), + [anon_sym_LBRACK] = ACTIONS(271), + [aux_sym_number_literal_token1] = ACTIONS(271), + [aux_sym_number_literal_token2] = ACTIONS(273), + [aux_sym_number_literal_token3] = ACTIONS(273), + [aux_sym_number_literal_token4] = ACTIONS(271), + [aux_sym_number_literal_token5] = ACTIONS(273), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(273), + [anon_sym_DQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(273), + [anon_sym_DOLLAR_SLASH] = ACTIONS(273), + [anon_sym_QMARK] = ACTIONS(271), + [anon_sym_LBRACK_RBRACK] = ACTIONS(273), + [anon_sym_TILDE] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_new] = ACTIONS(271), + }, + [501] = { + [sym__statement] = STATE(833), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1258), + [sym_annotation] = STATE(1766), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(790), + [sym_comment] = STATE(501), + [sym_groovy_doc] = STATE(501), + [sym_declaration] = STATE(790), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(519), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(984), + [sym_pipeline] = STATE(2705), + [sym_return] = STATE(790), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(790), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2383), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1784), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(498), + [aux_sym_class_definition_repeat1] = STATE(1781), + [ts_builtin_sym_end] = ACTIONS(1056), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(35), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_for] = ACTIONS(41), + [anon_sym_if] = ACTIONS(43), + [anon_sym_pipeline] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(61), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [502] = { + [sym_access_op] = STATE(452), + [sym_dotted_identifier] = STATE(282), + [sym__prefix_expression] = STATE(2289), + [sym_increment_op] = STATE(452), + [sym_binary_op] = STATE(452), + [sym_boolean_literal] = STATE(452), + [sym_closure] = STATE(452), + [sym_comment] = STATE(502), + [sym_groovy_doc] = STATE(502), + [sym__expression] = STATE(467), + [sym_function_call] = STATE(282), + [sym_index] = STATE(282), + [sym_list] = STATE(452), + [sym_map] = STATE(452), + [sym_number_literal] = STATE(452), + [sym_string] = STATE(282), + [sym__plain_string] = STATE(261), + [sym__interpolate_string] = STATE(261), + [sym_ternary_op] = STATE(452), + [sym_unary_op] = STATE(452), + [ts_builtin_sym_end] = ACTIONS(808), + [sym_identifier] = ACTIONS(1058), + [anon_sym_break] = ACTIONS(806), + [anon_sym_continue] = ACTIONS(806), + [anon_sym_SEMI] = ACTIONS(808), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_STAR_COLON] = ACTIONS(1062), + [anon_sym_import] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(806), + [anon_sym_assert] = ACTIONS(806), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_true] = ACTIONS(1068), + [anon_sym_false] = ACTIONS(1068), + [anon_sym_ATinterface] = ACTIONS(808), + [anon_sym_interface] = ACTIONS(806), + [anon_sym_class] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(806), + [anon_sym_this] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(806), + [anon_sym_while] = ACTIONS(806), + [anon_sym_for] = ACTIONS(806), + [anon_sym_if] = ACTIONS(806), + [anon_sym_else] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(1074), + [aux_sym_number_literal_token1] = ACTIONS(1076), + [aux_sym_number_literal_token2] = ACTIONS(1078), + [aux_sym_number_literal_token3] = ACTIONS(1078), + [aux_sym_number_literal_token4] = ACTIONS(1076), + [aux_sym_number_literal_token5] = ACTIONS(1078), + [anon_sym_pipeline] = ACTIONS(806), + [anon_sym_return] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(1080), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1084), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(806), + [anon_sym_try] = ACTIONS(806), + [anon_sym_int] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_char] = ACTIONS(806), + [anon_sym_short] = ACTIONS(806), + [anon_sym_long] = ACTIONS(806), + [anon_sym_float] = ACTIONS(806), + [anon_sym_double] = ACTIONS(806), + [anon_sym_void] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_synchronized] = ACTIONS(806), + [anon_sym_TILDE] = ACTIONS(1090), + [anon_sym_BANG] = ACTIONS(1090), + [anon_sym_new] = ACTIONS(1092), + }, + [503] = { + [sym__statement] = STATE(1514), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(1513), + [sym_groovy_package] = STATE(1513), + [sym__prefix_expression] = STATE(1413), + [sym_annotation] = STATE(1764), + [sym_assertion] = STATE(1513), + [sym_assignment] = STATE(1513), + [sym_increment_op] = STATE(1222), + [sym_class_definition] = STATE(1513), + [sym_closure] = STATE(1513), + [sym_comment] = STATE(503), + [sym_groovy_doc] = STATE(503), + [sym_declaration] = STATE(1513), + [sym_do_while_loop] = STATE(1513), + [sym_for_loop] = STATE(1513), + [sym_for_in_loop] = STATE(1513), + [sym_function_call] = STATE(515), + [sym_function_declaration] = STATE(1513), + [sym_function_definition] = STATE(1513), + [sym_if_statement] = STATE(1513), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(1513), + [sym__juxt_function_name] = STATE(1057), + [sym_return] = STATE(1513), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(1513), + [sym_try_statement] = STATE(1513), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2414), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1801), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(1513), + [aux_sym_source_file_repeat1] = STATE(497), + [aux_sym_class_definition_repeat1] = STATE(1804), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(970), + [anon_sym_continue] = ACTIONS(970), + [anon_sym_import] = ACTIONS(972), + [anon_sym_package] = ACTIONS(974), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(976), + [anon_sym_PLUS_PLUS] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(936), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(978), + [anon_sym_interface] = ACTIONS(980), + [anon_sym_class] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1094), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(984), + [anon_sym_do] = ACTIONS(986), + [anon_sym_while] = ACTIONS(988), + [anon_sym_for] = ACTIONS(990), + [anon_sym_if] = ACTIONS(992), + [anon_sym_return] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_case] = ACTIONS(1096), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_try] = ACTIONS(1000), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [504] = { + [sym_comment] = STATE(504), + [sym_groovy_doc] = STATE(504), + [sym_identifier] = ACTIONS(339), + [anon_sym_DOT_AMP] = ACTIONS(341), + [anon_sym_DOT_AT] = ACTIONS(341), + [anon_sym_QMARK_DOT] = ACTIONS(341), + [anon_sym_STAR_DOT] = ACTIONS(341), + [anon_sym_STAR] = ACTIONS(339), + [anon_sym_STAR_COLON] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(339), + [anon_sym_as] = ACTIONS(339), + [anon_sym_EQ] = ACTIONS(339), + [anon_sym_STAR_STAR_EQ] = ACTIONS(341), + [anon_sym_STAR_EQ] = ACTIONS(341), + [anon_sym_SLASH_EQ] = ACTIONS(341), + [anon_sym_PERCENT_EQ] = ACTIONS(341), + [anon_sym_PLUS_EQ] = ACTIONS(341), + [anon_sym_DASH_EQ] = ACTIONS(341), + [anon_sym_LT_LT_EQ] = ACTIONS(341), + [anon_sym_GT_GT_EQ] = ACTIONS(341), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(341), + [anon_sym_AMP_EQ] = ACTIONS(341), + [anon_sym_CARET_EQ] = ACTIONS(341), + [anon_sym_PIPE_EQ] = ACTIONS(341), + [anon_sym_QMARK_EQ] = ACTIONS(341), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_PERCENT] = ACTIONS(339), + [anon_sym_SLASH] = ACTIONS(339), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(339), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_GT_GT_GT] = ACTIONS(339), + [anon_sym_DOT_DOT] = ACTIONS(339), + [anon_sym_DOT_DOT_LT] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(341), + [anon_sym_LT_DOT_DOT] = ACTIONS(339), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_in] = ACTIONS(339), + [anon_sym_BANGin] = ACTIONS(339), + [anon_sym_instanceof] = ACTIONS(339), + [anon_sym_BANGinstanceof] = ACTIONS(341), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_LT_EQ_GT] = ACTIONS(341), + [anon_sym_EQ_EQ_EQ] = ACTIONS(341), + [anon_sym_BANG_EQ_EQ] = ACTIONS(341), + [anon_sym_EQ_TILDE] = ACTIONS(341), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(339), + [anon_sym_CARET] = ACTIONS(339), + [anon_sym_PIPE] = ACTIONS(339), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_QMARK_COLON] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(339), + [anon_sym_true] = ACTIONS(339), + [anon_sym_false] = ACTIONS(339), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(341), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_this] = ACTIONS(339), + [anon_sym_null] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(339), + [aux_sym_number_literal_token1] = ACTIONS(339), + [aux_sym_number_literal_token2] = ACTIONS(341), + [aux_sym_number_literal_token3] = ACTIONS(341), + [aux_sym_number_literal_token4] = ACTIONS(339), + [aux_sym_number_literal_token5] = ACTIONS(341), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(341), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(341), + [anon_sym_DOLLAR_SLASH] = ACTIONS(341), + [anon_sym_QMARK] = ACTIONS(339), + [anon_sym_LBRACK_RBRACK] = ACTIONS(341), + [anon_sym_TILDE] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_new] = ACTIONS(339), + }, + [505] = { + [sym_comment] = STATE(505), + [sym_groovy_doc] = STATE(505), + [sym_identifier] = ACTIONS(69), + [anon_sym_break] = ACTIONS(69), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_SEMI] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(69), + [anon_sym_STAR_COLON] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(71), + [anon_sym_import] = ACTIONS(69), + [anon_sym_package] = ACTIONS(69), + [anon_sym_AT] = ACTIONS(69), + [anon_sym_assert] = ACTIONS(69), + [anon_sym_EQ] = ACTIONS(71), + [anon_sym_STAR_STAR_EQ] = ACTIONS(71), + [anon_sym_STAR_EQ] = ACTIONS(71), + [anon_sym_SLASH_EQ] = ACTIONS(71), + [anon_sym_PERCENT_EQ] = ACTIONS(71), + [anon_sym_PLUS_EQ] = ACTIONS(71), + [anon_sym_DASH_EQ] = ACTIONS(71), + [anon_sym_LT_LT_EQ] = ACTIONS(71), + [anon_sym_GT_GT_EQ] = ACTIONS(71), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(71), + [anon_sym_AMP_EQ] = ACTIONS(71), + [anon_sym_CARET_EQ] = ACTIONS(71), + [anon_sym_PIPE_EQ] = ACTIONS(71), + [anon_sym_QMARK_EQ] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(69), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(69), + [anon_sym_class] = ACTIONS(69), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(71), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(69), + [anon_sym_this] = ACTIONS(69), + [anon_sym_null] = ACTIONS(69), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_do] = ACTIONS(69), + [anon_sym_while] = ACTIONS(69), + [anon_sym_for] = ACTIONS(69), + [anon_sym_if] = ACTIONS(69), + [anon_sym_else] = ACTIONS(69), + [anon_sym_LBRACK] = ACTIONS(69), + [aux_sym_number_literal_token1] = ACTIONS(69), + [aux_sym_number_literal_token2] = ACTIONS(71), + [aux_sym_number_literal_token3] = ACTIONS(71), + [aux_sym_number_literal_token4] = ACTIONS(69), + [aux_sym_number_literal_token5] = ACTIONS(71), + [anon_sym_return] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_SLASH] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_case] = ACTIONS(69), + [anon_sym_default] = ACTIONS(69), + [anon_sym_try] = ACTIONS(69), + [anon_sym_int] = ACTIONS(69), + [anon_sym_boolean] = ACTIONS(69), + [anon_sym_char] = ACTIONS(69), + [anon_sym_short] = ACTIONS(69), + [anon_sym_long] = ACTIONS(69), + [anon_sym_float] = ACTIONS(69), + [anon_sym_double] = ACTIONS(69), + [anon_sym_void] = ACTIONS(69), + [anon_sym_LBRACK_RBRACK] = ACTIONS(71), + [anon_sym_public] = ACTIONS(69), + [anon_sym_protected] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_final] = ACTIONS(69), + [anon_sym_synchronized] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_new] = ACTIONS(69), + }, + [506] = { + [sym_comment] = STATE(506), + [sym_groovy_doc] = STATE(506), + [sym_identifier] = ACTIONS(343), + [anon_sym_DOT_AMP] = ACTIONS(345), + [anon_sym_DOT_AT] = ACTIONS(345), + [anon_sym_QMARK_DOT] = ACTIONS(345), + [anon_sym_STAR_DOT] = ACTIONS(345), + [anon_sym_STAR] = ACTIONS(343), + [anon_sym_STAR_COLON] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(343), + [anon_sym_as] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(343), + [anon_sym_STAR_STAR_EQ] = ACTIONS(345), + [anon_sym_STAR_EQ] = ACTIONS(345), + [anon_sym_SLASH_EQ] = ACTIONS(345), + [anon_sym_PERCENT_EQ] = ACTIONS(345), + [anon_sym_PLUS_EQ] = ACTIONS(345), + [anon_sym_DASH_EQ] = ACTIONS(345), + [anon_sym_LT_LT_EQ] = ACTIONS(345), + [anon_sym_GT_GT_EQ] = ACTIONS(345), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(345), + [anon_sym_AMP_EQ] = ACTIONS(345), + [anon_sym_CARET_EQ] = ACTIONS(345), + [anon_sym_PIPE_EQ] = ACTIONS(345), + [anon_sym_QMARK_EQ] = ACTIONS(345), + [anon_sym_PLUS_PLUS] = ACTIONS(345), + [anon_sym_DASH_DASH] = ACTIONS(345), + [anon_sym_PERCENT] = ACTIONS(343), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(343), + [anon_sym_DASH] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_GT_GT_GT] = ACTIONS(343), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_DOT_DOT_LT] = ACTIONS(345), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(345), + [anon_sym_LT_DOT_DOT] = ACTIONS(343), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_EQ] = ACTIONS(345), + [anon_sym_in] = ACTIONS(343), + [anon_sym_BANGin] = ACTIONS(343), + [anon_sym_instanceof] = ACTIONS(343), + [anon_sym_BANGinstanceof] = ACTIONS(345), + [anon_sym_EQ_EQ] = ACTIONS(343), + [anon_sym_BANG_EQ] = ACTIONS(343), + [anon_sym_LT_EQ_GT] = ACTIONS(345), + [anon_sym_EQ_EQ_EQ] = ACTIONS(345), + [anon_sym_BANG_EQ_EQ] = ACTIONS(345), + [anon_sym_EQ_TILDE] = ACTIONS(345), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(345), + [anon_sym_AMP] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(343), + [anon_sym_PIPE] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(345), + [anon_sym_PIPE_PIPE] = ACTIONS(345), + [anon_sym_QMARK_COLON] = ACTIONS(345), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(345), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_this] = ACTIONS(343), + [anon_sym_null] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_LBRACK] = ACTIONS(343), + [aux_sym_number_literal_token1] = ACTIONS(343), + [aux_sym_number_literal_token2] = ACTIONS(345), + [aux_sym_number_literal_token3] = ACTIONS(345), + [aux_sym_number_literal_token4] = ACTIONS(343), + [aux_sym_number_literal_token5] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(343), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_SLASH] = ACTIONS(345), + [anon_sym_QMARK] = ACTIONS(343), + [anon_sym_LBRACK_RBRACK] = ACTIONS(345), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_new] = ACTIONS(343), + }, + [507] = { + [sym_comment] = STATE(507), + [sym_groovy_doc] = STATE(507), + [sym_identifier] = ACTIONS(89), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_STAR_COLON] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(101), + [anon_sym_import] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(101), + [anon_sym_STAR_STAR_EQ] = ACTIONS(101), + [anon_sym_STAR_EQ] = ACTIONS(101), + [anon_sym_SLASH_EQ] = ACTIONS(101), + [anon_sym_PERCENT_EQ] = ACTIONS(101), + [anon_sym_PLUS_EQ] = ACTIONS(101), + [anon_sym_DASH_EQ] = ACTIONS(101), + [anon_sym_LT_LT_EQ] = ACTIONS(101), + [anon_sym_GT_GT_EQ] = ACTIONS(101), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(101), + [anon_sym_AMP_EQ] = ACTIONS(101), + [anon_sym_CARET_EQ] = ACTIONS(101), + [anon_sym_PIPE_EQ] = ACTIONS(101), + [anon_sym_QMARK_EQ] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [anon_sym_ATinterface] = ACTIONS(95), + [anon_sym_interface] = ACTIONS(89), + [anon_sym_class] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_null] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_do] = ACTIONS(89), + [anon_sym_while] = ACTIONS(89), + [anon_sym_for] = ACTIONS(89), + [anon_sym_if] = ACTIONS(89), + [anon_sym_else] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(89), + [aux_sym_number_literal_token1] = ACTIONS(89), + [aux_sym_number_literal_token2] = ACTIONS(95), + [aux_sym_number_literal_token3] = ACTIONS(95), + [aux_sym_number_literal_token4] = ACTIONS(89), + [aux_sym_number_literal_token5] = ACTIONS(95), + [anon_sym_return] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SLASH] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(89), + [anon_sym_try] = ACTIONS(89), + [anon_sym_catch] = ACTIONS(89), + [anon_sym_finally] = ACTIONS(89), + [anon_sym_int] = ACTIONS(89), + [anon_sym_boolean] = ACTIONS(89), + [anon_sym_char] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_float] = ACTIONS(89), + [anon_sym_double] = ACTIONS(89), + [anon_sym_void] = ACTIONS(89), + [anon_sym_LBRACK_RBRACK] = ACTIONS(101), + [anon_sym_public] = ACTIONS(89), + [anon_sym_protected] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_static] = ACTIONS(89), + [anon_sym_final] = ACTIONS(89), + [anon_sym_synchronized] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_new] = ACTIONS(89), + }, + [508] = { + [sym_comment] = STATE(508), + [sym_groovy_doc] = STATE(508), + [sym_identifier] = ACTIONS(89), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_STAR] = ACTIONS(97), + [anon_sym_STAR_COLON] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(101), + [anon_sym_import] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(101), + [anon_sym_STAR_STAR_EQ] = ACTIONS(101), + [anon_sym_STAR_EQ] = ACTIONS(101), + [anon_sym_SLASH_EQ] = ACTIONS(101), + [anon_sym_PERCENT_EQ] = ACTIONS(101), + [anon_sym_PLUS_EQ] = ACTIONS(101), + [anon_sym_DASH_EQ] = ACTIONS(101), + [anon_sym_LT_LT_EQ] = ACTIONS(101), + [anon_sym_GT_GT_EQ] = ACTIONS(101), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(101), + [anon_sym_AMP_EQ] = ACTIONS(101), + [anon_sym_CARET_EQ] = ACTIONS(101), + [anon_sym_PIPE_EQ] = ACTIONS(101), + [anon_sym_QMARK_EQ] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_true] = ACTIONS(97), + [anon_sym_false] = ACTIONS(97), + [anon_sym_ATinterface] = ACTIONS(95), + [anon_sym_interface] = ACTIONS(89), + [anon_sym_class] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(89), + [anon_sym_this] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(89), + [anon_sym_while] = ACTIONS(89), + [anon_sym_for] = ACTIONS(89), + [anon_sym_if] = ACTIONS(89), + [anon_sym_else] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(97), + [aux_sym_number_literal_token1] = ACTIONS(97), + [aux_sym_number_literal_token2] = ACTIONS(101), + [aux_sym_number_literal_token3] = ACTIONS(101), + [aux_sym_number_literal_token4] = ACTIONS(97), + [aux_sym_number_literal_token5] = ACTIONS(101), + [anon_sym_return] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SLASH] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(89), + [anon_sym_case] = ACTIONS(89), + [anon_sym_default] = ACTIONS(89), + [anon_sym_try] = ACTIONS(89), + [anon_sym_int] = ACTIONS(89), + [anon_sym_boolean] = ACTIONS(89), + [anon_sym_char] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_float] = ACTIONS(89), + [anon_sym_double] = ACTIONS(89), + [anon_sym_void] = ACTIONS(89), + [anon_sym_LBRACK_RBRACK] = ACTIONS(101), + [anon_sym_public] = ACTIONS(89), + [anon_sym_protected] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_static] = ACTIONS(89), + [anon_sym_final] = ACTIONS(89), + [anon_sym_synchronized] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_new] = ACTIONS(97), + }, + [509] = { + [sym__statement] = STATE(833), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1258), + [sym_annotation] = STATE(1766), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(790), + [sym_comment] = STATE(509), + [sym_groovy_doc] = STATE(509), + [sym_declaration] = STATE(790), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(519), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(984), + [sym_pipeline] = STATE(2705), + [sym_return] = STATE(790), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(790), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2383), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1784), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(517), + [aux_sym_class_definition_repeat1] = STATE(1781), + [ts_builtin_sym_end] = ACTIONS(1056), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(35), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_for] = ACTIONS(41), + [anon_sym_if] = ACTIONS(43), + [anon_sym_pipeline] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(61), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [510] = { + [sym__statement] = STATE(1514), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(1513), + [sym_groovy_package] = STATE(1513), + [sym__prefix_expression] = STATE(1413), + [sym_annotation] = STATE(1764), + [sym_assertion] = STATE(1513), + [sym_assignment] = STATE(1513), + [sym_increment_op] = STATE(1222), + [sym_class_definition] = STATE(1513), + [sym_closure] = STATE(1513), + [sym_comment] = STATE(510), + [sym_groovy_doc] = STATE(510), + [sym_declaration] = STATE(1513), + [sym_do_while_loop] = STATE(1513), + [sym_for_loop] = STATE(1513), + [sym_for_in_loop] = STATE(1513), + [sym_function_call] = STATE(515), + [sym_function_declaration] = STATE(1513), + [sym_function_definition] = STATE(1513), + [sym_if_statement] = STATE(1513), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(1513), + [sym__juxt_function_name] = STATE(1057), + [sym_return] = STATE(1513), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(1513), + [sym_try_statement] = STATE(1513), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2414), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1801), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(1513), + [aux_sym_source_file_repeat1] = STATE(503), + [aux_sym_class_definition_repeat1] = STATE(1804), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(970), + [anon_sym_continue] = ACTIONS(970), + [anon_sym_import] = ACTIONS(972), + [anon_sym_package] = ACTIONS(974), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(976), + [anon_sym_PLUS_PLUS] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(936), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(978), + [anon_sym_interface] = ACTIONS(980), + [anon_sym_class] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(1098), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(984), + [anon_sym_do] = ACTIONS(986), + [anon_sym_while] = ACTIONS(988), + [anon_sym_for] = ACTIONS(990), + [anon_sym_if] = ACTIONS(992), + [anon_sym_return] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_case] = ACTIONS(1100), + [anon_sym_default] = ACTIONS(1100), + [anon_sym_try] = ACTIONS(1000), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [511] = { + [sym_comment] = STATE(511), + [sym_groovy_doc] = STATE(511), + [sym_identifier] = ACTIONS(283), + [anon_sym_DOT_AMP] = ACTIONS(285), + [anon_sym_DOT_AT] = ACTIONS(285), + [anon_sym_QMARK_DOT] = ACTIONS(285), + [anon_sym_STAR_DOT] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(283), + [anon_sym_STAR_COLON] = ACTIONS(285), + [anon_sym_DOT] = ACTIONS(283), + [anon_sym_as] = ACTIONS(283), + [anon_sym_EQ] = ACTIONS(283), + [anon_sym_STAR_STAR_EQ] = ACTIONS(285), + [anon_sym_STAR_EQ] = ACTIONS(285), + [anon_sym_SLASH_EQ] = ACTIONS(285), + [anon_sym_PERCENT_EQ] = ACTIONS(285), + [anon_sym_PLUS_EQ] = ACTIONS(285), + [anon_sym_DASH_EQ] = ACTIONS(285), + [anon_sym_LT_LT_EQ] = ACTIONS(285), + [anon_sym_GT_GT_EQ] = ACTIONS(285), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(285), + [anon_sym_AMP_EQ] = ACTIONS(285), + [anon_sym_CARET_EQ] = ACTIONS(285), + [anon_sym_PIPE_EQ] = ACTIONS(285), + [anon_sym_QMARK_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_PERCENT] = ACTIONS(283), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(283), + [anon_sym_DASH] = ACTIONS(283), + [anon_sym_LT_LT] = ACTIONS(283), + [anon_sym_GT_GT] = ACTIONS(283), + [anon_sym_GT_GT_GT] = ACTIONS(283), + [anon_sym_DOT_DOT] = ACTIONS(283), + [anon_sym_DOT_DOT_LT] = ACTIONS(285), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(285), + [anon_sym_LT_DOT_DOT] = ACTIONS(283), + [anon_sym_LT] = ACTIONS(283), + [anon_sym_LT_EQ] = ACTIONS(283), + [anon_sym_GT] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_in] = ACTIONS(283), + [anon_sym_BANGin] = ACTIONS(283), + [anon_sym_instanceof] = ACTIONS(283), + [anon_sym_BANGinstanceof] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(283), + [anon_sym_BANG_EQ] = ACTIONS(283), + [anon_sym_LT_EQ_GT] = ACTIONS(285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(283), + [anon_sym_CARET] = ACTIONS(283), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_QMARK_COLON] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(283), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_LBRACE] = ACTIONS(285), + [anon_sym_RBRACE] = ACTIONS(285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_this] = ACTIONS(283), + [anon_sym_null] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_LBRACK] = ACTIONS(283), + [aux_sym_number_literal_token1] = ACTIONS(283), + [aux_sym_number_literal_token2] = ACTIONS(285), + [aux_sym_number_literal_token3] = ACTIONS(285), + [aux_sym_number_literal_token4] = ACTIONS(283), + [aux_sym_number_literal_token5] = ACTIONS(285), + [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(283), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_SLASH] = ACTIONS(285), + [anon_sym_QMARK] = ACTIONS(283), + [anon_sym_LBRACK_RBRACK] = ACTIONS(285), + [anon_sym_TILDE] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(283), + [anon_sym_new] = ACTIONS(283), + }, + [512] = { + [sym_comment] = STATE(512), + [sym_groovy_doc] = STATE(512), + [sym_identifier] = ACTIONS(335), + [anon_sym_DOT_AMP] = ACTIONS(337), + [anon_sym_DOT_AT] = ACTIONS(337), + [anon_sym_QMARK_DOT] = ACTIONS(337), + [anon_sym_STAR_DOT] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(335), + [anon_sym_STAR_COLON] = ACTIONS(337), + [anon_sym_DOT] = ACTIONS(335), + [anon_sym_as] = ACTIONS(335), + [anon_sym_EQ] = ACTIONS(335), + [anon_sym_STAR_STAR_EQ] = ACTIONS(337), + [anon_sym_STAR_EQ] = ACTIONS(337), + [anon_sym_SLASH_EQ] = ACTIONS(337), + [anon_sym_PERCENT_EQ] = ACTIONS(337), + [anon_sym_PLUS_EQ] = ACTIONS(337), + [anon_sym_DASH_EQ] = ACTIONS(337), + [anon_sym_LT_LT_EQ] = ACTIONS(337), + [anon_sym_GT_GT_EQ] = ACTIONS(337), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(337), + [anon_sym_AMP_EQ] = ACTIONS(337), + [anon_sym_CARET_EQ] = ACTIONS(337), + [anon_sym_PIPE_EQ] = ACTIONS(337), + [anon_sym_QMARK_EQ] = ACTIONS(337), + [anon_sym_PLUS_PLUS] = ACTIONS(337), + [anon_sym_DASH_DASH] = ACTIONS(337), + [anon_sym_PERCENT] = ACTIONS(335), + [anon_sym_SLASH] = ACTIONS(335), + [anon_sym_PLUS] = ACTIONS(335), + [anon_sym_DASH] = ACTIONS(335), + [anon_sym_LT_LT] = ACTIONS(335), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_GT_GT_GT] = ACTIONS(335), + [anon_sym_DOT_DOT] = ACTIONS(335), + [anon_sym_DOT_DOT_LT] = ACTIONS(337), + [anon_sym_LT_DOT_DOT_LT] = ACTIONS(337), + [anon_sym_LT_DOT_DOT] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_LT_EQ] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(335), + [anon_sym_GT_EQ] = ACTIONS(337), + [anon_sym_in] = ACTIONS(335), + [anon_sym_BANGin] = ACTIONS(335), + [anon_sym_instanceof] = ACTIONS(335), + [anon_sym_BANGinstanceof] = ACTIONS(337), + [anon_sym_EQ_EQ] = ACTIONS(335), + [anon_sym_BANG_EQ] = ACTIONS(335), + [anon_sym_LT_EQ_GT] = ACTIONS(337), + [anon_sym_EQ_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ_EQ] = ACTIONS(337), + [anon_sym_EQ_TILDE] = ACTIONS(337), + [anon_sym_EQ_EQ_TILDE] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(335), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_PIPE] = ACTIONS(335), + [anon_sym_AMP_AMP] = ACTIONS(337), + [anon_sym_PIPE_PIPE] = ACTIONS(337), + [anon_sym_QMARK_COLON] = ACTIONS(337), + [anon_sym_STAR_STAR] = ACTIONS(335), + [anon_sym_true] = ACTIONS(335), + [anon_sym_false] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(337), + [anon_sym_RBRACE] = ACTIONS(337), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_this] = ACTIONS(335), + [anon_sym_null] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_LBRACK] = ACTIONS(335), + [aux_sym_number_literal_token1] = ACTIONS(335), + [aux_sym_number_literal_token2] = ACTIONS(337), + [aux_sym_number_literal_token3] = ACTIONS(337), + [aux_sym_number_literal_token4] = ACTIONS(335), + [aux_sym_number_literal_token5] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(335), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(337), + [anon_sym_DQUOTE] = ACTIONS(335), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(337), + [anon_sym_DOLLAR_SLASH] = ACTIONS(337), + [anon_sym_QMARK] = ACTIONS(335), + [anon_sym_LBRACK_RBRACK] = ACTIONS(337), + [anon_sym_TILDE] = ACTIONS(337), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_new] = ACTIONS(335), + }, + [513] = { + [sym_comment] = STATE(513), + [sym_groovy_doc] = STATE(513), + [sym_identifier] = ACTIONS(77), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(77), + [anon_sym_STAR_COLON] = ACTIONS(79), + [anon_sym_DOT] = ACTIONS(79), + [anon_sym_import] = ACTIONS(77), + [anon_sym_package] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_assert] = ACTIONS(77), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_STAR_STAR_EQ] = ACTIONS(79), + [anon_sym_STAR_EQ] = ACTIONS(79), + [anon_sym_SLASH_EQ] = ACTIONS(79), + [anon_sym_PERCENT_EQ] = ACTIONS(79), + [anon_sym_PLUS_EQ] = ACTIONS(79), + [anon_sym_DASH_EQ] = ACTIONS(79), + [anon_sym_LT_LT_EQ] = ACTIONS(79), + [anon_sym_GT_GT_EQ] = ACTIONS(79), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(79), + [anon_sym_AMP_EQ] = ACTIONS(79), + [anon_sym_CARET_EQ] = ACTIONS(79), + [anon_sym_PIPE_EQ] = ACTIONS(79), + [anon_sym_QMARK_EQ] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_class] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_RBRACE] = ACTIONS(79), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(77), + [anon_sym_this] = ACTIONS(77), + [anon_sym_null] = ACTIONS(77), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_do] = ACTIONS(77), + [anon_sym_while] = ACTIONS(77), + [anon_sym_for] = ACTIONS(77), + [anon_sym_if] = ACTIONS(77), + [anon_sym_else] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym_number_literal_token1] = ACTIONS(77), + [aux_sym_number_literal_token2] = ACTIONS(79), + [aux_sym_number_literal_token3] = ACTIONS(79), + [aux_sym_number_literal_token4] = ACTIONS(77), + [aux_sym_number_literal_token5] = ACTIONS(79), + [anon_sym_return] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(77), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR_SLASH] = ACTIONS(79), + [anon_sym_switch] = ACTIONS(77), + [anon_sym_case] = ACTIONS(77), + [anon_sym_default] = ACTIONS(77), + [anon_sym_try] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_boolean] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [anon_sym_void] = ACTIONS(77), + [anon_sym_LBRACK_RBRACK] = ACTIONS(79), + [anon_sym_public] = ACTIONS(77), + [anon_sym_protected] = ACTIONS(77), + [anon_sym_private] = ACTIONS(77), + [anon_sym_static] = ACTIONS(77), + [anon_sym_final] = ACTIONS(77), + [anon_sym_synchronized] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_new] = ACTIONS(77), + }, + [514] = { + [sym_access_op] = STATE(168), + [sym_dotted_identifier] = STATE(126), + [sym__prefix_expression] = STATE(2185), + [sym_increment_op] = STATE(168), + [sym_binary_op] = STATE(168), + [sym_boolean_literal] = STATE(168), + [sym_closure] = STATE(168), + [sym_comment] = STATE(514), + [sym_groovy_doc] = STATE(514), + [sym__expression] = STATE(186), + [sym_function_call] = STATE(126), + [sym_index] = STATE(126), + [sym_list] = STATE(168), + [sym_map] = STATE(168), + [sym_number_literal] = STATE(168), + [sym_string] = STATE(126), + [sym__plain_string] = STATE(89), + [sym__interpolate_string] = STATE(89), + [sym_ternary_op] = STATE(168), + [sym_unary_op] = STATE(168), + [sym_identifier] = ACTIONS(1102), + [anon_sym_break] = ACTIONS(806), + [anon_sym_continue] = ACTIONS(806), + [anon_sym_SEMI] = ACTIONS(808), + [anon_sym_STAR] = ACTIONS(1104), + [anon_sym_STAR_COLON] = ACTIONS(1106), + [anon_sym_import] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(806), + [anon_sym_assert] = ACTIONS(806), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(1108), + [anon_sym_PLUS] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1112), + [anon_sym_false] = ACTIONS(1112), + [anon_sym_ATinterface] = ACTIONS(808), + [anon_sym_interface] = ACTIONS(806), + [anon_sym_class] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(806), + [anon_sym_this] = ACTIONS(1114), + [anon_sym_null] = ACTIONS(1114), + [anon_sym_LPAREN] = ACTIONS(1116), + [anon_sym_do] = ACTIONS(806), + [anon_sym_while] = ACTIONS(806), + [anon_sym_for] = ACTIONS(806), + [anon_sym_if] = ACTIONS(806), + [anon_sym_else] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(1118), + [aux_sym_number_literal_token1] = ACTIONS(1120), + [aux_sym_number_literal_token2] = ACTIONS(1122), + [aux_sym_number_literal_token3] = ACTIONS(1122), + [aux_sym_number_literal_token4] = ACTIONS(1120), + [aux_sym_number_literal_token5] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1132), + [anon_sym_switch] = ACTIONS(806), + [anon_sym_try] = ACTIONS(806), + [anon_sym_int] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_char] = ACTIONS(806), + [anon_sym_short] = ACTIONS(806), + [anon_sym_long] = ACTIONS(806), + [anon_sym_float] = ACTIONS(806), + [anon_sym_double] = ACTIONS(806), + [anon_sym_void] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_synchronized] = ACTIONS(806), + [anon_sym_TILDE] = ACTIONS(1134), + [anon_sym_BANG] = ACTIONS(1134), + [anon_sym_new] = ACTIONS(1136), + }, + [515] = { + [sym_comment] = STATE(515), + [sym_groovy_doc] = STATE(515), + [sym_identifier] = ACTIONS(89), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_STAR] = ACTIONS(97), + [anon_sym_STAR_COLON] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(101), + [anon_sym_import] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(101), + [anon_sym_STAR_STAR_EQ] = ACTIONS(101), + [anon_sym_STAR_EQ] = ACTIONS(101), + [anon_sym_SLASH_EQ] = ACTIONS(101), + [anon_sym_PERCENT_EQ] = ACTIONS(101), + [anon_sym_PLUS_EQ] = ACTIONS(101), + [anon_sym_DASH_EQ] = ACTIONS(101), + [anon_sym_LT_LT_EQ] = ACTIONS(101), + [anon_sym_GT_GT_EQ] = ACTIONS(101), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(101), + [anon_sym_AMP_EQ] = ACTIONS(101), + [anon_sym_CARET_EQ] = ACTIONS(101), + [anon_sym_PIPE_EQ] = ACTIONS(101), + [anon_sym_QMARK_EQ] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_true] = ACTIONS(97), + [anon_sym_false] = ACTIONS(97), + [anon_sym_ATinterface] = ACTIONS(95), + [anon_sym_interface] = ACTIONS(89), + [anon_sym_class] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(89), + [anon_sym_this] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(89), + [anon_sym_while] = ACTIONS(89), + [anon_sym_for] = ACTIONS(89), + [anon_sym_if] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(97), + [aux_sym_number_literal_token1] = ACTIONS(97), + [aux_sym_number_literal_token2] = ACTIONS(101), + [aux_sym_number_literal_token3] = ACTIONS(101), + [aux_sym_number_literal_token4] = ACTIONS(97), + [aux_sym_number_literal_token5] = ACTIONS(101), + [anon_sym_return] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SLASH] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(89), + [anon_sym_case] = ACTIONS(89), + [anon_sym_default] = ACTIONS(89), + [anon_sym_try] = ACTIONS(89), + [anon_sym_int] = ACTIONS(89), + [anon_sym_boolean] = ACTIONS(89), + [anon_sym_char] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_float] = ACTIONS(89), + [anon_sym_double] = ACTIONS(89), + [anon_sym_void] = ACTIONS(89), + [anon_sym_LBRACK_RBRACK] = ACTIONS(101), + [anon_sym_public] = ACTIONS(89), + [anon_sym_protected] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_static] = ACTIONS(89), + [anon_sym_final] = ACTIONS(89), + [anon_sym_synchronized] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_new] = ACTIONS(97), + }, + [516] = { + [sym_comment] = STATE(516), + [sym_groovy_doc] = STATE(516), + [ts_builtin_sym_end] = ACTIONS(95), + [sym_identifier] = ACTIONS(89), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_STAR] = ACTIONS(97), + [anon_sym_STAR_COLON] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(101), + [anon_sym_import] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(101), + [anon_sym_STAR_STAR_EQ] = ACTIONS(101), + [anon_sym_STAR_EQ] = ACTIONS(101), + [anon_sym_SLASH_EQ] = ACTIONS(101), + [anon_sym_PERCENT_EQ] = ACTIONS(101), + [anon_sym_PLUS_EQ] = ACTIONS(101), + [anon_sym_DASH_EQ] = ACTIONS(101), + [anon_sym_LT_LT_EQ] = ACTIONS(101), + [anon_sym_GT_GT_EQ] = ACTIONS(101), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(101), + [anon_sym_AMP_EQ] = ACTIONS(101), + [anon_sym_CARET_EQ] = ACTIONS(101), + [anon_sym_PIPE_EQ] = ACTIONS(101), + [anon_sym_QMARK_EQ] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_true] = ACTIONS(97), + [anon_sym_false] = ACTIONS(97), + [anon_sym_ATinterface] = ACTIONS(95), + [anon_sym_interface] = ACTIONS(89), + [anon_sym_class] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(95), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(89), + [anon_sym_this] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(89), + [anon_sym_while] = ACTIONS(89), + [anon_sym_for] = ACTIONS(89), + [anon_sym_if] = ACTIONS(89), + [anon_sym_else] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(97), + [aux_sym_number_literal_token1] = ACTIONS(97), + [aux_sym_number_literal_token2] = ACTIONS(101), + [aux_sym_number_literal_token3] = ACTIONS(101), + [aux_sym_number_literal_token4] = ACTIONS(97), + [aux_sym_number_literal_token5] = ACTIONS(101), + [anon_sym_pipeline] = ACTIONS(89), + [anon_sym_return] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SLASH] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(89), + [anon_sym_try] = ACTIONS(89), + [anon_sym_int] = ACTIONS(89), + [anon_sym_boolean] = ACTIONS(89), + [anon_sym_char] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_float] = ACTIONS(89), + [anon_sym_double] = ACTIONS(89), + [anon_sym_void] = ACTIONS(89), + [anon_sym_LBRACK_RBRACK] = ACTIONS(101), + [anon_sym_public] = ACTIONS(89), + [anon_sym_protected] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_static] = ACTIONS(89), + [anon_sym_final] = ACTIONS(89), + [anon_sym_synchronized] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_new] = ACTIONS(97), + }, + [517] = { + [sym__statement] = STATE(833), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1258), + [sym_annotation] = STATE(1766), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(790), + [sym_comment] = STATE(517), + [sym_groovy_doc] = STATE(517), + [sym_declaration] = STATE(790), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(519), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(984), + [sym_return] = STATE(790), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(790), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2383), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1784), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(790), + [aux_sym_source_file_repeat1] = STATE(517), + [aux_sym_class_definition_repeat1] = STATE(1781), + [ts_builtin_sym_end] = ACTIONS(531), + [sym_identifier] = ACTIONS(523), + [anon_sym_break] = ACTIONS(526), + [anon_sym_continue] = ACTIONS(526), + [anon_sym_import] = ACTIONS(1140), + [anon_sym_package] = ACTIONS(1143), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_assert] = ACTIONS(1146), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_SLASH] = ACTIONS(548), + [anon_sym_ATinterface] = ACTIONS(1152), + [anon_sym_interface] = ACTIONS(1155), + [anon_sym_class] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1158), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1161), + [anon_sym_do] = ACTIONS(563), + [anon_sym_while] = ACTIONS(1164), + [anon_sym_for] = ACTIONS(1167), + [anon_sym_if] = ACTIONS(1170), + [anon_sym_pipeline] = ACTIONS(529), + [anon_sym_return] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(578), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(581), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), + [anon_sym_DOLLAR_SLASH] = ACTIONS(590), + [anon_sym_switch] = ACTIONS(593), + [anon_sym_try] = ACTIONS(1176), + [anon_sym_int] = ACTIONS(599), + [anon_sym_boolean] = ACTIONS(599), + [anon_sym_char] = ACTIONS(599), + [anon_sym_short] = ACTIONS(599), + [anon_sym_long] = ACTIONS(599), + [anon_sym_float] = ACTIONS(599), + [anon_sym_double] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_public] = ACTIONS(602), + [anon_sym_protected] = ACTIONS(602), + [anon_sym_private] = ACTIONS(602), + [anon_sym_static] = ACTIONS(605), + [anon_sym_final] = ACTIONS(605), + [anon_sym_synchronized] = ACTIONS(605), + }, + [518] = { + [sym_comment] = STATE(518), + [sym_groovy_doc] = STATE(518), + [sym_identifier] = ACTIONS(89), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_STAR_COLON] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(101), + [anon_sym_import] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(101), + [anon_sym_STAR_STAR_EQ] = ACTIONS(101), + [anon_sym_STAR_EQ] = ACTIONS(101), + [anon_sym_SLASH_EQ] = ACTIONS(101), + [anon_sym_PERCENT_EQ] = ACTIONS(101), + [anon_sym_PLUS_EQ] = ACTIONS(101), + [anon_sym_DASH_EQ] = ACTIONS(101), + [anon_sym_LT_LT_EQ] = ACTIONS(101), + [anon_sym_GT_GT_EQ] = ACTIONS(101), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(101), + [anon_sym_AMP_EQ] = ACTIONS(101), + [anon_sym_CARET_EQ] = ACTIONS(101), + [anon_sym_PIPE_EQ] = ACTIONS(101), + [anon_sym_QMARK_EQ] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [anon_sym_ATinterface] = ACTIONS(95), + [anon_sym_interface] = ACTIONS(89), + [anon_sym_class] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_null] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_do] = ACTIONS(89), + [anon_sym_while] = ACTIONS(89), + [anon_sym_for] = ACTIONS(89), + [anon_sym_if] = ACTIONS(89), + [anon_sym_else] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(89), + [aux_sym_number_literal_token1] = ACTIONS(89), + [aux_sym_number_literal_token2] = ACTIONS(95), + [aux_sym_number_literal_token3] = ACTIONS(95), + [aux_sym_number_literal_token4] = ACTIONS(89), + [aux_sym_number_literal_token5] = ACTIONS(95), + [anon_sym_return] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SLASH] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(89), + [anon_sym_try] = ACTIONS(89), + [anon_sym_int] = ACTIONS(89), + [anon_sym_boolean] = ACTIONS(89), + [anon_sym_char] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_float] = ACTIONS(89), + [anon_sym_double] = ACTIONS(89), + [anon_sym_void] = ACTIONS(89), + [anon_sym_LBRACK_RBRACK] = ACTIONS(101), + [anon_sym_public] = ACTIONS(89), + [anon_sym_protected] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_static] = ACTIONS(89), + [anon_sym_final] = ACTIONS(89), + [anon_sym_synchronized] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_new] = ACTIONS(89), + }, + [519] = { + [sym_comment] = STATE(519), + [sym_groovy_doc] = STATE(519), + [ts_builtin_sym_end] = ACTIONS(95), + [sym_identifier] = ACTIONS(89), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(97), + [anon_sym_STAR_COLON] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(101), + [anon_sym_import] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(101), + [anon_sym_STAR_STAR_EQ] = ACTIONS(101), + [anon_sym_STAR_EQ] = ACTIONS(101), + [anon_sym_SLASH_EQ] = ACTIONS(101), + [anon_sym_PERCENT_EQ] = ACTIONS(101), + [anon_sym_PLUS_EQ] = ACTIONS(101), + [anon_sym_DASH_EQ] = ACTIONS(101), + [anon_sym_LT_LT_EQ] = ACTIONS(101), + [anon_sym_GT_GT_EQ] = ACTIONS(101), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(101), + [anon_sym_AMP_EQ] = ACTIONS(101), + [anon_sym_CARET_EQ] = ACTIONS(101), + [anon_sym_PIPE_EQ] = ACTIONS(101), + [anon_sym_QMARK_EQ] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_true] = ACTIONS(97), + [anon_sym_false] = ACTIONS(97), + [anon_sym_ATinterface] = ACTIONS(95), + [anon_sym_interface] = ACTIONS(89), + [anon_sym_class] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(95), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(89), + [anon_sym_this] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(89), + [anon_sym_while] = ACTIONS(89), + [anon_sym_for] = ACTIONS(89), + [anon_sym_if] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(97), + [aux_sym_number_literal_token1] = ACTIONS(97), + [aux_sym_number_literal_token2] = ACTIONS(101), + [aux_sym_number_literal_token3] = ACTIONS(101), + [aux_sym_number_literal_token4] = ACTIONS(97), + [aux_sym_number_literal_token5] = ACTIONS(101), + [anon_sym_pipeline] = ACTIONS(89), + [anon_sym_return] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SLASH] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(89), + [anon_sym_try] = ACTIONS(89), + [anon_sym_int] = ACTIONS(89), + [anon_sym_boolean] = ACTIONS(89), + [anon_sym_char] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_float] = ACTIONS(89), + [anon_sym_double] = ACTIONS(89), + [anon_sym_void] = ACTIONS(89), + [anon_sym_LBRACK_RBRACK] = ACTIONS(101), + [anon_sym_public] = ACTIONS(89), + [anon_sym_protected] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_static] = ACTIONS(89), + [anon_sym_final] = ACTIONS(89), + [anon_sym_synchronized] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_new] = ACTIONS(97), + }, + [520] = { + [sym__statement] = STATE(2495), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1491), + [sym_annotation] = STATE(1771), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(790), + [sym_comment] = STATE(520), + [sym_groovy_doc] = STATE(520), + [sym_declaration] = STATE(790), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(939), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(996), + [sym_return] = STATE(790), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(790), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2386), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1807), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(790), + [aux_sym_class_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1185), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1195), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [521] = { + [sym__statement] = STATE(2456), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1491), + [sym_annotation] = STATE(1771), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(790), + [sym_comment] = STATE(521), + [sym_groovy_doc] = STATE(521), + [sym_declaration] = STATE(790), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(939), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(996), + [sym_return] = STATE(790), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(790), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2386), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1807), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(790), + [aux_sym_class_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1197), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1195), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [522] = { + [sym__statement] = STATE(2466), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1491), + [sym_annotation] = STATE(1771), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(790), + [sym_comment] = STATE(522), + [sym_groovy_doc] = STATE(522), + [sym_declaration] = STATE(790), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(939), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(996), + [sym_return] = STATE(790), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(790), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2386), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1807), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(790), + [aux_sym_class_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1199), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1195), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [523] = { + [sym__statement] = STATE(2497), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1491), + [sym_annotation] = STATE(1771), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(790), + [sym_comment] = STATE(523), + [sym_groovy_doc] = STATE(523), + [sym_declaration] = STATE(790), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(939), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(996), + [sym_return] = STATE(790), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(790), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2386), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1807), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(790), + [aux_sym_class_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1195), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [524] = { + [sym__statement] = STATE(2467), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1491), + [sym_annotation] = STATE(1771), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(790), + [sym_comment] = STATE(524), + [sym_groovy_doc] = STATE(524), + [sym_declaration] = STATE(790), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(939), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(996), + [sym_return] = STATE(790), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(790), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2386), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1807), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(790), + [aux_sym_class_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1203), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1195), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [525] = { + [sym__statement] = STATE(2477), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1491), + [sym_annotation] = STATE(1771), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(790), + [sym_comment] = STATE(525), + [sym_groovy_doc] = STATE(525), + [sym_declaration] = STATE(790), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(939), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(996), + [sym_return] = STATE(790), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(790), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2386), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1807), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(790), + [aux_sym_class_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1205), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1195), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [526] = { + [sym_comment] = STATE(526), + [sym_groovy_doc] = STATE(526), + [sym_identifier] = ACTIONS(89), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_STAR_COLON] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(101), + [anon_sym_import] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(101), + [anon_sym_STAR_STAR_EQ] = ACTIONS(101), + [anon_sym_STAR_EQ] = ACTIONS(101), + [anon_sym_SLASH_EQ] = ACTIONS(101), + [anon_sym_PERCENT_EQ] = ACTIONS(101), + [anon_sym_PLUS_EQ] = ACTIONS(101), + [anon_sym_DASH_EQ] = ACTIONS(101), + [anon_sym_LT_LT_EQ] = ACTIONS(101), + [anon_sym_GT_GT_EQ] = ACTIONS(101), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(101), + [anon_sym_AMP_EQ] = ACTIONS(101), + [anon_sym_CARET_EQ] = ACTIONS(101), + [anon_sym_PIPE_EQ] = ACTIONS(101), + [anon_sym_QMARK_EQ] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [anon_sym_ATinterface] = ACTIONS(95), + [anon_sym_interface] = ACTIONS(89), + [anon_sym_class] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_null] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_do] = ACTIONS(89), + [anon_sym_while] = ACTIONS(89), + [anon_sym_for] = ACTIONS(89), + [anon_sym_if] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(89), + [aux_sym_number_literal_token1] = ACTIONS(89), + [aux_sym_number_literal_token2] = ACTIONS(95), + [aux_sym_number_literal_token3] = ACTIONS(95), + [aux_sym_number_literal_token4] = ACTIONS(89), + [aux_sym_number_literal_token5] = ACTIONS(95), + [anon_sym_return] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SLASH] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(89), + [anon_sym_try] = ACTIONS(89), + [anon_sym_int] = ACTIONS(89), + [anon_sym_boolean] = ACTIONS(89), + [anon_sym_char] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_float] = ACTIONS(89), + [anon_sym_double] = ACTIONS(89), + [anon_sym_void] = ACTIONS(89), + [anon_sym_LBRACK_RBRACK] = ACTIONS(101), + [anon_sym_public] = ACTIONS(89), + [anon_sym_protected] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_static] = ACTIONS(89), + [anon_sym_final] = ACTIONS(89), + [anon_sym_synchronized] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_new] = ACTIONS(89), + }, + [527] = { + [sym__statement] = STATE(1078), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(1054), + [sym_groovy_package] = STATE(1054), + [sym__prefix_expression] = STATE(1459), + [sym_annotation] = STATE(1767), + [sym_assertion] = STATE(1054), + [sym_assignment] = STATE(1054), + [sym_increment_op] = STATE(1019), + [sym_class_definition] = STATE(1054), + [sym_closure] = STATE(1076), + [sym_comment] = STATE(527), + [sym_groovy_doc] = STATE(527), + [sym_declaration] = STATE(1054), + [sym_do_while_loop] = STATE(1054), + [sym_for_loop] = STATE(1054), + [sym_for_in_loop] = STATE(1054), + [sym_function_call] = STATE(481), + [sym_function_declaration] = STATE(1054), + [sym_function_definition] = STATE(1054), + [sym_if_statement] = STATE(1054), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(1054), + [sym__juxt_function_name] = STATE(1075), + [sym_return] = STATE(1054), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(1054), + [sym_try_statement] = STATE(1054), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2397), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1802), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(1054), + [aux_sym_class_definition_repeat1] = STATE(1799), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(1209), + [anon_sym_package] = ACTIONS(1211), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(814), + [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1215), + [anon_sym_interface] = ACTIONS(1217), + [anon_sym_class] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(822), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1219), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1223), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_try] = ACTIONS(1233), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [528] = { + [sym__statement] = STATE(800), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1154), + [sym_annotation] = STATE(1768), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(663), + [sym_comment] = STATE(528), + [sym_groovy_doc] = STATE(528), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(507), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(975), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2361), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1806), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1800), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1237), + [anon_sym_package] = ACTIONS(1239), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1265), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [529] = { + [sym__statement] = STATE(949), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1322), + [sym_annotation] = STATE(1765), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(665), + [sym_comment] = STATE(529), + [sym_groovy_doc] = STATE(529), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(488), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(991), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2366), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1790), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1789), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1267), + [anon_sym_package] = ACTIONS(1269), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1277), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1281), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1285), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [530] = { + [sym__statement] = STATE(679), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1154), + [sym_annotation] = STATE(1768), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(665), + [sym_comment] = STATE(530), + [sym_groovy_doc] = STATE(530), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(507), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(975), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2361), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1806), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1800), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1237), + [anon_sym_package] = ACTIONS(1239), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1289), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_return] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1293), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [531] = { + [sym__statement] = STATE(655), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1322), + [sym_annotation] = STATE(1765), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(663), + [sym_comment] = STATE(531), + [sym_groovy_doc] = STATE(531), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(488), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(991), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2366), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1790), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1789), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1267), + [anon_sym_package] = ACTIONS(1269), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1277), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1281), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1285), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [532] = { + [sym__statement] = STATE(2751), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1491), + [sym_annotation] = STATE(1771), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(2511), + [sym_comment] = STATE(532), + [sym_groovy_doc] = STATE(532), + [sym_declaration] = STATE(790), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(939), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1070), + [sym_return] = STATE(790), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(790), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2386), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1807), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(790), + [aux_sym_class_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1297), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [533] = { + [sym__statement] = STATE(740), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(804), + [sym_groovy_package] = STATE(804), + [sym__prefix_expression] = STATE(1258), + [sym_annotation] = STATE(1766), + [sym_assertion] = STATE(804), + [sym_assignment] = STATE(804), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(804), + [sym_closure] = STATE(777), + [sym_comment] = STATE(533), + [sym_groovy_doc] = STATE(533), + [sym_declaration] = STATE(804), + [sym_do_while_loop] = STATE(804), + [sym_for_loop] = STATE(804), + [sym_for_in_loop] = STATE(804), + [sym_function_call] = STATE(516), + [sym_function_declaration] = STATE(804), + [sym_function_definition] = STATE(804), + [sym_if_statement] = STATE(804), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(804), + [sym__juxt_function_name] = STATE(984), + [sym_return] = STATE(804), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(804), + [sym_try_statement] = STATE(804), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2383), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1784), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(804), + [aux_sym_class_definition_repeat1] = STATE(1781), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_import] = ACTIONS(17), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(35), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1309), + [anon_sym_return] = ACTIONS(47), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1311), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [534] = { + [sym__statement] = STATE(1278), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(1148), + [sym_groovy_package] = STATE(1148), + [sym__prefix_expression] = STATE(1413), + [sym_annotation] = STATE(1764), + [sym_assertion] = STATE(1148), + [sym_assignment] = STATE(1148), + [sym_increment_op] = STATE(1222), + [sym_class_definition] = STATE(1148), + [sym_closure] = STATE(1283), + [sym_comment] = STATE(534), + [sym_groovy_doc] = STATE(534), + [sym_declaration] = STATE(1148), + [sym_do_while_loop] = STATE(1148), + [sym_for_loop] = STATE(1148), + [sym_for_in_loop] = STATE(1148), + [sym_function_call] = STATE(508), + [sym_function_declaration] = STATE(1148), + [sym_function_definition] = STATE(1148), + [sym_if_statement] = STATE(1148), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(1148), + [sym__juxt_function_name] = STATE(1057), + [sym_return] = STATE(1148), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(1148), + [sym_try_statement] = STATE(1148), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2414), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1801), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(1148), + [aux_sym_class_definition_repeat1] = STATE(1804), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1313), + [anon_sym_continue] = ACTIONS(1313), + [anon_sym_import] = ACTIONS(972), + [anon_sym_package] = ACTIONS(974), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(976), + [anon_sym_PLUS_PLUS] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(936), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(978), + [anon_sym_interface] = ACTIONS(980), + [anon_sym_class] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(944), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(984), + [anon_sym_do] = ACTIONS(986), + [anon_sym_while] = ACTIONS(988), + [anon_sym_for] = ACTIONS(990), + [anon_sym_if] = ACTIONS(992), + [anon_sym_return] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_try] = ACTIONS(1000), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [535] = { + [sym__statement] = STATE(1250), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(1148), + [sym_groovy_package] = STATE(1148), + [sym__prefix_expression] = STATE(1413), + [sym_annotation] = STATE(1764), + [sym_assertion] = STATE(1148), + [sym_assignment] = STATE(1148), + [sym_increment_op] = STATE(1222), + [sym_class_definition] = STATE(1148), + [sym_closure] = STATE(1275), + [sym_comment] = STATE(535), + [sym_groovy_doc] = STATE(535), + [sym_declaration] = STATE(1148), + [sym_do_while_loop] = STATE(1148), + [sym_for_loop] = STATE(1148), + [sym_for_in_loop] = STATE(1148), + [sym_function_call] = STATE(508), + [sym_function_declaration] = STATE(1148), + [sym_function_definition] = STATE(1148), + [sym_if_statement] = STATE(1148), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(1148), + [sym__juxt_function_name] = STATE(1057), + [sym_return] = STATE(1148), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(1148), + [sym_try_statement] = STATE(1148), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2414), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1801), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(1148), + [aux_sym_class_definition_repeat1] = STATE(1804), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1313), + [anon_sym_continue] = ACTIONS(1313), + [anon_sym_import] = ACTIONS(972), + [anon_sym_package] = ACTIONS(974), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(976), + [anon_sym_PLUS_PLUS] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(936), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(978), + [anon_sym_interface] = ACTIONS(980), + [anon_sym_class] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(944), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(984), + [anon_sym_do] = ACTIONS(986), + [anon_sym_while] = ACTIONS(988), + [anon_sym_for] = ACTIONS(990), + [anon_sym_if] = ACTIONS(992), + [anon_sym_return] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_try] = ACTIONS(1000), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [536] = { + [sym__statement] = STATE(2744), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1491), + [sym_annotation] = STATE(1771), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(2511), + [sym_comment] = STATE(536), + [sym_groovy_doc] = STATE(536), + [sym_declaration] = STATE(790), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(939), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1070), + [sym_return] = STATE(790), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(790), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2386), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1807), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(790), + [aux_sym_class_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1297), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [537] = { + [sym__statement] = STATE(2724), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1491), + [sym_annotation] = STATE(1771), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(2511), + [sym_comment] = STATE(537), + [sym_groovy_doc] = STATE(537), + [sym_declaration] = STATE(790), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(939), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1070), + [sym_return] = STATE(790), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(790), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2386), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1807), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(790), + [aux_sym_class_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1297), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [538] = { + [sym__statement] = STATE(764), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1491), + [sym_annotation] = STATE(1771), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(767), + [sym_comment] = STATE(538), + [sym_groovy_doc] = STATE(538), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(996), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2386), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1807), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1195), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [539] = { + [sym__statement] = STATE(724), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1491), + [sym_annotation] = STATE(1771), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(722), + [sym_comment] = STATE(539), + [sym_groovy_doc] = STATE(539), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(996), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2386), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1807), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1195), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [540] = { + [sym__statement] = STATE(655), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1154), + [sym_annotation] = STATE(1768), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(663), + [sym_comment] = STATE(540), + [sym_groovy_doc] = STATE(540), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(507), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(975), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2361), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1806), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1800), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1237), + [anon_sym_package] = ACTIONS(1239), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1265), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [541] = { + [sym__statement] = STATE(679), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1245), + [sym_annotation] = STATE(1769), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(665), + [sym_comment] = STATE(541), + [sym_groovy_doc] = STATE(541), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(976), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2377), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1775), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_package] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1331), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [542] = { + [sym__statement] = STATE(724), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1491), + [sym_annotation] = STATE(1771), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(722), + [sym_comment] = STATE(542), + [sym_groovy_doc] = STATE(542), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(996), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2386), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1807), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1339), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [543] = { + [sym__statement] = STATE(774), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1491), + [sym_annotation] = STATE(1771), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(776), + [sym_comment] = STATE(543), + [sym_groovy_doc] = STATE(543), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(996), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2386), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1807), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1339), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [544] = { + [sym__statement] = STATE(729), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(804), + [sym_groovy_package] = STATE(804), + [sym__prefix_expression] = STATE(1258), + [sym_annotation] = STATE(1766), + [sym_assertion] = STATE(804), + [sym_assignment] = STATE(804), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(804), + [sym_closure] = STATE(728), + [sym_comment] = STATE(544), + [sym_groovy_doc] = STATE(544), + [sym_declaration] = STATE(804), + [sym_do_while_loop] = STATE(804), + [sym_for_loop] = STATE(804), + [sym_for_in_loop] = STATE(804), + [sym_function_call] = STATE(516), + [sym_function_declaration] = STATE(804), + [sym_function_definition] = STATE(804), + [sym_if_statement] = STATE(804), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(804), + [sym__juxt_function_name] = STATE(984), + [sym_return] = STATE(804), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(804), + [sym_try_statement] = STATE(804), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2383), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1784), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(804), + [aux_sym_class_definition_repeat1] = STATE(1781), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_import] = ACTIONS(17), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(35), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1309), + [anon_sym_return] = ACTIONS(47), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1311), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [545] = { + [sym__statement] = STATE(1078), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(1054), + [sym_groovy_package] = STATE(1054), + [sym__prefix_expression] = STATE(1459), + [sym_annotation] = STATE(1767), + [sym_assertion] = STATE(1054), + [sym_assignment] = STATE(1054), + [sym_increment_op] = STATE(1019), + [sym_class_definition] = STATE(1054), + [sym_closure] = STATE(1076), + [sym_comment] = STATE(545), + [sym_groovy_doc] = STATE(545), + [sym_declaration] = STATE(1054), + [sym_do_while_loop] = STATE(1054), + [sym_for_loop] = STATE(1054), + [sym_for_in_loop] = STATE(1054), + [sym_function_call] = STATE(481), + [sym_function_declaration] = STATE(1054), + [sym_function_definition] = STATE(1054), + [sym_if_statement] = STATE(1054), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(1054), + [sym__juxt_function_name] = STATE(1075), + [sym_return] = STATE(1054), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(1054), + [sym_try_statement] = STATE(1054), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2397), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1802), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(1054), + [aux_sym_class_definition_repeat1] = STATE(1799), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(1209), + [anon_sym_package] = ACTIONS(1211), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(814), + [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1215), + [anon_sym_interface] = ACTIONS(1217), + [anon_sym_class] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(822), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1219), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_try] = ACTIONS(1347), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [546] = { + [sym__statement] = STATE(729), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1491), + [sym_annotation] = STATE(1771), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(728), + [sym_comment] = STATE(546), + [sym_groovy_doc] = STATE(546), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(996), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2386), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1807), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1339), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [547] = { + [sym__statement] = STATE(2447), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1491), + [sym_annotation] = STATE(1771), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(777), + [sym_comment] = STATE(547), + [sym_groovy_doc] = STATE(547), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(996), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2386), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1807), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1339), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [548] = { + [sym__statement] = STATE(774), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(804), + [sym_groovy_package] = STATE(804), + [sym__prefix_expression] = STATE(1258), + [sym_annotation] = STATE(1766), + [sym_assertion] = STATE(804), + [sym_assignment] = STATE(804), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(804), + [sym_closure] = STATE(776), + [sym_comment] = STATE(548), + [sym_groovy_doc] = STATE(548), + [sym_declaration] = STATE(804), + [sym_do_while_loop] = STATE(804), + [sym_for_loop] = STATE(804), + [sym_for_in_loop] = STATE(804), + [sym_function_call] = STATE(516), + [sym_function_declaration] = STATE(804), + [sym_function_definition] = STATE(804), + [sym_if_statement] = STATE(804), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(804), + [sym__juxt_function_name] = STATE(984), + [sym_return] = STATE(804), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(804), + [sym_try_statement] = STATE(804), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2383), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1784), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(804), + [aux_sym_class_definition_repeat1] = STATE(1781), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_import] = ACTIONS(17), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(35), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1309), + [anon_sym_return] = ACTIONS(47), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1311), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [549] = { + [sym__statement] = STATE(774), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1491), + [sym_annotation] = STATE(1771), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(776), + [sym_comment] = STATE(549), + [sym_groovy_doc] = STATE(549), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(996), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2386), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1807), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1195), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [550] = { + [sym__statement] = STATE(949), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1322), + [sym_annotation] = STATE(1765), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(665), + [sym_comment] = STATE(550), + [sym_groovy_doc] = STATE(550), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(488), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(991), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2366), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1790), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1789), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1267), + [anon_sym_package] = ACTIONS(1269), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1349), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1355), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [551] = { + [sym__statement] = STATE(2649), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1491), + [sym_annotation] = STATE(1771), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(2511), + [sym_comment] = STATE(551), + [sym_groovy_doc] = STATE(551), + [sym_declaration] = STATE(790), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(939), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(1070), + [sym_return] = STATE(790), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(790), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2386), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1807), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(790), + [aux_sym_class_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1297), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [552] = { + [sym__statement] = STATE(740), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(804), + [sym_groovy_package] = STATE(804), + [sym__prefix_expression] = STATE(1331), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(804), + [sym_assignment] = STATE(804), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(804), + [sym_closure] = STATE(777), + [sym_comment] = STATE(552), + [sym_groovy_doc] = STATE(552), + [sym_declaration] = STATE(804), + [sym_do_while_loop] = STATE(804), + [sym_for_loop] = STATE(804), + [sym_for_in_loop] = STATE(804), + [sym_function_call] = STATE(518), + [sym_function_declaration] = STATE(804), + [sym_function_definition] = STATE(804), + [sym_if_statement] = STATE(804), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(804), + [sym__juxt_function_name] = STATE(1074), + [sym_return] = STATE(804), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(804), + [sym_try_statement] = STATE(804), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(804), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1357), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(1359), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1367), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [553] = { + [sym__statement] = STATE(729), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1491), + [sym_annotation] = STATE(1771), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(728), + [sym_comment] = STATE(553), + [sym_groovy_doc] = STATE(553), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(996), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2386), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1807), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1195), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [554] = { + [sym__statement] = STATE(655), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1245), + [sym_annotation] = STATE(1769), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(663), + [sym_comment] = STATE(554), + [sym_groovy_doc] = STATE(554), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(976), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2377), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1775), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_package] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [555] = { + [sym__statement] = STATE(671), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1322), + [sym_annotation] = STATE(1765), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(672), + [sym_comment] = STATE(555), + [sym_groovy_doc] = STATE(555), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(488), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(991), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2366), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1790), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1789), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1267), + [anon_sym_package] = ACTIONS(1269), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1349), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1355), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [556] = { + [sym__statement] = STATE(679), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1322), + [sym_annotation] = STATE(1765), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(665), + [sym_comment] = STATE(556), + [sym_groovy_doc] = STATE(556), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(488), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(991), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2366), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1790), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1789), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1267), + [anon_sym_package] = ACTIONS(1269), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1349), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1355), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [557] = { + [sym__statement] = STATE(764), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(804), + [sym_groovy_package] = STATE(804), + [sym__prefix_expression] = STATE(1258), + [sym_annotation] = STATE(1766), + [sym_assertion] = STATE(804), + [sym_assignment] = STATE(804), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(804), + [sym_closure] = STATE(767), + [sym_comment] = STATE(557), + [sym_groovy_doc] = STATE(557), + [sym_declaration] = STATE(804), + [sym_do_while_loop] = STATE(804), + [sym_for_loop] = STATE(804), + [sym_for_in_loop] = STATE(804), + [sym_function_call] = STATE(516), + [sym_function_declaration] = STATE(804), + [sym_function_definition] = STATE(804), + [sym_if_statement] = STATE(804), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(804), + [sym__juxt_function_name] = STATE(984), + [sym_return] = STATE(804), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(804), + [sym_try_statement] = STATE(804), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2383), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1784), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(804), + [aux_sym_class_definition_repeat1] = STATE(1781), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_import] = ACTIONS(17), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(35), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_for] = ACTIONS(41), + [anon_sym_if] = ACTIONS(43), + [anon_sym_return] = ACTIONS(47), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(61), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [558] = { + [sym__statement] = STATE(724), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(804), + [sym_groovy_package] = STATE(804), + [sym__prefix_expression] = STATE(1258), + [sym_annotation] = STATE(1766), + [sym_assertion] = STATE(804), + [sym_assignment] = STATE(804), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(804), + [sym_closure] = STATE(722), + [sym_comment] = STATE(558), + [sym_groovy_doc] = STATE(558), + [sym_declaration] = STATE(804), + [sym_do_while_loop] = STATE(804), + [sym_for_loop] = STATE(804), + [sym_for_in_loop] = STATE(804), + [sym_function_call] = STATE(516), + [sym_function_declaration] = STATE(804), + [sym_function_definition] = STATE(804), + [sym_if_statement] = STATE(804), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(804), + [sym__juxt_function_name] = STATE(984), + [sym_return] = STATE(804), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(804), + [sym_try_statement] = STATE(804), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2383), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1784), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(804), + [aux_sym_class_definition_repeat1] = STATE(1781), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_import] = ACTIONS(17), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(35), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_for] = ACTIONS(41), + [anon_sym_if] = ACTIONS(43), + [anon_sym_return] = ACTIONS(47), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(61), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [559] = { + [sym__statement] = STATE(1069), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(1054), + [sym_groovy_package] = STATE(1054), + [sym__prefix_expression] = STATE(1459), + [sym_annotation] = STATE(1767), + [sym_assertion] = STATE(1054), + [sym_assignment] = STATE(1054), + [sym_increment_op] = STATE(1019), + [sym_class_definition] = STATE(1054), + [sym_closure] = STATE(1086), + [sym_comment] = STATE(559), + [sym_groovy_doc] = STATE(559), + [sym_declaration] = STATE(1054), + [sym_do_while_loop] = STATE(1054), + [sym_for_loop] = STATE(1054), + [sym_for_in_loop] = STATE(1054), + [sym_function_call] = STATE(481), + [sym_function_declaration] = STATE(1054), + [sym_function_definition] = STATE(1054), + [sym_if_statement] = STATE(1054), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(1054), + [sym__juxt_function_name] = STATE(1075), + [sym_return] = STATE(1054), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(1054), + [sym_try_statement] = STATE(1054), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2397), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1802), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(1054), + [aux_sym_class_definition_repeat1] = STATE(1799), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(1209), + [anon_sym_package] = ACTIONS(1211), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(814), + [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1215), + [anon_sym_interface] = ACTIONS(1217), + [anon_sym_class] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(822), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1219), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_try] = ACTIONS(1347), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [560] = { + [sym__statement] = STATE(2547), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(790), + [sym_groovy_package] = STATE(790), + [sym__prefix_expression] = STATE(1491), + [sym_annotation] = STATE(1771), + [sym_assertion] = STATE(790), + [sym_assignment] = STATE(790), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(790), + [sym_closure] = STATE(790), + [sym_comment] = STATE(560), + [sym_groovy_doc] = STATE(560), + [sym_declaration] = STATE(790), + [sym_do_while_loop] = STATE(790), + [sym_for_loop] = STATE(790), + [sym_for_in_loop] = STATE(790), + [sym_function_call] = STATE(939), + [sym_function_declaration] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(790), + [sym__juxt_function_name] = STATE(996), + [sym_return] = STATE(790), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(790), + [sym_try_statement] = STATE(790), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2386), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1807), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(790), + [aux_sym_class_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(15), + [anon_sym_continue] = ACTIONS(15), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1195), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [561] = { + [sym__statement] = STATE(702), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1245), + [sym_annotation] = STATE(1769), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(703), + [sym_comment] = STATE(561), + [sym_groovy_doc] = STATE(561), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(976), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2377), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1775), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_package] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1331), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [562] = { + [sym__statement] = STATE(700), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1245), + [sym_annotation] = STATE(1769), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(701), + [sym_comment] = STATE(562), + [sym_groovy_doc] = STATE(562), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(976), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2377), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1775), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_package] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1331), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [563] = { + [sym__statement] = STATE(2337), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1245), + [sym_annotation] = STATE(1769), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(663), + [sym_comment] = STATE(563), + [sym_groovy_doc] = STATE(563), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(976), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2377), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1775), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_package] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [564] = { + [sym__statement] = STATE(660), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1245), + [sym_annotation] = STATE(1769), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(661), + [sym_comment] = STATE(564), + [sym_groovy_doc] = STATE(564), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(976), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2377), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1775), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_package] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1331), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [565] = { + [sym__statement] = STATE(671), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1245), + [sym_annotation] = STATE(1769), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(672), + [sym_comment] = STATE(565), + [sym_groovy_doc] = STATE(565), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(976), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2377), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1775), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_package] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1331), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [566] = { + [sym__statement] = STATE(764), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1491), + [sym_annotation] = STATE(1771), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(767), + [sym_comment] = STATE(566), + [sym_groovy_doc] = STATE(566), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(1070), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2386), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1807), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1297), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [567] = { + [sym__statement] = STATE(724), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1491), + [sym_annotation] = STATE(1771), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(722), + [sym_comment] = STATE(567), + [sym_groovy_doc] = STATE(567), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(1070), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2386), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1807), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1297), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [568] = { + [sym__statement] = STATE(740), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1491), + [sym_annotation] = STATE(1771), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(777), + [sym_comment] = STATE(568), + [sym_groovy_doc] = STATE(568), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(1070), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2386), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1807), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_for] = ACTIONS(1379), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [569] = { + [sym__statement] = STATE(655), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1245), + [sym_annotation] = STATE(1769), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(663), + [sym_comment] = STATE(569), + [sym_groovy_doc] = STATE(569), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(1009), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2377), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1775), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_package] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [570] = { + [sym__statement] = STATE(1083), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(1054), + [sym_groovy_package] = STATE(1054), + [sym__prefix_expression] = STATE(1459), + [sym_annotation] = STATE(1767), + [sym_assertion] = STATE(1054), + [sym_assignment] = STATE(1054), + [sym_increment_op] = STATE(1019), + [sym_class_definition] = STATE(1054), + [sym_closure] = STATE(1086), + [sym_comment] = STATE(570), + [sym_groovy_doc] = STATE(570), + [sym_declaration] = STATE(1054), + [sym_do_while_loop] = STATE(1054), + [sym_for_loop] = STATE(1054), + [sym_for_in_loop] = STATE(1054), + [sym_function_call] = STATE(481), + [sym_function_declaration] = STATE(1054), + [sym_function_definition] = STATE(1054), + [sym_if_statement] = STATE(1054), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(1054), + [sym__juxt_function_name] = STATE(1075), + [sym_return] = STATE(1054), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(1054), + [sym_try_statement] = STATE(1054), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2397), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1802), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(1054), + [aux_sym_class_definition_repeat1] = STATE(1799), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(1209), + [anon_sym_package] = ACTIONS(1211), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(814), + [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1215), + [anon_sym_interface] = ACTIONS(1217), + [anon_sym_class] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(822), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1219), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_try] = ACTIONS(1347), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [571] = { + [sym__statement] = STATE(2492), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1491), + [sym_annotation] = STATE(1771), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(777), + [sym_comment] = STATE(571), + [sym_groovy_doc] = STATE(571), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(1070), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2386), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1807), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_for] = ACTIONS(1379), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [572] = { + [sym__statement] = STATE(774), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1491), + [sym_annotation] = STATE(1771), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(776), + [sym_comment] = STATE(572), + [sym_groovy_doc] = STATE(572), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(1070), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2386), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1807), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1297), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [573] = { + [sym__statement] = STATE(729), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(804), + [sym_groovy_package] = STATE(804), + [sym__prefix_expression] = STATE(1258), + [sym_annotation] = STATE(1766), + [sym_assertion] = STATE(804), + [sym_assignment] = STATE(804), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(804), + [sym_closure] = STATE(728), + [sym_comment] = STATE(573), + [sym_groovy_doc] = STATE(573), + [sym_declaration] = STATE(804), + [sym_do_while_loop] = STATE(804), + [sym_for_loop] = STATE(804), + [sym_for_in_loop] = STATE(804), + [sym_function_call] = STATE(516), + [sym_function_declaration] = STATE(804), + [sym_function_definition] = STATE(804), + [sym_if_statement] = STATE(804), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(804), + [sym__juxt_function_name] = STATE(984), + [sym_return] = STATE(804), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(804), + [sym_try_statement] = STATE(804), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2383), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1784), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(804), + [aux_sym_class_definition_repeat1] = STATE(1781), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_import] = ACTIONS(17), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(35), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_for] = ACTIONS(41), + [anon_sym_if] = ACTIONS(43), + [anon_sym_return] = ACTIONS(47), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(61), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [574] = { + [sym__statement] = STATE(740), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1491), + [sym_annotation] = STATE(1771), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(777), + [sym_comment] = STATE(574), + [sym_groovy_doc] = STATE(574), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(996), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2386), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1807), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1339), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [575] = { + [sym__statement] = STATE(729), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1491), + [sym_annotation] = STATE(1771), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(728), + [sym_comment] = STATE(575), + [sym_groovy_doc] = STATE(575), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(1070), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2386), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1807), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1297), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [576] = { + [sym__statement] = STATE(679), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1245), + [sym_annotation] = STATE(1769), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(665), + [sym_comment] = STATE(576), + [sym_groovy_doc] = STATE(576), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(1009), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2377), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1775), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_package] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [577] = { + [sym__statement] = STATE(700), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1245), + [sym_annotation] = STATE(1769), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(701), + [sym_comment] = STATE(577), + [sym_groovy_doc] = STATE(577), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(1009), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2377), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1775), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_package] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [578] = { + [sym__statement] = STATE(660), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1245), + [sym_annotation] = STATE(1769), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(661), + [sym_comment] = STATE(578), + [sym_groovy_doc] = STATE(578), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(1009), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2377), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1775), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_package] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [579] = { + [sym__statement] = STATE(671), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1245), + [sym_annotation] = STATE(1769), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(672), + [sym_comment] = STATE(579), + [sym_groovy_doc] = STATE(579), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(1009), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2377), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1775), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_package] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [580] = { + [sym__statement] = STATE(949), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1245), + [sym_annotation] = STATE(1769), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(665), + [sym_comment] = STATE(580), + [sym_groovy_doc] = STATE(580), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(976), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2377), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1775), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_package] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1331), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [581] = { + [sym__statement] = STATE(1133), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(1148), + [sym_groovy_package] = STATE(1148), + [sym__prefix_expression] = STATE(1413), + [sym_annotation] = STATE(1764), + [sym_assertion] = STATE(1148), + [sym_assignment] = STATE(1148), + [sym_increment_op] = STATE(1222), + [sym_class_definition] = STATE(1148), + [sym_closure] = STATE(1467), + [sym_comment] = STATE(581), + [sym_groovy_doc] = STATE(581), + [sym_declaration] = STATE(1148), + [sym_do_while_loop] = STATE(1148), + [sym_for_loop] = STATE(1148), + [sym_for_in_loop] = STATE(1148), + [sym_function_call] = STATE(508), + [sym_function_declaration] = STATE(1148), + [sym_function_definition] = STATE(1148), + [sym_if_statement] = STATE(1148), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(1148), + [sym__juxt_function_name] = STATE(1057), + [sym_return] = STATE(1148), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(1148), + [sym_try_statement] = STATE(1148), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2414), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1801), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(1148), + [aux_sym_class_definition_repeat1] = STATE(1804), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1313), + [anon_sym_continue] = ACTIONS(1313), + [anon_sym_import] = ACTIONS(972), + [anon_sym_package] = ACTIONS(974), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(976), + [anon_sym_PLUS_PLUS] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(936), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(978), + [anon_sym_interface] = ACTIONS(980), + [anon_sym_class] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(944), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(984), + [anon_sym_do] = ACTIONS(986), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_for] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_try] = ACTIONS(1399), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [582] = { + [sym__statement] = STATE(1462), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(1148), + [sym_groovy_package] = STATE(1148), + [sym__prefix_expression] = STATE(1413), + [sym_annotation] = STATE(1764), + [sym_assertion] = STATE(1148), + [sym_assignment] = STATE(1148), + [sym_increment_op] = STATE(1222), + [sym_class_definition] = STATE(1148), + [sym_closure] = STATE(1465), + [sym_comment] = STATE(582), + [sym_groovy_doc] = STATE(582), + [sym_declaration] = STATE(1148), + [sym_do_while_loop] = STATE(1148), + [sym_for_loop] = STATE(1148), + [sym_for_in_loop] = STATE(1148), + [sym_function_call] = STATE(508), + [sym_function_declaration] = STATE(1148), + [sym_function_definition] = STATE(1148), + [sym_if_statement] = STATE(1148), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(1148), + [sym__juxt_function_name] = STATE(1057), + [sym_return] = STATE(1148), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(1148), + [sym_try_statement] = STATE(1148), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2414), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1801), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(1148), + [aux_sym_class_definition_repeat1] = STATE(1804), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1313), + [anon_sym_continue] = ACTIONS(1313), + [anon_sym_import] = ACTIONS(972), + [anon_sym_package] = ACTIONS(974), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(976), + [anon_sym_PLUS_PLUS] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(936), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(978), + [anon_sym_interface] = ACTIONS(980), + [anon_sym_class] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(944), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(984), + [anon_sym_do] = ACTIONS(986), + [anon_sym_while] = ACTIONS(988), + [anon_sym_for] = ACTIONS(990), + [anon_sym_if] = ACTIONS(992), + [anon_sym_return] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_try] = ACTIONS(1000), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [583] = { + [sym__statement] = STATE(1002), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(1054), + [sym_groovy_package] = STATE(1054), + [sym__prefix_expression] = STATE(1459), + [sym_annotation] = STATE(1767), + [sym_assertion] = STATE(1054), + [sym_assignment] = STATE(1054), + [sym_increment_op] = STATE(1019), + [sym_class_definition] = STATE(1054), + [sym_closure] = STATE(1003), + [sym_comment] = STATE(583), + [sym_groovy_doc] = STATE(583), + [sym_declaration] = STATE(1054), + [sym_do_while_loop] = STATE(1054), + [sym_for_loop] = STATE(1054), + [sym_for_in_loop] = STATE(1054), + [sym_function_call] = STATE(481), + [sym_function_declaration] = STATE(1054), + [sym_function_definition] = STATE(1054), + [sym_if_statement] = STATE(1054), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(1054), + [sym__juxt_function_name] = STATE(1075), + [sym_return] = STATE(1054), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(1054), + [sym_try_statement] = STATE(1054), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2397), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1802), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(1054), + [aux_sym_class_definition_repeat1] = STATE(1799), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(1209), + [anon_sym_package] = ACTIONS(1211), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(814), + [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1215), + [anon_sym_interface] = ACTIONS(1217), + [anon_sym_class] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(822), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1219), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_try] = ACTIONS(1347), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [584] = { + [sym__statement] = STATE(1079), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(1054), + [sym_groovy_package] = STATE(1054), + [sym__prefix_expression] = STATE(1459), + [sym_annotation] = STATE(1767), + [sym_assertion] = STATE(1054), + [sym_assignment] = STATE(1054), + [sym_increment_op] = STATE(1019), + [sym_class_definition] = STATE(1054), + [sym_closure] = STATE(1005), + [sym_comment] = STATE(584), + [sym_groovy_doc] = STATE(584), + [sym_declaration] = STATE(1054), + [sym_do_while_loop] = STATE(1054), + [sym_for_loop] = STATE(1054), + [sym_for_in_loop] = STATE(1054), + [sym_function_call] = STATE(481), + [sym_function_declaration] = STATE(1054), + [sym_function_definition] = STATE(1054), + [sym_if_statement] = STATE(1054), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(1054), + [sym__juxt_function_name] = STATE(1075), + [sym_return] = STATE(1054), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(1054), + [sym_try_statement] = STATE(1054), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2397), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1802), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(1054), + [aux_sym_class_definition_repeat1] = STATE(1799), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(1209), + [anon_sym_package] = ACTIONS(1211), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(814), + [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1215), + [anon_sym_interface] = ACTIONS(1217), + [anon_sym_class] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(822), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1219), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1223), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_try] = ACTIONS(1233), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [585] = { + [sym__statement] = STATE(949), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1245), + [sym_annotation] = STATE(1769), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(665), + [sym_comment] = STATE(585), + [sym_groovy_doc] = STATE(585), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(1009), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2377), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1775), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_package] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [586] = { + [sym__statement] = STATE(1047), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(1054), + [sym_groovy_package] = STATE(1054), + [sym__prefix_expression] = STATE(1459), + [sym_annotation] = STATE(1767), + [sym_assertion] = STATE(1054), + [sym_assignment] = STATE(1054), + [sym_increment_op] = STATE(1019), + [sym_class_definition] = STATE(1054), + [sym_closure] = STATE(1005), + [sym_comment] = STATE(586), + [sym_groovy_doc] = STATE(586), + [sym_declaration] = STATE(1054), + [sym_do_while_loop] = STATE(1054), + [sym_for_loop] = STATE(1054), + [sym_for_in_loop] = STATE(1054), + [sym_function_call] = STATE(481), + [sym_function_declaration] = STATE(1054), + [sym_function_definition] = STATE(1054), + [sym_if_statement] = STATE(1054), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(1054), + [sym__juxt_function_name] = STATE(1075), + [sym_return] = STATE(1054), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(1054), + [sym_try_statement] = STATE(1054), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2397), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1802), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(1054), + [aux_sym_class_definition_repeat1] = STATE(1799), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(1209), + [anon_sym_package] = ACTIONS(1211), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(814), + [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1215), + [anon_sym_interface] = ACTIONS(1217), + [anon_sym_class] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(822), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1219), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1223), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_try] = ACTIONS(1233), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [587] = { + [sym__statement] = STATE(1309), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(1148), + [sym_groovy_package] = STATE(1148), + [sym__prefix_expression] = STATE(1413), + [sym_annotation] = STATE(1764), + [sym_assertion] = STATE(1148), + [sym_assignment] = STATE(1148), + [sym_increment_op] = STATE(1222), + [sym_class_definition] = STATE(1148), + [sym_closure] = STATE(1467), + [sym_comment] = STATE(587), + [sym_groovy_doc] = STATE(587), + [sym_declaration] = STATE(1148), + [sym_do_while_loop] = STATE(1148), + [sym_for_loop] = STATE(1148), + [sym_for_in_loop] = STATE(1148), + [sym_function_call] = STATE(508), + [sym_function_declaration] = STATE(1148), + [sym_function_definition] = STATE(1148), + [sym_if_statement] = STATE(1148), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(1148), + [sym__juxt_function_name] = STATE(1057), + [sym_return] = STATE(1148), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(1148), + [sym_try_statement] = STATE(1148), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2414), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1801), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(1148), + [aux_sym_class_definition_repeat1] = STATE(1804), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1313), + [anon_sym_continue] = ACTIONS(1313), + [anon_sym_import] = ACTIONS(972), + [anon_sym_package] = ACTIONS(974), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(976), + [anon_sym_PLUS_PLUS] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(936), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(978), + [anon_sym_interface] = ACTIONS(980), + [anon_sym_class] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(944), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(984), + [anon_sym_do] = ACTIONS(986), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_for] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_try] = ACTIONS(1399), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [588] = { + [sym__statement] = STATE(702), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1154), + [sym_annotation] = STATE(1768), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(703), + [sym_comment] = STATE(588), + [sym_groovy_doc] = STATE(588), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(507), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(975), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2361), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1806), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1800), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1237), + [anon_sym_package] = ACTIONS(1239), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1289), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_return] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1293), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [589] = { + [sym__statement] = STATE(700), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1154), + [sym_annotation] = STATE(1768), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(701), + [sym_comment] = STATE(589), + [sym_groovy_doc] = STATE(589), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(507), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(975), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2361), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1806), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1800), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1237), + [anon_sym_package] = ACTIONS(1239), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1289), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_return] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1293), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [590] = { + [sym__statement] = STATE(671), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1245), + [sym_annotation] = STATE(1769), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(672), + [sym_comment] = STATE(590), + [sym_groovy_doc] = STATE(590), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(1009), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2377), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1775), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_package] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_for] = ACTIONS(1403), + [anon_sym_if] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1407), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [591] = { + [sym__statement] = STATE(660), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1154), + [sym_annotation] = STATE(1768), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(661), + [sym_comment] = STATE(591), + [sym_groovy_doc] = STATE(591), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(507), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(975), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2361), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1806), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1800), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1237), + [anon_sym_package] = ACTIONS(1239), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1289), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_return] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1293), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [592] = { + [sym__statement] = STATE(1083), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(1054), + [sym_groovy_package] = STATE(1054), + [sym__prefix_expression] = STATE(1459), + [sym_annotation] = STATE(1767), + [sym_assertion] = STATE(1054), + [sym_assignment] = STATE(1054), + [sym_increment_op] = STATE(1019), + [sym_class_definition] = STATE(1054), + [sym_closure] = STATE(1086), + [sym_comment] = STATE(592), + [sym_groovy_doc] = STATE(592), + [sym_declaration] = STATE(1054), + [sym_do_while_loop] = STATE(1054), + [sym_for_loop] = STATE(1054), + [sym_for_in_loop] = STATE(1054), + [sym_function_call] = STATE(481), + [sym_function_declaration] = STATE(1054), + [sym_function_definition] = STATE(1054), + [sym_if_statement] = STATE(1054), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(1054), + [sym__juxt_function_name] = STATE(1075), + [sym_return] = STATE(1054), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(1054), + [sym_try_statement] = STATE(1054), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2397), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1802), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(1054), + [aux_sym_class_definition_repeat1] = STATE(1799), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(1209), + [anon_sym_package] = ACTIONS(1211), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(814), + [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1215), + [anon_sym_interface] = ACTIONS(1217), + [anon_sym_class] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(822), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1219), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1223), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_try] = ACTIONS(1233), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [593] = { + [sym__statement] = STATE(671), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1154), + [sym_annotation] = STATE(1768), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(672), + [sym_comment] = STATE(593), + [sym_groovy_doc] = STATE(593), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(507), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(975), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2361), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1806), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1800), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1237), + [anon_sym_package] = ACTIONS(1239), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1289), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_return] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1293), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [594] = { + [sym__statement] = STATE(764), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(804), + [sym_groovy_package] = STATE(804), + [sym__prefix_expression] = STATE(1331), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(804), + [sym_assignment] = STATE(804), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(804), + [sym_closure] = STATE(767), + [sym_comment] = STATE(594), + [sym_groovy_doc] = STATE(594), + [sym_declaration] = STATE(804), + [sym_do_while_loop] = STATE(804), + [sym_for_loop] = STATE(804), + [sym_for_in_loop] = STATE(804), + [sym_function_call] = STATE(518), + [sym_function_declaration] = STATE(804), + [sym_function_definition] = STATE(804), + [sym_if_statement] = STATE(804), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(804), + [sym__juxt_function_name] = STATE(1074), + [sym_return] = STATE(804), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(804), + [sym_try_statement] = STATE(804), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(804), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1357), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(1359), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [595] = { + [sym__statement] = STATE(724), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(804), + [sym_groovy_package] = STATE(804), + [sym__prefix_expression] = STATE(1331), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(804), + [sym_assignment] = STATE(804), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(804), + [sym_closure] = STATE(722), + [sym_comment] = STATE(595), + [sym_groovy_doc] = STATE(595), + [sym_declaration] = STATE(804), + [sym_do_while_loop] = STATE(804), + [sym_for_loop] = STATE(804), + [sym_for_in_loop] = STATE(804), + [sym_function_call] = STATE(518), + [sym_function_declaration] = STATE(804), + [sym_function_definition] = STATE(804), + [sym_if_statement] = STATE(804), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(804), + [sym__juxt_function_name] = STATE(1074), + [sym_return] = STATE(804), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(804), + [sym_try_statement] = STATE(804), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(804), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1357), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(1359), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [596] = { + [sym__statement] = STATE(1069), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(1054), + [sym_groovy_package] = STATE(1054), + [sym__prefix_expression] = STATE(1459), + [sym_annotation] = STATE(1767), + [sym_assertion] = STATE(1054), + [sym_assignment] = STATE(1054), + [sym_increment_op] = STATE(1019), + [sym_class_definition] = STATE(1054), + [sym_closure] = STATE(1086), + [sym_comment] = STATE(596), + [sym_groovy_doc] = STATE(596), + [sym_declaration] = STATE(1054), + [sym_do_while_loop] = STATE(1054), + [sym_for_loop] = STATE(1054), + [sym_for_in_loop] = STATE(1054), + [sym_function_call] = STATE(481), + [sym_function_declaration] = STATE(1054), + [sym_function_definition] = STATE(1054), + [sym_if_statement] = STATE(1054), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(1054), + [sym__juxt_function_name] = STATE(1075), + [sym_return] = STATE(1054), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(1054), + [sym_try_statement] = STATE(1054), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2397), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1802), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(1054), + [aux_sym_class_definition_repeat1] = STATE(1799), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(1209), + [anon_sym_package] = ACTIONS(1211), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(814), + [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1215), + [anon_sym_interface] = ACTIONS(1217), + [anon_sym_class] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(822), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1219), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1223), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_try] = ACTIONS(1233), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [597] = { + [sym__statement] = STATE(949), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1245), + [sym_annotation] = STATE(1769), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(665), + [sym_comment] = STATE(597), + [sym_groovy_doc] = STATE(597), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(1009), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2377), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1775), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_package] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_for] = ACTIONS(1403), + [anon_sym_if] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1407), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [598] = { + [sym__statement] = STATE(679), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1245), + [sym_annotation] = STATE(1769), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(665), + [sym_comment] = STATE(598), + [sym_groovy_doc] = STATE(598), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(976), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2377), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1775), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_package] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [599] = { + [sym__statement] = STATE(826), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(804), + [sym_groovy_package] = STATE(804), + [sym__prefix_expression] = STATE(1331), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(804), + [sym_assignment] = STATE(804), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(804), + [sym_closure] = STATE(777), + [sym_comment] = STATE(599), + [sym_groovy_doc] = STATE(599), + [sym_declaration] = STATE(804), + [sym_do_while_loop] = STATE(804), + [sym_for_loop] = STATE(804), + [sym_for_in_loop] = STATE(804), + [sym_function_call] = STATE(518), + [sym_function_declaration] = STATE(804), + [sym_function_definition] = STATE(804), + [sym_if_statement] = STATE(804), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(804), + [sym__juxt_function_name] = STATE(1074), + [sym_return] = STATE(804), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(804), + [sym_try_statement] = STATE(804), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(804), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1357), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(1359), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1367), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [600] = { + [sym__statement] = STATE(774), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(804), + [sym_groovy_package] = STATE(804), + [sym__prefix_expression] = STATE(1331), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(804), + [sym_assignment] = STATE(804), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(804), + [sym_closure] = STATE(776), + [sym_comment] = STATE(600), + [sym_groovy_doc] = STATE(600), + [sym_declaration] = STATE(804), + [sym_do_while_loop] = STATE(804), + [sym_for_loop] = STATE(804), + [sym_for_in_loop] = STATE(804), + [sym_function_call] = STATE(518), + [sym_function_declaration] = STATE(804), + [sym_function_definition] = STATE(804), + [sym_if_statement] = STATE(804), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(804), + [sym__juxt_function_name] = STATE(1074), + [sym_return] = STATE(804), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(804), + [sym_try_statement] = STATE(804), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(804), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1357), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(1359), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [601] = { + [sym__statement] = STATE(679), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1154), + [sym_annotation] = STATE(1768), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(665), + [sym_comment] = STATE(601), + [sym_groovy_doc] = STATE(601), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(507), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(975), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2361), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1806), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1800), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1237), + [anon_sym_package] = ACTIONS(1239), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1265), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [602] = { + [sym__statement] = STATE(729), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(804), + [sym_groovy_package] = STATE(804), + [sym__prefix_expression] = STATE(1331), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(804), + [sym_assignment] = STATE(804), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(804), + [sym_closure] = STATE(728), + [sym_comment] = STATE(602), + [sym_groovy_doc] = STATE(602), + [sym_declaration] = STATE(804), + [sym_do_while_loop] = STATE(804), + [sym_for_loop] = STATE(804), + [sym_for_in_loop] = STATE(804), + [sym_function_call] = STATE(518), + [sym_function_declaration] = STATE(804), + [sym_function_definition] = STATE(804), + [sym_if_statement] = STATE(804), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(804), + [sym__juxt_function_name] = STATE(1074), + [sym_return] = STATE(804), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(804), + [sym_try_statement] = STATE(804), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(804), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1357), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(1359), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(139), + [anon_sym_for] = ACTIONS(141), + [anon_sym_if] = ACTIONS(143), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(163), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [603] = { + [sym__statement] = STATE(806), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1154), + [sym_annotation] = STATE(1768), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(665), + [sym_comment] = STATE(603), + [sym_groovy_doc] = STATE(603), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(507), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(975), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2361), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1806), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1800), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1237), + [anon_sym_package] = ACTIONS(1239), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1289), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_return] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1293), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [604] = { + [sym__statement] = STATE(1038), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(1054), + [sym_groovy_package] = STATE(1054), + [sym__prefix_expression] = STATE(1459), + [sym_annotation] = STATE(1767), + [sym_assertion] = STATE(1054), + [sym_assignment] = STATE(1054), + [sym_increment_op] = STATE(1019), + [sym_class_definition] = STATE(1054), + [sym_closure] = STATE(1039), + [sym_comment] = STATE(604), + [sym_groovy_doc] = STATE(604), + [sym_declaration] = STATE(1054), + [sym_do_while_loop] = STATE(1054), + [sym_for_loop] = STATE(1054), + [sym_for_in_loop] = STATE(1054), + [sym_function_call] = STATE(481), + [sym_function_declaration] = STATE(1054), + [sym_function_definition] = STATE(1054), + [sym_if_statement] = STATE(1054), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(1054), + [sym__juxt_function_name] = STATE(1075), + [sym_return] = STATE(1054), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(1054), + [sym_try_statement] = STATE(1054), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2397), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1802), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(1054), + [aux_sym_class_definition_repeat1] = STATE(1799), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(1209), + [anon_sym_package] = ACTIONS(1211), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(814), + [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1215), + [anon_sym_interface] = ACTIONS(1217), + [anon_sym_class] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(822), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1219), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_try] = ACTIONS(1347), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [605] = { + [sym__statement] = STATE(1040), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(1054), + [sym_groovy_package] = STATE(1054), + [sym__prefix_expression] = STATE(1459), + [sym_annotation] = STATE(1767), + [sym_assertion] = STATE(1054), + [sym_assignment] = STATE(1054), + [sym_increment_op] = STATE(1019), + [sym_class_definition] = STATE(1054), + [sym_closure] = STATE(1041), + [sym_comment] = STATE(605), + [sym_groovy_doc] = STATE(605), + [sym_declaration] = STATE(1054), + [sym_do_while_loop] = STATE(1054), + [sym_for_loop] = STATE(1054), + [sym_for_in_loop] = STATE(1054), + [sym_function_call] = STATE(481), + [sym_function_declaration] = STATE(1054), + [sym_function_definition] = STATE(1054), + [sym_if_statement] = STATE(1054), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(1054), + [sym__juxt_function_name] = STATE(1075), + [sym_return] = STATE(1054), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(1054), + [sym_try_statement] = STATE(1054), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2397), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1802), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(1054), + [aux_sym_class_definition_repeat1] = STATE(1799), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(1209), + [anon_sym_package] = ACTIONS(1211), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(814), + [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1215), + [anon_sym_interface] = ACTIONS(1217), + [anon_sym_class] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(822), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1219), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_try] = ACTIONS(1347), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [606] = { + [sym__statement] = STATE(679), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1322), + [sym_annotation] = STATE(1765), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(665), + [sym_comment] = STATE(606), + [sym_groovy_doc] = STATE(606), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(488), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(991), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2366), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1790), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1789), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1267), + [anon_sym_package] = ACTIONS(1269), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1277), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1281), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1285), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [607] = { + [sym__statement] = STATE(700), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1245), + [sym_annotation] = STATE(1769), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(701), + [sym_comment] = STATE(607), + [sym_groovy_doc] = STATE(607), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(976), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2377), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1775), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_package] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [608] = { + [sym__statement] = STATE(660), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1245), + [sym_annotation] = STATE(1769), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(661), + [sym_comment] = STATE(608), + [sym_groovy_doc] = STATE(608), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(976), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2377), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1775), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_package] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [609] = { + [sym__statement] = STATE(671), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1245), + [sym_annotation] = STATE(1769), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(672), + [sym_comment] = STATE(609), + [sym_groovy_doc] = STATE(609), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(976), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2377), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1775), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_package] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [610] = { + [sym__statement] = STATE(724), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(804), + [sym_groovy_package] = STATE(804), + [sym__prefix_expression] = STATE(1258), + [sym_annotation] = STATE(1766), + [sym_assertion] = STATE(804), + [sym_assignment] = STATE(804), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(804), + [sym_closure] = STATE(722), + [sym_comment] = STATE(610), + [sym_groovy_doc] = STATE(610), + [sym_declaration] = STATE(804), + [sym_do_while_loop] = STATE(804), + [sym_for_loop] = STATE(804), + [sym_for_in_loop] = STATE(804), + [sym_function_call] = STATE(516), + [sym_function_declaration] = STATE(804), + [sym_function_definition] = STATE(804), + [sym_if_statement] = STATE(804), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(804), + [sym__juxt_function_name] = STATE(984), + [sym_return] = STATE(804), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(804), + [sym_try_statement] = STATE(804), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2383), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1784), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(804), + [aux_sym_class_definition_repeat1] = STATE(1781), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_import] = ACTIONS(17), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(35), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1309), + [anon_sym_return] = ACTIONS(47), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1311), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [611] = { + [sym__statement] = STATE(724), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1491), + [sym_annotation] = STATE(1771), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(722), + [sym_comment] = STATE(611), + [sym_groovy_doc] = STATE(611), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(1070), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2386), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1807), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_for] = ACTIONS(1379), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [612] = { + [sym__statement] = STATE(774), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1491), + [sym_annotation] = STATE(1771), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(776), + [sym_comment] = STATE(612), + [sym_groovy_doc] = STATE(612), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(1070), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2386), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1807), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_for] = ACTIONS(1379), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [613] = { + [sym__statement] = STATE(729), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1491), + [sym_annotation] = STATE(1771), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(728), + [sym_comment] = STATE(613), + [sym_groovy_doc] = STATE(613), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(1070), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2386), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1807), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_for] = ACTIONS(1379), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [614] = { + [sym__statement] = STATE(1368), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(1148), + [sym_groovy_package] = STATE(1148), + [sym__prefix_expression] = STATE(1413), + [sym_annotation] = STATE(1764), + [sym_assertion] = STATE(1148), + [sym_assignment] = STATE(1148), + [sym_increment_op] = STATE(1222), + [sym_class_definition] = STATE(1148), + [sym_closure] = STATE(1371), + [sym_comment] = STATE(614), + [sym_groovy_doc] = STATE(614), + [sym_declaration] = STATE(1148), + [sym_do_while_loop] = STATE(1148), + [sym_for_loop] = STATE(1148), + [sym_for_in_loop] = STATE(1148), + [sym_function_call] = STATE(508), + [sym_function_declaration] = STATE(1148), + [sym_function_definition] = STATE(1148), + [sym_if_statement] = STATE(1148), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(1148), + [sym__juxt_function_name] = STATE(1057), + [sym_return] = STATE(1148), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(1148), + [sym_try_statement] = STATE(1148), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2414), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1801), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(1148), + [aux_sym_class_definition_repeat1] = STATE(1804), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1313), + [anon_sym_continue] = ACTIONS(1313), + [anon_sym_import] = ACTIONS(972), + [anon_sym_package] = ACTIONS(974), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(976), + [anon_sym_PLUS_PLUS] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(936), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(978), + [anon_sym_interface] = ACTIONS(980), + [anon_sym_class] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(944), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(984), + [anon_sym_do] = ACTIONS(986), + [anon_sym_while] = ACTIONS(988), + [anon_sym_for] = ACTIONS(990), + [anon_sym_if] = ACTIONS(992), + [anon_sym_return] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_try] = ACTIONS(1000), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [615] = { + [sym__statement] = STATE(949), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1245), + [sym_annotation] = STATE(1769), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(665), + [sym_comment] = STATE(615), + [sym_groovy_doc] = STATE(615), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(976), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2377), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1775), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_package] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [616] = { + [sym__statement] = STATE(700), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1322), + [sym_annotation] = STATE(1765), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(701), + [sym_comment] = STATE(616), + [sym_groovy_doc] = STATE(616), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(488), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(991), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2366), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1790), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1789), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1267), + [anon_sym_package] = ACTIONS(1269), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1349), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1355), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [617] = { + [sym__statement] = STATE(700), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1154), + [sym_annotation] = STATE(1768), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(701), + [sym_comment] = STATE(617), + [sym_groovy_doc] = STATE(617), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(507), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(975), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2361), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1806), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1800), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1237), + [anon_sym_package] = ACTIONS(1239), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1265), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [618] = { + [sym__statement] = STATE(660), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1154), + [sym_annotation] = STATE(1768), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(661), + [sym_comment] = STATE(618), + [sym_groovy_doc] = STATE(618), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(507), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(975), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2361), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1806), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1800), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1237), + [anon_sym_package] = ACTIONS(1239), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1265), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [619] = { + [sym__statement] = STATE(679), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1245), + [sym_annotation] = STATE(1769), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(665), + [sym_comment] = STATE(619), + [sym_groovy_doc] = STATE(619), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(1009), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2377), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1775), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_package] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_for] = ACTIONS(1403), + [anon_sym_if] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1407), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [620] = { + [sym__statement] = STATE(1512), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(804), + [sym_groovy_package] = STATE(804), + [sym__prefix_expression] = STATE(1258), + [sym_annotation] = STATE(1766), + [sym_assertion] = STATE(804), + [sym_assignment] = STATE(804), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(804), + [sym_closure] = STATE(777), + [sym_comment] = STATE(620), + [sym_groovy_doc] = STATE(620), + [sym_declaration] = STATE(804), + [sym_do_while_loop] = STATE(804), + [sym_for_loop] = STATE(804), + [sym_for_in_loop] = STATE(804), + [sym_function_call] = STATE(516), + [sym_function_declaration] = STATE(804), + [sym_function_definition] = STATE(804), + [sym_if_statement] = STATE(804), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(804), + [sym__juxt_function_name] = STATE(984), + [sym_return] = STATE(804), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(804), + [sym_try_statement] = STATE(804), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2383), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1784), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(804), + [aux_sym_class_definition_repeat1] = STATE(1781), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_import] = ACTIONS(17), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(35), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1309), + [anon_sym_return] = ACTIONS(47), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1311), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [621] = { + [sym__statement] = STATE(702), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1322), + [sym_annotation] = STATE(1765), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(703), + [sym_comment] = STATE(621), + [sym_groovy_doc] = STATE(621), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(488), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(991), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2366), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1790), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1789), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1267), + [anon_sym_package] = ACTIONS(1269), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1349), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1355), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [622] = { + [sym__statement] = STATE(671), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1154), + [sym_annotation] = STATE(1768), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(672), + [sym_comment] = STATE(622), + [sym_groovy_doc] = STATE(622), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(507), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(975), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2361), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1806), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1800), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1237), + [anon_sym_package] = ACTIONS(1239), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1265), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [623] = { + [sym__statement] = STATE(724), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(804), + [sym_groovy_package] = STATE(804), + [sym__prefix_expression] = STATE(1331), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(804), + [sym_assignment] = STATE(804), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(804), + [sym_closure] = STATE(722), + [sym_comment] = STATE(623), + [sym_groovy_doc] = STATE(623), + [sym_declaration] = STATE(804), + [sym_do_while_loop] = STATE(804), + [sym_for_loop] = STATE(804), + [sym_for_in_loop] = STATE(804), + [sym_function_call] = STATE(518), + [sym_function_declaration] = STATE(804), + [sym_function_definition] = STATE(804), + [sym_if_statement] = STATE(804), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(804), + [sym__juxt_function_name] = STATE(1074), + [sym_return] = STATE(804), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(804), + [sym_try_statement] = STATE(804), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(804), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1357), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(1359), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1367), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [624] = { + [sym__statement] = STATE(671), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1322), + [sym_annotation] = STATE(1765), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(672), + [sym_comment] = STATE(624), + [sym_groovy_doc] = STATE(624), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(488), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(991), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2366), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1790), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1789), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1267), + [anon_sym_package] = ACTIONS(1269), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1277), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1281), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1285), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [625] = { + [sym__statement] = STATE(774), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(804), + [sym_groovy_package] = STATE(804), + [sym__prefix_expression] = STATE(1331), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(804), + [sym_assignment] = STATE(804), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(804), + [sym_closure] = STATE(776), + [sym_comment] = STATE(625), + [sym_groovy_doc] = STATE(625), + [sym_declaration] = STATE(804), + [sym_do_while_loop] = STATE(804), + [sym_for_loop] = STATE(804), + [sym_for_in_loop] = STATE(804), + [sym_function_call] = STATE(518), + [sym_function_declaration] = STATE(804), + [sym_function_definition] = STATE(804), + [sym_if_statement] = STATE(804), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(804), + [sym__juxt_function_name] = STATE(1074), + [sym_return] = STATE(804), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(804), + [sym_try_statement] = STATE(804), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(804), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1357), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(1359), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1367), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [626] = { + [sym__statement] = STATE(729), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(804), + [sym_groovy_package] = STATE(804), + [sym__prefix_expression] = STATE(1331), + [sym_annotation] = STATE(1770), + [sym_assertion] = STATE(804), + [sym_assignment] = STATE(804), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(804), + [sym_closure] = STATE(728), + [sym_comment] = STATE(626), + [sym_groovy_doc] = STATE(626), + [sym_declaration] = STATE(804), + [sym_do_while_loop] = STATE(804), + [sym_for_loop] = STATE(804), + [sym_for_in_loop] = STATE(804), + [sym_function_call] = STATE(518), + [sym_function_declaration] = STATE(804), + [sym_function_definition] = STATE(804), + [sym_if_statement] = STATE(804), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(804), + [sym__juxt_function_name] = STATE(1074), + [sym_return] = STATE(804), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(804), + [sym_try_statement] = STATE(804), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2400), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1810), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(804), + [aux_sym_class_definition_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_import] = ACTIONS(109), + [anon_sym_package] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1357), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(125), + [anon_sym_class] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(1359), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(133), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_return] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(1367), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [627] = { + [sym__statement] = STATE(806), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1154), + [sym_annotation] = STATE(1768), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(665), + [sym_comment] = STATE(627), + [sym_groovy_doc] = STATE(627), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(507), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(975), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2361), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1806), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1800), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1237), + [anon_sym_package] = ACTIONS(1239), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1265), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [628] = { + [sym__statement] = STATE(1038), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(1054), + [sym_groovy_package] = STATE(1054), + [sym__prefix_expression] = STATE(1459), + [sym_annotation] = STATE(1767), + [sym_assertion] = STATE(1054), + [sym_assignment] = STATE(1054), + [sym_increment_op] = STATE(1019), + [sym_class_definition] = STATE(1054), + [sym_closure] = STATE(1039), + [sym_comment] = STATE(628), + [sym_groovy_doc] = STATE(628), + [sym_declaration] = STATE(1054), + [sym_do_while_loop] = STATE(1054), + [sym_for_loop] = STATE(1054), + [sym_for_in_loop] = STATE(1054), + [sym_function_call] = STATE(481), + [sym_function_declaration] = STATE(1054), + [sym_function_definition] = STATE(1054), + [sym_if_statement] = STATE(1054), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(1054), + [sym__juxt_function_name] = STATE(1075), + [sym_return] = STATE(1054), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(1054), + [sym_try_statement] = STATE(1054), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2397), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1802), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(1054), + [aux_sym_class_definition_repeat1] = STATE(1799), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(1209), + [anon_sym_package] = ACTIONS(1211), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(814), + [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1215), + [anon_sym_interface] = ACTIONS(1217), + [anon_sym_class] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(822), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1219), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1223), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_try] = ACTIONS(1233), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [629] = { + [sym__statement] = STATE(1002), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(1054), + [sym_groovy_package] = STATE(1054), + [sym__prefix_expression] = STATE(1459), + [sym_annotation] = STATE(1767), + [sym_assertion] = STATE(1054), + [sym_assignment] = STATE(1054), + [sym_increment_op] = STATE(1019), + [sym_class_definition] = STATE(1054), + [sym_closure] = STATE(1003), + [sym_comment] = STATE(629), + [sym_groovy_doc] = STATE(629), + [sym_declaration] = STATE(1054), + [sym_do_while_loop] = STATE(1054), + [sym_for_loop] = STATE(1054), + [sym_for_in_loop] = STATE(1054), + [sym_function_call] = STATE(481), + [sym_function_declaration] = STATE(1054), + [sym_function_definition] = STATE(1054), + [sym_if_statement] = STATE(1054), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(1054), + [sym__juxt_function_name] = STATE(1075), + [sym_return] = STATE(1054), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(1054), + [sym_try_statement] = STATE(1054), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2397), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1802), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(1054), + [aux_sym_class_definition_repeat1] = STATE(1799), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(1209), + [anon_sym_package] = ACTIONS(1211), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(814), + [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1215), + [anon_sym_interface] = ACTIONS(1217), + [anon_sym_class] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(822), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1219), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1223), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_try] = ACTIONS(1233), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [630] = { + [sym__statement] = STATE(774), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(804), + [sym_groovy_package] = STATE(804), + [sym__prefix_expression] = STATE(1258), + [sym_annotation] = STATE(1766), + [sym_assertion] = STATE(804), + [sym_assignment] = STATE(804), + [sym_increment_op] = STATE(735), + [sym_class_definition] = STATE(804), + [sym_closure] = STATE(776), + [sym_comment] = STATE(630), + [sym_groovy_doc] = STATE(630), + [sym_declaration] = STATE(804), + [sym_do_while_loop] = STATE(804), + [sym_for_loop] = STATE(804), + [sym_for_in_loop] = STATE(804), + [sym_function_call] = STATE(516), + [sym_function_declaration] = STATE(804), + [sym_function_definition] = STATE(804), + [sym_if_statement] = STATE(804), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(804), + [sym__juxt_function_name] = STATE(984), + [sym_return] = STATE(804), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(804), + [sym_try_statement] = STATE(804), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2383), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1784), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(804), + [aux_sym_class_definition_repeat1] = STATE(1781), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_import] = ACTIONS(17), + [anon_sym_package] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(29), + [anon_sym_interface] = ACTIONS(31), + [anon_sym_class] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(35), + [anon_sym_do] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_for] = ACTIONS(41), + [anon_sym_if] = ACTIONS(43), + [anon_sym_return] = ACTIONS(47), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_try] = ACTIONS(61), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [631] = { + [sym__statement] = STATE(1250), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(1148), + [sym_groovy_package] = STATE(1148), + [sym__prefix_expression] = STATE(1413), + [sym_annotation] = STATE(1764), + [sym_assertion] = STATE(1148), + [sym_assignment] = STATE(1148), + [sym_increment_op] = STATE(1222), + [sym_class_definition] = STATE(1148), + [sym_closure] = STATE(1275), + [sym_comment] = STATE(631), + [sym_groovy_doc] = STATE(631), + [sym_declaration] = STATE(1148), + [sym_do_while_loop] = STATE(1148), + [sym_for_loop] = STATE(1148), + [sym_for_in_loop] = STATE(1148), + [sym_function_call] = STATE(508), + [sym_function_declaration] = STATE(1148), + [sym_function_definition] = STATE(1148), + [sym_if_statement] = STATE(1148), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(1148), + [sym__juxt_function_name] = STATE(1057), + [sym_return] = STATE(1148), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(1148), + [sym_try_statement] = STATE(1148), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2414), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1801), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(1148), + [aux_sym_class_definition_repeat1] = STATE(1804), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1313), + [anon_sym_continue] = ACTIONS(1313), + [anon_sym_import] = ACTIONS(972), + [anon_sym_package] = ACTIONS(974), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(976), + [anon_sym_PLUS_PLUS] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(936), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(978), + [anon_sym_interface] = ACTIONS(980), + [anon_sym_class] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(944), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(984), + [anon_sym_do] = ACTIONS(986), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_for] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_try] = ACTIONS(1399), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [632] = { + [sym__statement] = STATE(1462), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(1148), + [sym_groovy_package] = STATE(1148), + [sym__prefix_expression] = STATE(1413), + [sym_annotation] = STATE(1764), + [sym_assertion] = STATE(1148), + [sym_assignment] = STATE(1148), + [sym_increment_op] = STATE(1222), + [sym_class_definition] = STATE(1148), + [sym_closure] = STATE(1465), + [sym_comment] = STATE(632), + [sym_groovy_doc] = STATE(632), + [sym_declaration] = STATE(1148), + [sym_do_while_loop] = STATE(1148), + [sym_for_loop] = STATE(1148), + [sym_for_in_loop] = STATE(1148), + [sym_function_call] = STATE(508), + [sym_function_declaration] = STATE(1148), + [sym_function_definition] = STATE(1148), + [sym_if_statement] = STATE(1148), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(1148), + [sym__juxt_function_name] = STATE(1057), + [sym_return] = STATE(1148), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(1148), + [sym_try_statement] = STATE(1148), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2414), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1801), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(1148), + [aux_sym_class_definition_repeat1] = STATE(1804), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1313), + [anon_sym_continue] = ACTIONS(1313), + [anon_sym_import] = ACTIONS(972), + [anon_sym_package] = ACTIONS(974), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(976), + [anon_sym_PLUS_PLUS] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(936), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(978), + [anon_sym_interface] = ACTIONS(980), + [anon_sym_class] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(944), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(984), + [anon_sym_do] = ACTIONS(986), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_for] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_try] = ACTIONS(1399), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [633] = { + [sym__statement] = STATE(660), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1322), + [sym_annotation] = STATE(1765), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(661), + [sym_comment] = STATE(633), + [sym_groovy_doc] = STATE(633), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(488), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(991), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2366), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1790), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1789), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1267), + [anon_sym_package] = ACTIONS(1269), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1349), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1355), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [634] = { + [sym__statement] = STATE(1104), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1322), + [sym_annotation] = STATE(1765), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(663), + [sym_comment] = STATE(634), + [sym_groovy_doc] = STATE(634), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(488), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(991), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2366), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1790), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1789), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1267), + [anon_sym_package] = ACTIONS(1269), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1277), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1281), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1285), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [635] = { + [sym__statement] = STATE(1368), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(1148), + [sym_groovy_package] = STATE(1148), + [sym__prefix_expression] = STATE(1413), + [sym_annotation] = STATE(1764), + [sym_assertion] = STATE(1148), + [sym_assignment] = STATE(1148), + [sym_increment_op] = STATE(1222), + [sym_class_definition] = STATE(1148), + [sym_closure] = STATE(1371), + [sym_comment] = STATE(635), + [sym_groovy_doc] = STATE(635), + [sym_declaration] = STATE(1148), + [sym_do_while_loop] = STATE(1148), + [sym_for_loop] = STATE(1148), + [sym_for_in_loop] = STATE(1148), + [sym_function_call] = STATE(508), + [sym_function_declaration] = STATE(1148), + [sym_function_definition] = STATE(1148), + [sym_if_statement] = STATE(1148), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(1148), + [sym__juxt_function_name] = STATE(1057), + [sym_return] = STATE(1148), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(1148), + [sym_try_statement] = STATE(1148), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2414), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1801), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(1148), + [aux_sym_class_definition_repeat1] = STATE(1804), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1313), + [anon_sym_continue] = ACTIONS(1313), + [anon_sym_import] = ACTIONS(972), + [anon_sym_package] = ACTIONS(974), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(976), + [anon_sym_PLUS_PLUS] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(936), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(978), + [anon_sym_interface] = ACTIONS(980), + [anon_sym_class] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(944), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(984), + [anon_sym_do] = ACTIONS(986), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_for] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_try] = ACTIONS(1399), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [636] = { + [sym__statement] = STATE(702), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1245), + [sym_annotation] = STATE(1769), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(703), + [sym_comment] = STATE(636), + [sym_groovy_doc] = STATE(636), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(1009), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2377), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1775), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_package] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_for] = ACTIONS(1403), + [anon_sym_if] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1407), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [637] = { + [sym__statement] = STATE(700), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1322), + [sym_annotation] = STATE(1765), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(701), + [sym_comment] = STATE(637), + [sym_groovy_doc] = STATE(637), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(488), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(991), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2366), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1790), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1789), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1267), + [anon_sym_package] = ACTIONS(1269), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1277), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1281), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1285), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [638] = { + [sym__statement] = STATE(660), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1245), + [sym_annotation] = STATE(1769), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(661), + [sym_comment] = STATE(638), + [sym_groovy_doc] = STATE(638), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(1009), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2377), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1775), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_package] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_for] = ACTIONS(1403), + [anon_sym_if] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1407), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [639] = { + [sym__statement] = STATE(700), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1245), + [sym_annotation] = STATE(1769), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(701), + [sym_comment] = STATE(639), + [sym_groovy_doc] = STATE(639), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(1009), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2377), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1775), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_package] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_for] = ACTIONS(1403), + [anon_sym_if] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1407), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [640] = { + [sym__statement] = STATE(2215), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1245), + [sym_annotation] = STATE(1769), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(663), + [sym_comment] = STATE(640), + [sym_groovy_doc] = STATE(640), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(865), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(1009), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2377), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1775), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_package] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [641] = { + [sym__statement] = STATE(660), + [sym_dotted_identifier] = STATE(1230), + [sym_groovy_import] = STATE(678), + [sym_groovy_package] = STATE(678), + [sym__prefix_expression] = STATE(1322), + [sym_annotation] = STATE(1765), + [sym_assertion] = STATE(678), + [sym_assignment] = STATE(678), + [sym_increment_op] = STATE(693), + [sym_class_definition] = STATE(678), + [sym_closure] = STATE(661), + [sym_comment] = STATE(641), + [sym_groovy_doc] = STATE(641), + [sym_declaration] = STATE(678), + [sym_do_while_loop] = STATE(678), + [sym_for_loop] = STATE(678), + [sym_for_in_loop] = STATE(678), + [sym_function_call] = STATE(488), + [sym_function_declaration] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_index] = STATE(1230), + [sym_juxt_function_call] = STATE(678), + [sym__juxt_function_name] = STATE(991), + [sym_return] = STATE(678), + [sym_string] = STATE(1230), + [sym__plain_string] = STATE(1285), + [sym__interpolate_string] = STATE(1285), + [sym_switch_statement] = STATE(678), + [sym_try_statement] = STATE(678), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2366), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1790), + [sym_modifier] = STATE(1898), + [sym_type_with_generics] = STATE(2355), + [sym_while_loop] = STATE(678), + [aux_sym_class_definition_repeat1] = STATE(1789), + [sym_identifier] = ACTIONS(11), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1267), + [anon_sym_package] = ACTIONS(1269), + [anon_sym_AT] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_ATinterface] = ACTIONS(1245), + [anon_sym_interface] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1277), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1281), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(55), + [anon_sym_DOLLAR_SLASH] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1285), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_static] = ACTIONS(67), + [anon_sym_final] = ACTIONS(67), + [anon_sym_synchronized] = ACTIONS(67), + }, + [642] = { + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(1068), + [sym__prefix_expression] = STATE(2032), + [sym_annotation] = STATE(1772), + [sym_increment_op] = STATE(911), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_closure] = STATE(911), + [sym_comment] = STATE(642), + [sym_groovy_doc] = STATE(642), + [sym_declaration] = STATE(2720), + [sym__expression] = STATE(1650), + [sym_function_call] = STATE(1068), + [sym_index] = STATE(1068), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_string] = STATE(1068), + [sym__plain_string] = STATE(981), + [sym__interpolate_string] = STATE(981), + [sym_ternary_op] = STATE(911), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2362), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1813), + [sym_modifier] = STATE(1911), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [aux_sym_class_definition_repeat1] = STATE(1816), + [sym_identifier] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(1415), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(1417), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1419), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(1421), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1423), + [anon_sym_DQUOTE] = ACTIONS(1425), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1427), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1429), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(1431), + [anon_sym_protected] = ACTIONS(1431), + [anon_sym_private] = ACTIONS(1431), + [anon_sym_static] = ACTIONS(1433), + [anon_sym_final] = ACTIONS(1433), + [anon_sym_synchronized] = ACTIONS(1433), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [643] = { + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(1068), + [sym__prefix_expression] = STATE(2032), + [sym_annotation] = STATE(1772), + [sym_increment_op] = STATE(911), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_closure] = STATE(911), + [sym_comment] = STATE(643), + [sym_groovy_doc] = STATE(643), + [sym_declaration] = STATE(2686), + [sym__expression] = STATE(1570), + [sym_function_call] = STATE(1068), + [sym_index] = STATE(1068), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_string] = STATE(1068), + [sym__plain_string] = STATE(981), + [sym__interpolate_string] = STATE(981), + [sym_ternary_op] = STATE(911), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2362), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1813), + [sym_modifier] = STATE(1911), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [aux_sym_class_definition_repeat1] = STATE(1816), + [sym_identifier] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(1415), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(1417), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1419), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(1421), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1423), + [anon_sym_DQUOTE] = ACTIONS(1425), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1427), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1429), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(1431), + [anon_sym_protected] = ACTIONS(1431), + [anon_sym_private] = ACTIONS(1431), + [anon_sym_static] = ACTIONS(1433), + [anon_sym_final] = ACTIONS(1433), + [anon_sym_synchronized] = ACTIONS(1433), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [644] = { + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(1068), + [sym__prefix_expression] = STATE(2032), + [sym_annotation] = STATE(1772), + [sym_increment_op] = STATE(911), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_closure] = STATE(911), + [sym_comment] = STATE(644), + [sym_groovy_doc] = STATE(644), + [sym_declaration] = STATE(2683), + [sym__expression] = STATE(1634), + [sym_function_call] = STATE(1068), + [sym_index] = STATE(1068), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_string] = STATE(1068), + [sym__plain_string] = STATE(981), + [sym__interpolate_string] = STATE(981), + [sym_ternary_op] = STATE(911), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2362), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1813), + [sym_modifier] = STATE(1911), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [aux_sym_class_definition_repeat1] = STATE(1816), + [sym_identifier] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(1415), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(1417), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1419), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(1421), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1423), + [anon_sym_DQUOTE] = ACTIONS(1425), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1427), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1429), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(1431), + [anon_sym_protected] = ACTIONS(1431), + [anon_sym_private] = ACTIONS(1431), + [anon_sym_static] = ACTIONS(1433), + [anon_sym_final] = ACTIONS(1433), + [anon_sym_synchronized] = ACTIONS(1433), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [645] = { + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(1068), + [sym__prefix_expression] = STATE(2032), + [sym_annotation] = STATE(1772), + [sym_increment_op] = STATE(911), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_closure] = STATE(911), + [sym_comment] = STATE(645), + [sym_groovy_doc] = STATE(645), + [sym_declaration] = STATE(2654), + [sym__expression] = STATE(1695), + [sym_function_call] = STATE(1068), + [sym_index] = STATE(1068), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_string] = STATE(1068), + [sym__plain_string] = STATE(981), + [sym__interpolate_string] = STATE(981), + [sym_ternary_op] = STATE(911), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2362), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1813), + [sym_modifier] = STATE(1911), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [aux_sym_class_definition_repeat1] = STATE(1816), + [sym_identifier] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(1415), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(1417), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1419), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(1421), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1423), + [anon_sym_DQUOTE] = ACTIONS(1425), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1427), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1429), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(1431), + [anon_sym_protected] = ACTIONS(1431), + [anon_sym_private] = ACTIONS(1431), + [anon_sym_static] = ACTIONS(1433), + [anon_sym_final] = ACTIONS(1433), + [anon_sym_synchronized] = ACTIONS(1433), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [646] = { + [sym_access_op] = STATE(911), + [sym_dotted_identifier] = STATE(1068), + [sym__prefix_expression] = STATE(2032), + [sym_annotation] = STATE(1772), + [sym_increment_op] = STATE(911), + [sym_binary_op] = STATE(911), + [sym_boolean_literal] = STATE(911), + [sym_closure] = STATE(911), + [sym_comment] = STATE(646), + [sym_groovy_doc] = STATE(646), + [sym_declaration] = STATE(2696), + [sym__expression] = STATE(1588), + [sym_function_call] = STATE(1068), + [sym_index] = STATE(1068), + [sym_list] = STATE(911), + [sym_map] = STATE(911), + [sym_number_literal] = STATE(911), + [sym_string] = STATE(1068), + [sym__plain_string] = STATE(981), + [sym__interpolate_string] = STATE(981), + [sym_ternary_op] = STATE(911), + [sym_builtintype] = STATE(2355), + [sym__type] = STATE(2362), + [sym_array_type] = STATE(2355), + [sym_access_modifier] = STATE(1813), + [sym_modifier] = STATE(1911), + [sym_type_with_generics] = STATE(2355), + [sym_unary_op] = STATE(911), + [aux_sym_class_definition_repeat1] = STATE(1816), + [sym_identifier] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_STAR_COLON] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(1415), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_true] = ACTIONS(121), + [anon_sym_false] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(1417), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1419), + [anon_sym_this] = ACTIONS(135), + [anon_sym_null] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(145), + [aux_sym_number_literal_token1] = ACTIONS(147), + [aux_sym_number_literal_token2] = ACTIONS(149), + [aux_sym_number_literal_token3] = ACTIONS(149), + [aux_sym_number_literal_token4] = ACTIONS(147), + [aux_sym_number_literal_token5] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(1421), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1423), + [anon_sym_DQUOTE] = ACTIONS(1425), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1427), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1429), + [anon_sym_int] = ACTIONS(63), + [anon_sym_boolean] = ACTIONS(63), + [anon_sym_char] = ACTIONS(63), + [anon_sym_short] = ACTIONS(63), + [anon_sym_long] = ACTIONS(63), + [anon_sym_float] = ACTIONS(63), + [anon_sym_double] = ACTIONS(63), + [anon_sym_void] = ACTIONS(63), + [anon_sym_public] = ACTIONS(1431), + [anon_sym_protected] = ACTIONS(1431), + [anon_sym_private] = ACTIONS(1431), + [anon_sym_static] = ACTIONS(1433), + [anon_sym_final] = ACTIONS(1433), + [anon_sym_synchronized] = ACTIONS(1433), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_new] = ACTIONS(167), + }, + [647] = { + [sym_closure] = STATE(668), + [sym_comment] = STATE(647), + [sym_groovy_doc] = STATE(647), + [ts_builtin_sym_end] = ACTIONS(1435), + [sym_identifier] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_STAR_COLON] = ACTIONS(1435), + [anon_sym_import] = ACTIONS(1437), + [anon_sym_package] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1437), + [anon_sym_assert] = ACTIONS(1437), + [anon_sym_PLUS_PLUS] = ACTIONS(1435), + [anon_sym_DASH_DASH] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [anon_sym_ATinterface] = ACTIONS(1435), + [anon_sym_interface] = ACTIONS(1437), + [anon_sym_class] = ACTIONS(1437), + [anon_sym_COMMA] = ACTIONS(1435), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1435), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1437), + [anon_sym_this] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_RPAREN] = ACTIONS(1435), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_else] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1435), + [aux_sym_number_literal_token1] = ACTIONS(1437), + [aux_sym_number_literal_token2] = ACTIONS(1435), + [aux_sym_number_literal_token3] = ACTIONS(1435), + [aux_sym_number_literal_token4] = ACTIONS(1437), + [aux_sym_number_literal_token5] = ACTIONS(1435), + [anon_sym_pipeline] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_SQUOTE] = ACTIONS(1437), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1435), + [anon_sym_DQUOTE] = ACTIONS(1437), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1435), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1435), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_try] = ACTIONS(1437), + [anon_sym_catch] = ACTIONS(1437), + [anon_sym_finally] = ACTIONS(1437), + [anon_sym_int] = ACTIONS(1437), + [anon_sym_boolean] = ACTIONS(1437), + [anon_sym_char] = ACTIONS(1437), + [anon_sym_short] = ACTIONS(1437), + [anon_sym_long] = ACTIONS(1437), + [anon_sym_float] = ACTIONS(1437), + [anon_sym_double] = ACTIONS(1437), + [anon_sym_void] = ACTIONS(1437), + [anon_sym_public] = ACTIONS(1437), + [anon_sym_protected] = ACTIONS(1437), + [anon_sym_private] = ACTIONS(1437), + [anon_sym_static] = ACTIONS(1437), + [anon_sym_final] = ACTIONS(1437), + [anon_sym_synchronized] = ACTIONS(1437), + [anon_sym_TILDE] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_new] = ACTIONS(1437), + }, + [648] = { + [sym_closure] = STATE(710), + [sym_comment] = STATE(648), + [sym_groovy_doc] = STATE(648), + [ts_builtin_sym_end] = ACTIONS(1439), + [sym_identifier] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_STAR_COLON] = ACTIONS(1439), + [anon_sym_import] = ACTIONS(1441), + [anon_sym_package] = ACTIONS(1441), + [anon_sym_AT] = ACTIONS(1441), + [anon_sym_assert] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_SLASH] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [anon_sym_ATinterface] = ACTIONS(1439), + [anon_sym_interface] = ACTIONS(1441), + [anon_sym_class] = ACTIONS(1441), + [anon_sym_COMMA] = ACTIONS(1439), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1439), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1441), + [anon_sym_this] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_RPAREN] = ACTIONS(1439), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_else] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1439), + [aux_sym_number_literal_token1] = ACTIONS(1441), + [aux_sym_number_literal_token2] = ACTIONS(1439), + [aux_sym_number_literal_token3] = ACTIONS(1439), + [aux_sym_number_literal_token4] = ACTIONS(1441), + [aux_sym_number_literal_token5] = ACTIONS(1439), + [anon_sym_pipeline] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_SQUOTE] = ACTIONS(1441), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1439), + [anon_sym_DQUOTE] = ACTIONS(1441), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1439), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1439), + [anon_sym_switch] = ACTIONS(1441), + [anon_sym_try] = ACTIONS(1441), + [anon_sym_catch] = ACTIONS(1441), + [anon_sym_finally] = ACTIONS(1441), + [anon_sym_int] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_char] = ACTIONS(1441), + [anon_sym_short] = ACTIONS(1441), + [anon_sym_long] = ACTIONS(1441), + [anon_sym_float] = ACTIONS(1441), + [anon_sym_double] = ACTIONS(1441), + [anon_sym_void] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_final] = ACTIONS(1441), + [anon_sym_synchronized] = ACTIONS(1441), + [anon_sym_TILDE] = ACTIONS(1439), + [anon_sym_BANG] = ACTIONS(1439), + [anon_sym_new] = ACTIONS(1441), + }, + [649] = { + [sym_comment] = STATE(649), + [sym_groovy_doc] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(1443), + [sym_identifier] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_STAR_COLON] = ACTIONS(1443), + [anon_sym_DOT] = ACTIONS(97), + [anon_sym_import] = ACTIONS(1445), + [anon_sym_DOT_STAR] = ACTIONS(1447), + [anon_sym_as] = ACTIONS(1449), + [anon_sym_package] = ACTIONS(1445), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_assert] = ACTIONS(1445), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1445), + [anon_sym_false] = ACTIONS(1445), + [anon_sym_ATinterface] = ACTIONS(1443), + [anon_sym_interface] = ACTIONS(1445), + [anon_sym_class] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_RBRACE] = ACTIONS(1443), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1445), + [anon_sym_this] = ACTIONS(1445), + [anon_sym_null] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_else] = ACTIONS(1445), + [anon_sym_LBRACK] = ACTIONS(101), + [aux_sym_number_literal_token1] = ACTIONS(1445), + [aux_sym_number_literal_token2] = ACTIONS(1443), + [aux_sym_number_literal_token3] = ACTIONS(1443), + [aux_sym_number_literal_token4] = ACTIONS(1445), + [aux_sym_number_literal_token5] = ACTIONS(1443), + [anon_sym_pipeline] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(1445), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1443), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1443), + [anon_sym_switch] = ACTIONS(1445), + [anon_sym_try] = ACTIONS(1445), + [anon_sym_catch] = ACTIONS(1445), + [anon_sym_finally] = ACTIONS(1445), + [anon_sym_int] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_char] = ACTIONS(1445), + [anon_sym_short] = ACTIONS(1445), + [anon_sym_long] = ACTIONS(1445), + [anon_sym_float] = ACTIONS(1445), + [anon_sym_double] = ACTIONS(1445), + [anon_sym_void] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_final] = ACTIONS(1445), + [anon_sym_synchronized] = ACTIONS(1445), + [anon_sym_TILDE] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_new] = ACTIONS(1445), + }, + [650] = { + [sym_comment] = STATE(650), + [sym_groovy_doc] = STATE(650), + [ts_builtin_sym_end] = ACTIONS(1451), + [sym_identifier] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_STAR] = ACTIONS(1453), + [anon_sym_STAR_COLON] = ACTIONS(1451), + [anon_sym_DOT] = ACTIONS(97), + [anon_sym_import] = ACTIONS(1453), + [anon_sym_DOT_STAR] = ACTIONS(1455), + [anon_sym_as] = ACTIONS(1457), + [anon_sym_package] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1453), + [anon_sym_assert] = ACTIONS(1453), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [anon_sym_ATinterface] = ACTIONS(1451), + [anon_sym_interface] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1451), + [anon_sym_RBRACE] = ACTIONS(1451), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1453), + [anon_sym_this] = ACTIONS(1453), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_else] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(101), + [aux_sym_number_literal_token1] = ACTIONS(1453), + [aux_sym_number_literal_token2] = ACTIONS(1451), + [aux_sym_number_literal_token3] = ACTIONS(1451), + [aux_sym_number_literal_token4] = ACTIONS(1453), + [aux_sym_number_literal_token5] = ACTIONS(1451), + [anon_sym_pipeline] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_SQUOTE] = ACTIONS(1453), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1451), + [anon_sym_DQUOTE] = ACTIONS(1453), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1451), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1451), + [anon_sym_switch] = ACTIONS(1453), + [anon_sym_try] = ACTIONS(1453), + [anon_sym_catch] = ACTIONS(1453), + [anon_sym_finally] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_boolean] = ACTIONS(1453), + [anon_sym_char] = ACTIONS(1453), + [anon_sym_short] = ACTIONS(1453), + [anon_sym_long] = ACTIONS(1453), + [anon_sym_float] = ACTIONS(1453), + [anon_sym_double] = ACTIONS(1453), + [anon_sym_void] = ACTIONS(1453), + [anon_sym_public] = ACTIONS(1453), + [anon_sym_protected] = ACTIONS(1453), + [anon_sym_private] = ACTIONS(1453), + [anon_sym_static] = ACTIONS(1453), + [anon_sym_final] = ACTIONS(1453), + [anon_sym_synchronized] = ACTIONS(1453), + [anon_sym_TILDE] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_new] = ACTIONS(1453), + }, + [651] = { + [sym_closure] = STATE(695), + [sym_comment] = STATE(651), + [sym_groovy_doc] = STATE(651), + [ts_builtin_sym_end] = ACTIONS(1459), + [sym_identifier] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1461), + [anon_sym_STAR_COLON] = ACTIONS(1459), + [anon_sym_import] = ACTIONS(1461), + [anon_sym_package] = ACTIONS(1461), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_assert] = ACTIONS(1461), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [anon_sym_SLASH] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [anon_sym_ATinterface] = ACTIONS(1459), + [anon_sym_interface] = ACTIONS(1461), + [anon_sym_class] = ACTIONS(1461), + [anon_sym_COMMA] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1459), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1461), + [anon_sym_this] = ACTIONS(1461), + [anon_sym_null] = ACTIONS(1461), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_RPAREN] = ACTIONS(1459), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_else] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(1459), + [aux_sym_number_literal_token1] = ACTIONS(1461), + [aux_sym_number_literal_token2] = ACTIONS(1459), + [aux_sym_number_literal_token3] = ACTIONS(1459), + [aux_sym_number_literal_token4] = ACTIONS(1461), + [aux_sym_number_literal_token5] = ACTIONS(1459), + [anon_sym_pipeline] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_SQUOTE] = ACTIONS(1461), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1461), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1459), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1459), + [anon_sym_switch] = ACTIONS(1461), + [anon_sym_try] = ACTIONS(1461), + [anon_sym_catch] = ACTIONS(1461), + [anon_sym_finally] = ACTIONS(1461), + [anon_sym_int] = ACTIONS(1461), + [anon_sym_boolean] = ACTIONS(1461), + [anon_sym_char] = ACTIONS(1461), + [anon_sym_short] = ACTIONS(1461), + [anon_sym_long] = ACTIONS(1461), + [anon_sym_float] = ACTIONS(1461), + [anon_sym_double] = ACTIONS(1461), + [anon_sym_void] = ACTIONS(1461), + [anon_sym_public] = ACTIONS(1461), + [anon_sym_protected] = ACTIONS(1461), + [anon_sym_private] = ACTIONS(1461), + [anon_sym_static] = ACTIONS(1461), + [anon_sym_final] = ACTIONS(1461), + [anon_sym_synchronized] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_new] = ACTIONS(1461), + }, + [652] = { + [sym_closure] = STATE(692), + [sym_comment] = STATE(652), + [sym_groovy_doc] = STATE(652), + [ts_builtin_sym_end] = ACTIONS(1463), + [sym_identifier] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_STAR] = ACTIONS(1465), + [anon_sym_STAR_COLON] = ACTIONS(1463), + [anon_sym_import] = ACTIONS(1465), + [anon_sym_package] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(1465), + [anon_sym_assert] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1463), + [anon_sym_DASH_DASH] = ACTIONS(1463), + [anon_sym_SLASH] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(1465), + [anon_sym_false] = ACTIONS(1465), + [anon_sym_ATinterface] = ACTIONS(1463), + [anon_sym_interface] = ACTIONS(1465), + [anon_sym_class] = ACTIONS(1465), + [anon_sym_COMMA] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1463), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1465), + [anon_sym_this] = ACTIONS(1465), + [anon_sym_null] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_RPAREN] = ACTIONS(1463), + [anon_sym_do] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_else] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1463), + [aux_sym_number_literal_token1] = ACTIONS(1465), + [aux_sym_number_literal_token2] = ACTIONS(1463), + [aux_sym_number_literal_token3] = ACTIONS(1463), + [aux_sym_number_literal_token4] = ACTIONS(1465), + [aux_sym_number_literal_token5] = ACTIONS(1463), + [anon_sym_pipeline] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_SQUOTE] = ACTIONS(1465), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1465), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1463), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1463), + [anon_sym_switch] = ACTIONS(1465), + [anon_sym_try] = ACTIONS(1465), + [anon_sym_catch] = ACTIONS(1465), + [anon_sym_finally] = ACTIONS(1465), + [anon_sym_int] = ACTIONS(1465), + [anon_sym_boolean] = ACTIONS(1465), + [anon_sym_char] = ACTIONS(1465), + [anon_sym_short] = ACTIONS(1465), + [anon_sym_long] = ACTIONS(1465), + [anon_sym_float] = ACTIONS(1465), + [anon_sym_double] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_public] = ACTIONS(1465), + [anon_sym_protected] = ACTIONS(1465), + [anon_sym_private] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1465), + [anon_sym_final] = ACTIONS(1465), + [anon_sym_synchronized] = ACTIONS(1465), + [anon_sym_TILDE] = ACTIONS(1463), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_new] = ACTIONS(1465), + }, + [653] = { + [sym_comment] = STATE(653), + [sym_groovy_doc] = STATE(653), + [ts_builtin_sym_end] = ACTIONS(1467), + [sym_identifier] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1469), + [anon_sym_STAR_COLON] = ACTIONS(1467), + [anon_sym_DOT] = ACTIONS(101), + [anon_sym_import] = ACTIONS(1469), + [anon_sym_package] = ACTIONS(1469), + [anon_sym_AT] = ACTIONS(1469), + [anon_sym_assert] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_DASH_DASH] = ACTIONS(1467), + [anon_sym_SLASH] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [anon_sym_ATinterface] = ACTIONS(1467), + [anon_sym_interface] = ACTIONS(1469), + [anon_sym_class] = ACTIONS(1469), + [anon_sym_COMMA] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1467), + [anon_sym_RBRACE] = ACTIONS(1467), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1469), + [anon_sym_null] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_RPAREN] = ACTIONS(1467), + [anon_sym_do] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_else] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(101), + [aux_sym_number_literal_token1] = ACTIONS(1469), + [aux_sym_number_literal_token2] = ACTIONS(1467), + [aux_sym_number_literal_token3] = ACTIONS(1467), + [aux_sym_number_literal_token4] = ACTIONS(1469), + [aux_sym_number_literal_token5] = ACTIONS(1467), + [anon_sym_pipeline] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_SQUOTE] = ACTIONS(1469), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1469), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1467), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1467), + [anon_sym_switch] = ACTIONS(1469), + [anon_sym_try] = ACTIONS(1469), + [anon_sym_catch] = ACTIONS(1469), + [anon_sym_finally] = ACTIONS(1469), + [anon_sym_int] = ACTIONS(1469), + [anon_sym_boolean] = ACTIONS(1469), + [anon_sym_char] = ACTIONS(1469), + [anon_sym_short] = ACTIONS(1469), + [anon_sym_long] = ACTIONS(1469), + [anon_sym_float] = ACTIONS(1469), + [anon_sym_double] = ACTIONS(1469), + [anon_sym_void] = ACTIONS(1469), + [anon_sym_public] = ACTIONS(1469), + [anon_sym_protected] = ACTIONS(1469), + [anon_sym_private] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1469), + [anon_sym_final] = ACTIONS(1469), + [anon_sym_synchronized] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1467), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_new] = ACTIONS(1469), + }, + [654] = { + [sym_comment] = STATE(654), + [sym_groovy_doc] = STATE(654), + [ts_builtin_sym_end] = ACTIONS(101), + [sym_identifier] = ACTIONS(97), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(101), + [anon_sym_STAR] = ACTIONS(97), + [anon_sym_STAR_COLON] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(101), + [anon_sym_import] = ACTIONS(97), + [anon_sym_package] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_assert] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(97), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_true] = ACTIONS(97), + [anon_sym_false] = ACTIONS(97), + [anon_sym_ATinterface] = ACTIONS(101), + [anon_sym_interface] = ACTIONS(97), + [anon_sym_class] = ACTIONS(97), + [anon_sym_COMMA] = ACTIONS(101), + [anon_sym_LBRACE] = ACTIONS(101), + [anon_sym_RBRACE] = ACTIONS(101), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(97), + [anon_sym_this] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_RPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(97), + [anon_sym_while] = ACTIONS(97), + [anon_sym_for] = ACTIONS(97), + [anon_sym_if] = ACTIONS(97), + [anon_sym_else] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(101), + [aux_sym_number_literal_token1] = ACTIONS(97), + [aux_sym_number_literal_token2] = ACTIONS(101), + [aux_sym_number_literal_token3] = ACTIONS(101), + [aux_sym_number_literal_token4] = ACTIONS(97), + [aux_sym_number_literal_token5] = ACTIONS(101), + [anon_sym_pipeline] = ACTIONS(97), + [anon_sym_return] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(101), + [anon_sym_DOLLAR_SLASH] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(97), + [anon_sym_try] = ACTIONS(97), + [anon_sym_catch] = ACTIONS(97), + [anon_sym_finally] = ACTIONS(97), + [anon_sym_int] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_char] = ACTIONS(97), + [anon_sym_short] = ACTIONS(97), + [anon_sym_long] = ACTIONS(97), + [anon_sym_float] = ACTIONS(97), + [anon_sym_double] = ACTIONS(97), + [anon_sym_void] = ACTIONS(97), + [anon_sym_public] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_static] = ACTIONS(97), + [anon_sym_final] = ACTIONS(97), + [anon_sym_synchronized] = ACTIONS(97), + [anon_sym_TILDE] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_new] = ACTIONS(97), + }, + [655] = { + [sym_comment] = STATE(655), + [sym_groovy_doc] = STATE(655), + [ts_builtin_sym_end] = ACTIONS(1471), + [sym_identifier] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_STAR_COLON] = ACTIONS(1471), + [anon_sym_import] = ACTIONS(1473), + [anon_sym_package] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_assert] = ACTIONS(1473), + [anon_sym_PLUS_PLUS] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_ATinterface] = ACTIONS(1471), + [anon_sym_interface] = ACTIONS(1473), + [anon_sym_class] = ACTIONS(1473), + [anon_sym_COMMA] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1471), + [anon_sym_RBRACE] = ACTIONS(1471), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1473), + [anon_sym_this] = ACTIONS(1473), + [anon_sym_null] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_RPAREN] = ACTIONS(1471), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_else] = ACTIONS(1473), + [anon_sym_LBRACK] = ACTIONS(1471), + [aux_sym_number_literal_token1] = ACTIONS(1473), + [aux_sym_number_literal_token2] = ACTIONS(1471), + [aux_sym_number_literal_token3] = ACTIONS(1471), + [aux_sym_number_literal_token4] = ACTIONS(1473), + [aux_sym_number_literal_token5] = ACTIONS(1471), + [anon_sym_pipeline] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_SQUOTE] = ACTIONS(1473), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1473), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1471), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1473), + [anon_sym_try] = ACTIONS(1473), + [anon_sym_catch] = ACTIONS(1473), + [anon_sym_finally] = ACTIONS(1473), + [anon_sym_int] = ACTIONS(1473), + [anon_sym_boolean] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_float] = ACTIONS(1473), + [anon_sym_double] = ACTIONS(1473), + [anon_sym_void] = ACTIONS(1473), + [anon_sym_public] = ACTIONS(1473), + [anon_sym_protected] = ACTIONS(1473), + [anon_sym_private] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_final] = ACTIONS(1473), + [anon_sym_synchronized] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_new] = ACTIONS(1473), + }, + [656] = { + [sym_comment] = STATE(656), + [sym_groovy_doc] = STATE(656), + [ts_builtin_sym_end] = ACTIONS(1475), + [sym_identifier] = ACTIONS(1477), + [anon_sym_break] = ACTIONS(1477), + [anon_sym_continue] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_STAR_COLON] = ACTIONS(1475), + [anon_sym_import] = ACTIONS(1477), + [anon_sym_package] = ACTIONS(1477), + [anon_sym_AT] = ACTIONS(1477), + [anon_sym_assert] = ACTIONS(1477), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_SLASH] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), + [anon_sym_ATinterface] = ACTIONS(1475), + [anon_sym_interface] = ACTIONS(1477), + [anon_sym_class] = ACTIONS(1477), + [anon_sym_COMMA] = ACTIONS(1475), + [anon_sym_LBRACE] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1477), + [anon_sym_this] = ACTIONS(1477), + [anon_sym_null] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_do] = ACTIONS(1477), + [anon_sym_while] = ACTIONS(1477), + [anon_sym_for] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_else] = ACTIONS(1477), + [anon_sym_LBRACK] = ACTIONS(1475), + [aux_sym_number_literal_token1] = ACTIONS(1477), + [aux_sym_number_literal_token2] = ACTIONS(1475), + [aux_sym_number_literal_token3] = ACTIONS(1475), + [aux_sym_number_literal_token4] = ACTIONS(1477), + [aux_sym_number_literal_token5] = ACTIONS(1475), + [anon_sym_pipeline] = ACTIONS(1477), + [anon_sym_return] = ACTIONS(1477), + [anon_sym_SQUOTE] = ACTIONS(1477), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1475), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1475), + [anon_sym_switch] = ACTIONS(1477), + [anon_sym_try] = ACTIONS(1477), + [anon_sym_catch] = ACTIONS(1477), + [anon_sym_finally] = ACTIONS(1477), + [anon_sym_int] = ACTIONS(1477), + [anon_sym_boolean] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_short] = ACTIONS(1477), + [anon_sym_long] = ACTIONS(1477), + [anon_sym_float] = ACTIONS(1477), + [anon_sym_double] = ACTIONS(1477), + [anon_sym_void] = ACTIONS(1477), + [anon_sym_public] = ACTIONS(1477), + [anon_sym_protected] = ACTIONS(1477), + [anon_sym_private] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1477), + [anon_sym_final] = ACTIONS(1477), + [anon_sym_synchronized] = ACTIONS(1477), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_new] = ACTIONS(1477), + }, + [657] = { + [sym_comment] = STATE(657), + [sym_groovy_doc] = STATE(657), + [ts_builtin_sym_end] = ACTIONS(1479), + [sym_identifier] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1481), + [anon_sym_continue] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_STAR_COLON] = ACTIONS(1479), + [anon_sym_import] = ACTIONS(1481), + [anon_sym_package] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_assert] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1479), + [anon_sym_DASH_DASH] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [anon_sym_ATinterface] = ACTIONS(1479), + [anon_sym_interface] = ACTIONS(1481), + [anon_sym_class] = ACTIONS(1481), + [anon_sym_COMMA] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1479), + [anon_sym_RBRACE] = ACTIONS(1479), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1481), + [anon_sym_this] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_RPAREN] = ACTIONS(1479), + [anon_sym_do] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1481), + [anon_sym_for] = ACTIONS(1481), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_else] = ACTIONS(1481), + [anon_sym_LBRACK] = ACTIONS(1479), + [aux_sym_number_literal_token1] = ACTIONS(1481), + [aux_sym_number_literal_token2] = ACTIONS(1479), + [aux_sym_number_literal_token3] = ACTIONS(1479), + [aux_sym_number_literal_token4] = ACTIONS(1481), + [aux_sym_number_literal_token5] = ACTIONS(1479), + [anon_sym_pipeline] = ACTIONS(1481), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_SQUOTE] = ACTIONS(1481), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1481), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1479), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1479), + [anon_sym_switch] = ACTIONS(1481), + [anon_sym_try] = ACTIONS(1481), + [anon_sym_catch] = ACTIONS(1481), + [anon_sym_finally] = ACTIONS(1481), + [anon_sym_int] = ACTIONS(1481), + [anon_sym_boolean] = ACTIONS(1481), + [anon_sym_char] = ACTIONS(1481), + [anon_sym_short] = ACTIONS(1481), + [anon_sym_long] = ACTIONS(1481), + [anon_sym_float] = ACTIONS(1481), + [anon_sym_double] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_public] = ACTIONS(1481), + [anon_sym_protected] = ACTIONS(1481), + [anon_sym_private] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1481), + [anon_sym_final] = ACTIONS(1481), + [anon_sym_synchronized] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_new] = ACTIONS(1481), + }, + [658] = { + [sym_comment] = STATE(658), + [sym_groovy_doc] = STATE(658), + [ts_builtin_sym_end] = ACTIONS(419), + [sym_identifier] = ACTIONS(417), + [anon_sym_break] = ACTIONS(417), + [anon_sym_continue] = ACTIONS(417), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_STAR] = ACTIONS(417), + [anon_sym_STAR_COLON] = ACTIONS(419), + [anon_sym_import] = ACTIONS(417), + [anon_sym_package] = ACTIONS(417), + [anon_sym_AT] = ACTIONS(417), + [anon_sym_assert] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(417), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(417), + [anon_sym_true] = ACTIONS(417), + [anon_sym_false] = ACTIONS(417), + [anon_sym_ATinterface] = ACTIONS(419), + [anon_sym_interface] = ACTIONS(417), + [anon_sym_class] = ACTIONS(417), + [anon_sym_COMMA] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(419), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(417), + [anon_sym_this] = ACTIONS(417), + [anon_sym_null] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(419), + [anon_sym_RPAREN] = ACTIONS(419), + [anon_sym_do] = ACTIONS(417), + [anon_sym_while] = ACTIONS(417), + [anon_sym_for] = ACTIONS(417), + [anon_sym_if] = ACTIONS(417), + [anon_sym_else] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [aux_sym_number_literal_token1] = ACTIONS(417), + [aux_sym_number_literal_token2] = ACTIONS(419), + [aux_sym_number_literal_token3] = ACTIONS(419), + [aux_sym_number_literal_token4] = ACTIONS(417), + [aux_sym_number_literal_token5] = ACTIONS(419), + [anon_sym_pipeline] = ACTIONS(417), + [anon_sym_return] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(419), + [anon_sym_DQUOTE] = ACTIONS(417), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(419), + [anon_sym_DOLLAR_SLASH] = ACTIONS(419), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_try] = ACTIONS(417), + [anon_sym_catch] = ACTIONS(417), + [anon_sym_finally] = ACTIONS(417), + [anon_sym_int] = ACTIONS(417), + [anon_sym_boolean] = ACTIONS(417), + [anon_sym_char] = ACTIONS(417), + [anon_sym_short] = ACTIONS(417), + [anon_sym_long] = ACTIONS(417), + [anon_sym_float] = ACTIONS(417), + [anon_sym_double] = ACTIONS(417), + [anon_sym_void] = ACTIONS(417), + [anon_sym_public] = ACTIONS(417), + [anon_sym_protected] = ACTIONS(417), + [anon_sym_private] = ACTIONS(417), + [anon_sym_static] = ACTIONS(417), + [anon_sym_final] = ACTIONS(417), + [anon_sym_synchronized] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(419), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_new] = ACTIONS(417), + }, + [659] = { + [sym_comment] = STATE(659), + [sym_groovy_doc] = STATE(659), + [ts_builtin_sym_end] = ACTIONS(1483), + [sym_identifier] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(1485), + [anon_sym_STAR_COLON] = ACTIONS(1483), + [anon_sym_import] = ACTIONS(1485), + [anon_sym_package] = ACTIONS(1485), + [anon_sym_AT] = ACTIONS(1485), + [anon_sym_assert] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [anon_sym_ATinterface] = ACTIONS(1483), + [anon_sym_interface] = ACTIONS(1485), + [anon_sym_class] = ACTIONS(1485), + [anon_sym_COMMA] = ACTIONS(1483), + [anon_sym_LBRACE] = ACTIONS(1483), + [anon_sym_RBRACE] = ACTIONS(1483), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1485), + [anon_sym_null] = ACTIONS(1485), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_RPAREN] = ACTIONS(1483), + [anon_sym_do] = ACTIONS(1485), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_else] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1483), + [aux_sym_number_literal_token1] = ACTIONS(1485), + [aux_sym_number_literal_token2] = ACTIONS(1483), + [aux_sym_number_literal_token3] = ACTIONS(1483), + [aux_sym_number_literal_token4] = ACTIONS(1485), + [aux_sym_number_literal_token5] = ACTIONS(1483), + [anon_sym_pipeline] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_SQUOTE] = ACTIONS(1485), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1485), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1483), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1483), + [anon_sym_switch] = ACTIONS(1485), + [anon_sym_try] = ACTIONS(1485), + [anon_sym_catch] = ACTIONS(1485), + [anon_sym_finally] = ACTIONS(1485), + [anon_sym_int] = ACTIONS(1485), + [anon_sym_boolean] = ACTIONS(1485), + [anon_sym_char] = ACTIONS(1485), + [anon_sym_short] = ACTIONS(1485), + [anon_sym_long] = ACTIONS(1485), + [anon_sym_float] = ACTIONS(1485), + [anon_sym_double] = ACTIONS(1485), + [anon_sym_void] = ACTIONS(1485), + [anon_sym_public] = ACTIONS(1485), + [anon_sym_protected] = ACTIONS(1485), + [anon_sym_private] = ACTIONS(1485), + [anon_sym_static] = ACTIONS(1485), + [anon_sym_final] = ACTIONS(1485), + [anon_sym_synchronized] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1483), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_new] = ACTIONS(1485), + }, + [660] = { + [sym_comment] = STATE(660), + [sym_groovy_doc] = STATE(660), + [ts_builtin_sym_end] = ACTIONS(1487), + [sym_identifier] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_STAR] = ACTIONS(1489), + [anon_sym_STAR_COLON] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(1489), + [anon_sym_package] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(1489), + [anon_sym_assert] = ACTIONS(1489), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_ATinterface] = ACTIONS(1487), + [anon_sym_interface] = ACTIONS(1489), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_COMMA] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1487), + [anon_sym_RBRACE] = ACTIONS(1487), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1489), + [anon_sym_this] = ACTIONS(1489), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_RPAREN] = ACTIONS(1487), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_else] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1487), + [aux_sym_number_literal_token1] = ACTIONS(1489), + [aux_sym_number_literal_token2] = ACTIONS(1487), + [aux_sym_number_literal_token3] = ACTIONS(1487), + [aux_sym_number_literal_token4] = ACTIONS(1489), + [aux_sym_number_literal_token5] = ACTIONS(1487), + [anon_sym_pipeline] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_SQUOTE] = ACTIONS(1489), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1489), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1487), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1487), + [anon_sym_switch] = ACTIONS(1489), + [anon_sym_try] = ACTIONS(1489), + [anon_sym_catch] = ACTIONS(1489), + [anon_sym_finally] = ACTIONS(1489), + [anon_sym_int] = ACTIONS(1489), + [anon_sym_boolean] = ACTIONS(1489), + [anon_sym_char] = ACTIONS(1489), + [anon_sym_short] = ACTIONS(1489), + [anon_sym_long] = ACTIONS(1489), + [anon_sym_float] = ACTIONS(1489), + [anon_sym_double] = ACTIONS(1489), + [anon_sym_void] = ACTIONS(1489), + [anon_sym_public] = ACTIONS(1489), + [anon_sym_protected] = ACTIONS(1489), + [anon_sym_private] = ACTIONS(1489), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_final] = ACTIONS(1489), + [anon_sym_synchronized] = ACTIONS(1489), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_new] = ACTIONS(1489), + }, + [661] = { + [sym_comment] = STATE(661), + [sym_groovy_doc] = STATE(661), + [ts_builtin_sym_end] = ACTIONS(95), + [sym_identifier] = ACTIONS(89), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_STAR_COLON] = ACTIONS(95), + [anon_sym_import] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [anon_sym_ATinterface] = ACTIONS(95), + [anon_sym_interface] = ACTIONS(89), + [anon_sym_class] = ACTIONS(89), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_null] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_RPAREN] = ACTIONS(95), + [anon_sym_do] = ACTIONS(89), + [anon_sym_while] = ACTIONS(89), + [anon_sym_for] = ACTIONS(89), + [anon_sym_if] = ACTIONS(89), + [anon_sym_else] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(95), + [aux_sym_number_literal_token1] = ACTIONS(89), + [aux_sym_number_literal_token2] = ACTIONS(95), + [aux_sym_number_literal_token3] = ACTIONS(95), + [aux_sym_number_literal_token4] = ACTIONS(89), + [aux_sym_number_literal_token5] = ACTIONS(95), + [anon_sym_pipeline] = ACTIONS(89), + [anon_sym_return] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SLASH] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(89), + [anon_sym_try] = ACTIONS(89), + [anon_sym_catch] = ACTIONS(89), + [anon_sym_finally] = ACTIONS(89), + [anon_sym_int] = ACTIONS(89), + [anon_sym_boolean] = ACTIONS(89), + [anon_sym_char] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_float] = ACTIONS(89), + [anon_sym_double] = ACTIONS(89), + [anon_sym_void] = ACTIONS(89), + [anon_sym_public] = ACTIONS(89), + [anon_sym_protected] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_static] = ACTIONS(89), + [anon_sym_final] = ACTIONS(89), + [anon_sym_synchronized] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_new] = ACTIONS(89), + }, + [662] = { + [sym_comment] = STATE(662), + [sym_groovy_doc] = STATE(662), + [ts_builtin_sym_end] = ACTIONS(1491), + [sym_identifier] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_STAR_COLON] = ACTIONS(1491), + [anon_sym_import] = ACTIONS(1493), + [anon_sym_package] = ACTIONS(1493), + [anon_sym_AT] = ACTIONS(1493), + [anon_sym_assert] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_ATinterface] = ACTIONS(1491), + [anon_sym_interface] = ACTIONS(1493), + [anon_sym_class] = ACTIONS(1493), + [anon_sym_COMMA] = ACTIONS(1491), + [anon_sym_LBRACE] = ACTIONS(1491), + [anon_sym_RBRACE] = ACTIONS(1491), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1493), + [anon_sym_this] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_RPAREN] = ACTIONS(1491), + [anon_sym_do] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_else] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(1491), + [aux_sym_number_literal_token1] = ACTIONS(1493), + [aux_sym_number_literal_token2] = ACTIONS(1491), + [aux_sym_number_literal_token3] = ACTIONS(1491), + [aux_sym_number_literal_token4] = ACTIONS(1493), + [aux_sym_number_literal_token5] = ACTIONS(1491), + [anon_sym_pipeline] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_SQUOTE] = ACTIONS(1493), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1493), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1491), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1491), + [anon_sym_switch] = ACTIONS(1493), + [anon_sym_try] = ACTIONS(1493), + [anon_sym_catch] = ACTIONS(1493), + [anon_sym_finally] = ACTIONS(1493), + [anon_sym_int] = ACTIONS(1493), + [anon_sym_boolean] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_short] = ACTIONS(1493), + [anon_sym_long] = ACTIONS(1493), + [anon_sym_float] = ACTIONS(1493), + [anon_sym_double] = ACTIONS(1493), + [anon_sym_void] = ACTIONS(1493), + [anon_sym_public] = ACTIONS(1493), + [anon_sym_protected] = ACTIONS(1493), + [anon_sym_private] = ACTIONS(1493), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_final] = ACTIONS(1493), + [anon_sym_synchronized] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_new] = ACTIONS(1493), + }, + [663] = { + [sym_comment] = STATE(663), + [sym_groovy_doc] = STATE(663), + [ts_builtin_sym_end] = ACTIONS(95), + [sym_identifier] = ACTIONS(89), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_STAR_COLON] = ACTIONS(95), + [anon_sym_import] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [anon_sym_ATinterface] = ACTIONS(95), + [anon_sym_interface] = ACTIONS(89), + [anon_sym_class] = ACTIONS(89), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_null] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_RPAREN] = ACTIONS(95), + [anon_sym_do] = ACTIONS(89), + [anon_sym_while] = ACTIONS(89), + [anon_sym_for] = ACTIONS(89), + [anon_sym_if] = ACTIONS(89), + [anon_sym_else] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(95), + [aux_sym_number_literal_token1] = ACTIONS(89), + [aux_sym_number_literal_token2] = ACTIONS(95), + [aux_sym_number_literal_token3] = ACTIONS(95), + [aux_sym_number_literal_token4] = ACTIONS(89), + [aux_sym_number_literal_token5] = ACTIONS(95), + [anon_sym_pipeline] = ACTIONS(89), + [anon_sym_return] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SLASH] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(89), + [anon_sym_try] = ACTIONS(89), + [anon_sym_catch] = ACTIONS(89), + [anon_sym_finally] = ACTIONS(89), + [anon_sym_int] = ACTIONS(89), + [anon_sym_boolean] = ACTIONS(89), + [anon_sym_char] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_float] = ACTIONS(89), + [anon_sym_double] = ACTIONS(89), + [anon_sym_void] = ACTIONS(89), + [anon_sym_public] = ACTIONS(89), + [anon_sym_protected] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_static] = ACTIONS(89), + [anon_sym_final] = ACTIONS(89), + [anon_sym_synchronized] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_new] = ACTIONS(89), + }, + [664] = { + [sym_comment] = STATE(664), + [sym_groovy_doc] = STATE(664), + [ts_builtin_sym_end] = ACTIONS(1495), + [sym_identifier] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_STAR_COLON] = ACTIONS(1495), + [anon_sym_import] = ACTIONS(1497), + [anon_sym_package] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1497), + [anon_sym_assert] = ACTIONS(1497), + [anon_sym_PLUS_PLUS] = ACTIONS(1495), + [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_ATinterface] = ACTIONS(1495), + [anon_sym_interface] = ACTIONS(1497), + [anon_sym_class] = ACTIONS(1497), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_RBRACE] = ACTIONS(1495), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1497), + [anon_sym_this] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_RPAREN] = ACTIONS(1495), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_else] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(1495), + [aux_sym_number_literal_token1] = ACTIONS(1497), + [aux_sym_number_literal_token2] = ACTIONS(1495), + [aux_sym_number_literal_token3] = ACTIONS(1495), + [aux_sym_number_literal_token4] = ACTIONS(1497), + [aux_sym_number_literal_token5] = ACTIONS(1495), + [anon_sym_pipeline] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1495), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1495), + [anon_sym_switch] = ACTIONS(1497), + [anon_sym_try] = ACTIONS(1497), + [anon_sym_catch] = ACTIONS(1497), + [anon_sym_finally] = ACTIONS(1497), + [anon_sym_int] = ACTIONS(1497), + [anon_sym_boolean] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_short] = ACTIONS(1497), + [anon_sym_long] = ACTIONS(1497), + [anon_sym_float] = ACTIONS(1497), + [anon_sym_double] = ACTIONS(1497), + [anon_sym_void] = ACTIONS(1497), + [anon_sym_public] = ACTIONS(1497), + [anon_sym_protected] = ACTIONS(1497), + [anon_sym_private] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(1497), + [anon_sym_final] = ACTIONS(1497), + [anon_sym_synchronized] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(1495), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_new] = ACTIONS(1497), + }, + [665] = { + [sym_comment] = STATE(665), + [sym_groovy_doc] = STATE(665), + [ts_builtin_sym_end] = ACTIONS(95), + [sym_identifier] = ACTIONS(89), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_STAR_COLON] = ACTIONS(95), + [anon_sym_import] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [anon_sym_ATinterface] = ACTIONS(95), + [anon_sym_interface] = ACTIONS(89), + [anon_sym_class] = ACTIONS(89), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_null] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_RPAREN] = ACTIONS(95), + [anon_sym_do] = ACTIONS(89), + [anon_sym_while] = ACTIONS(89), + [anon_sym_for] = ACTIONS(89), + [anon_sym_if] = ACTIONS(89), + [anon_sym_else] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(95), + [aux_sym_number_literal_token1] = ACTIONS(89), + [aux_sym_number_literal_token2] = ACTIONS(95), + [aux_sym_number_literal_token3] = ACTIONS(95), + [aux_sym_number_literal_token4] = ACTIONS(89), + [aux_sym_number_literal_token5] = ACTIONS(95), + [anon_sym_pipeline] = ACTIONS(89), + [anon_sym_return] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SLASH] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(89), + [anon_sym_try] = ACTIONS(89), + [anon_sym_catch] = ACTIONS(89), + [anon_sym_finally] = ACTIONS(89), + [anon_sym_int] = ACTIONS(89), + [anon_sym_boolean] = ACTIONS(89), + [anon_sym_char] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_float] = ACTIONS(89), + [anon_sym_double] = ACTIONS(89), + [anon_sym_void] = ACTIONS(89), + [anon_sym_public] = ACTIONS(89), + [anon_sym_protected] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_static] = ACTIONS(89), + [anon_sym_final] = ACTIONS(89), + [anon_sym_synchronized] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_new] = ACTIONS(89), + }, + [666] = { + [sym_comment] = STATE(666), + [sym_groovy_doc] = STATE(666), + [ts_builtin_sym_end] = ACTIONS(1499), + [sym_identifier] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1501), + [anon_sym_STAR_COLON] = ACTIONS(1499), + [anon_sym_import] = ACTIONS(1501), + [anon_sym_package] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(1501), + [anon_sym_assert] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [anon_sym_ATinterface] = ACTIONS(1499), + [anon_sym_interface] = ACTIONS(1501), + [anon_sym_class] = ACTIONS(1501), + [anon_sym_COMMA] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1501), + [anon_sym_this] = ACTIONS(1501), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1499), + [anon_sym_do] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_else] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1499), + [aux_sym_number_literal_token1] = ACTIONS(1501), + [aux_sym_number_literal_token2] = ACTIONS(1499), + [aux_sym_number_literal_token3] = ACTIONS(1499), + [aux_sym_number_literal_token4] = ACTIONS(1501), + [aux_sym_number_literal_token5] = ACTIONS(1499), + [anon_sym_pipeline] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_SQUOTE] = ACTIONS(1501), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1501), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1499), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1499), + [anon_sym_switch] = ACTIONS(1501), + [anon_sym_try] = ACTIONS(1501), + [anon_sym_catch] = ACTIONS(1501), + [anon_sym_finally] = ACTIONS(1501), + [anon_sym_int] = ACTIONS(1501), + [anon_sym_boolean] = ACTIONS(1501), + [anon_sym_char] = ACTIONS(1501), + [anon_sym_short] = ACTIONS(1501), + [anon_sym_long] = ACTIONS(1501), + [anon_sym_float] = ACTIONS(1501), + [anon_sym_double] = ACTIONS(1501), + [anon_sym_void] = ACTIONS(1501), + [anon_sym_public] = ACTIONS(1501), + [anon_sym_protected] = ACTIONS(1501), + [anon_sym_private] = ACTIONS(1501), + [anon_sym_static] = ACTIONS(1501), + [anon_sym_final] = ACTIONS(1501), + [anon_sym_synchronized] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(1499), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_new] = ACTIONS(1501), + }, + [667] = { + [sym_comment] = STATE(667), + [sym_groovy_doc] = STATE(667), + [ts_builtin_sym_end] = ACTIONS(1503), + [sym_identifier] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_STAR_COLON] = ACTIONS(1503), + [anon_sym_import] = ACTIONS(1505), + [anon_sym_package] = ACTIONS(1505), + [anon_sym_AT] = ACTIONS(1505), + [anon_sym_assert] = ACTIONS(1505), + [anon_sym_PLUS_PLUS] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1503), + [anon_sym_SLASH] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_ATinterface] = ACTIONS(1503), + [anon_sym_interface] = ACTIONS(1505), + [anon_sym_class] = ACTIONS(1505), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_LBRACE] = ACTIONS(1503), + [anon_sym_RBRACE] = ACTIONS(1503), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1505), + [anon_sym_this] = ACTIONS(1505), + [anon_sym_null] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(1503), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_else] = ACTIONS(1505), + [anon_sym_LBRACK] = ACTIONS(1503), + [aux_sym_number_literal_token1] = ACTIONS(1505), + [aux_sym_number_literal_token2] = ACTIONS(1503), + [aux_sym_number_literal_token3] = ACTIONS(1503), + [aux_sym_number_literal_token4] = ACTIONS(1505), + [aux_sym_number_literal_token5] = ACTIONS(1503), + [anon_sym_pipeline] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1503), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1503), + [anon_sym_switch] = ACTIONS(1505), + [anon_sym_try] = ACTIONS(1505), + [anon_sym_catch] = ACTIONS(1505), + [anon_sym_finally] = ACTIONS(1505), + [anon_sym_int] = ACTIONS(1505), + [anon_sym_boolean] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_short] = ACTIONS(1505), + [anon_sym_long] = ACTIONS(1505), + [anon_sym_float] = ACTIONS(1505), + [anon_sym_double] = ACTIONS(1505), + [anon_sym_void] = ACTIONS(1505), + [anon_sym_public] = ACTIONS(1505), + [anon_sym_protected] = ACTIONS(1505), + [anon_sym_private] = ACTIONS(1505), + [anon_sym_static] = ACTIONS(1505), + [anon_sym_final] = ACTIONS(1505), + [anon_sym_synchronized] = ACTIONS(1505), + [anon_sym_TILDE] = ACTIONS(1503), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_new] = ACTIONS(1505), + }, + [668] = { + [sym_comment] = STATE(668), + [sym_groovy_doc] = STATE(668), + [ts_builtin_sym_end] = ACTIONS(1507), + [sym_identifier] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_STAR_COLON] = ACTIONS(1507), + [anon_sym_import] = ACTIONS(1509), + [anon_sym_package] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_assert] = ACTIONS(1509), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_ATinterface] = ACTIONS(1507), + [anon_sym_interface] = ACTIONS(1509), + [anon_sym_class] = ACTIONS(1509), + [anon_sym_COMMA] = ACTIONS(1507), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1507), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1509), + [anon_sym_this] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_RPAREN] = ACTIONS(1507), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_else] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1507), + [aux_sym_number_literal_token1] = ACTIONS(1509), + [aux_sym_number_literal_token2] = ACTIONS(1507), + [aux_sym_number_literal_token3] = ACTIONS(1507), + [aux_sym_number_literal_token4] = ACTIONS(1509), + [aux_sym_number_literal_token5] = ACTIONS(1507), + [anon_sym_pipeline] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_SQUOTE] = ACTIONS(1509), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1507), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_try] = ACTIONS(1509), + [anon_sym_catch] = ACTIONS(1509), + [anon_sym_finally] = ACTIONS(1509), + [anon_sym_int] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_char] = ACTIONS(1509), + [anon_sym_short] = ACTIONS(1509), + [anon_sym_long] = ACTIONS(1509), + [anon_sym_float] = ACTIONS(1509), + [anon_sym_double] = ACTIONS(1509), + [anon_sym_void] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_final] = ACTIONS(1509), + [anon_sym_synchronized] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + }, + [669] = { + [sym_comment] = STATE(669), + [sym_groovy_doc] = STATE(669), + [ts_builtin_sym_end] = ACTIONS(365), + [sym_identifier] = ACTIONS(363), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(365), + [anon_sym_STAR] = ACTIONS(363), + [anon_sym_STAR_COLON] = ACTIONS(365), + [anon_sym_import] = ACTIONS(363), + [anon_sym_package] = ACTIONS(363), + [anon_sym_AT] = ACTIONS(363), + [anon_sym_assert] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(365), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(363), + [anon_sym_DASH] = ACTIONS(363), + [anon_sym_true] = ACTIONS(363), + [anon_sym_false] = ACTIONS(363), + [anon_sym_ATinterface] = ACTIONS(365), + [anon_sym_interface] = ACTIONS(363), + [anon_sym_class] = ACTIONS(363), + [anon_sym_COMMA] = ACTIONS(365), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_RBRACE] = ACTIONS(365), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(363), + [anon_sym_this] = ACTIONS(363), + [anon_sym_null] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(365), + [anon_sym_RPAREN] = ACTIONS(365), + [anon_sym_do] = ACTIONS(363), + [anon_sym_while] = ACTIONS(363), + [anon_sym_for] = ACTIONS(363), + [anon_sym_if] = ACTIONS(363), + [anon_sym_else] = ACTIONS(363), + [anon_sym_LBRACK] = ACTIONS(365), + [aux_sym_number_literal_token1] = ACTIONS(363), + [aux_sym_number_literal_token2] = ACTIONS(365), + [aux_sym_number_literal_token3] = ACTIONS(365), + [aux_sym_number_literal_token4] = ACTIONS(363), + [aux_sym_number_literal_token5] = ACTIONS(365), + [anon_sym_pipeline] = ACTIONS(363), + [anon_sym_return] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(363), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(365), + [anon_sym_DQUOTE] = ACTIONS(363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(365), + [anon_sym_DOLLAR_SLASH] = ACTIONS(365), + [anon_sym_switch] = ACTIONS(363), + [anon_sym_try] = ACTIONS(363), + [anon_sym_catch] = ACTIONS(363), + [anon_sym_finally] = ACTIONS(363), + [anon_sym_int] = ACTIONS(363), + [anon_sym_boolean] = ACTIONS(363), + [anon_sym_char] = ACTIONS(363), + [anon_sym_short] = ACTIONS(363), + [anon_sym_long] = ACTIONS(363), + [anon_sym_float] = ACTIONS(363), + [anon_sym_double] = ACTIONS(363), + [anon_sym_void] = ACTIONS(363), + [anon_sym_public] = ACTIONS(363), + [anon_sym_protected] = ACTIONS(363), + [anon_sym_private] = ACTIONS(363), + [anon_sym_static] = ACTIONS(363), + [anon_sym_final] = ACTIONS(363), + [anon_sym_synchronized] = ACTIONS(363), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_new] = ACTIONS(363), + }, + [670] = { + [sym_comment] = STATE(670), + [sym_groovy_doc] = STATE(670), + [ts_builtin_sym_end] = ACTIONS(1511), + [sym_identifier] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_STAR] = ACTIONS(1513), + [anon_sym_STAR_COLON] = ACTIONS(1511), + [anon_sym_import] = ACTIONS(1513), + [anon_sym_package] = ACTIONS(1513), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_assert] = ACTIONS(1513), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [anon_sym_ATinterface] = ACTIONS(1511), + [anon_sym_interface] = ACTIONS(1513), + [anon_sym_class] = ACTIONS(1513), + [anon_sym_COMMA] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_RBRACE] = ACTIONS(1511), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1513), + [anon_sym_this] = ACTIONS(1513), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_RPAREN] = ACTIONS(1511), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_else] = ACTIONS(1513), + [anon_sym_LBRACK] = ACTIONS(1511), + [aux_sym_number_literal_token1] = ACTIONS(1513), + [aux_sym_number_literal_token2] = ACTIONS(1511), + [aux_sym_number_literal_token3] = ACTIONS(1511), + [aux_sym_number_literal_token4] = ACTIONS(1513), + [aux_sym_number_literal_token5] = ACTIONS(1511), + [anon_sym_pipeline] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_SQUOTE] = ACTIONS(1513), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1511), + [anon_sym_DQUOTE] = ACTIONS(1513), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1511), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1511), + [anon_sym_switch] = ACTIONS(1513), + [anon_sym_try] = ACTIONS(1513), + [anon_sym_catch] = ACTIONS(1513), + [anon_sym_finally] = ACTIONS(1513), + [anon_sym_int] = ACTIONS(1513), + [anon_sym_boolean] = ACTIONS(1513), + [anon_sym_char] = ACTIONS(1513), + [anon_sym_short] = ACTIONS(1513), + [anon_sym_long] = ACTIONS(1513), + [anon_sym_float] = ACTIONS(1513), + [anon_sym_double] = ACTIONS(1513), + [anon_sym_void] = ACTIONS(1513), + [anon_sym_public] = ACTIONS(1513), + [anon_sym_protected] = ACTIONS(1513), + [anon_sym_private] = ACTIONS(1513), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_final] = ACTIONS(1513), + [anon_sym_synchronized] = ACTIONS(1513), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_new] = ACTIONS(1513), + }, + [671] = { + [sym_comment] = STATE(671), + [sym_groovy_doc] = STATE(671), + [ts_builtin_sym_end] = ACTIONS(1515), + [sym_identifier] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_STAR_COLON] = ACTIONS(1515), + [anon_sym_import] = ACTIONS(1517), + [anon_sym_package] = ACTIONS(1517), + [anon_sym_AT] = ACTIONS(1517), + [anon_sym_assert] = ACTIONS(1517), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [anon_sym_ATinterface] = ACTIONS(1515), + [anon_sym_interface] = ACTIONS(1517), + [anon_sym_class] = ACTIONS(1517), + [anon_sym_COMMA] = ACTIONS(1515), + [anon_sym_LBRACE] = ACTIONS(1515), + [anon_sym_RBRACE] = ACTIONS(1515), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1517), + [anon_sym_this] = ACTIONS(1517), + [anon_sym_null] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_RPAREN] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_else] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(1515), + [aux_sym_number_literal_token1] = ACTIONS(1517), + [aux_sym_number_literal_token2] = ACTIONS(1515), + [aux_sym_number_literal_token3] = ACTIONS(1515), + [aux_sym_number_literal_token4] = ACTIONS(1517), + [aux_sym_number_literal_token5] = ACTIONS(1515), + [anon_sym_pipeline] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_SQUOTE] = ACTIONS(1517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1517), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1515), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1515), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_try] = ACTIONS(1517), + [anon_sym_catch] = ACTIONS(1517), + [anon_sym_finally] = ACTIONS(1517), + [anon_sym_int] = ACTIONS(1517), + [anon_sym_boolean] = ACTIONS(1517), + [anon_sym_char] = ACTIONS(1517), + [anon_sym_short] = ACTIONS(1517), + [anon_sym_long] = ACTIONS(1517), + [anon_sym_float] = ACTIONS(1517), + [anon_sym_double] = ACTIONS(1517), + [anon_sym_void] = ACTIONS(1517), + [anon_sym_public] = ACTIONS(1517), + [anon_sym_protected] = ACTIONS(1517), + [anon_sym_private] = ACTIONS(1517), + [anon_sym_static] = ACTIONS(1517), + [anon_sym_final] = ACTIONS(1517), + [anon_sym_synchronized] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_new] = ACTIONS(1517), + }, + [672] = { + [sym_comment] = STATE(672), + [sym_groovy_doc] = STATE(672), + [ts_builtin_sym_end] = ACTIONS(95), + [sym_identifier] = ACTIONS(89), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_STAR_COLON] = ACTIONS(95), + [anon_sym_import] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [anon_sym_ATinterface] = ACTIONS(95), + [anon_sym_interface] = ACTIONS(89), + [anon_sym_class] = ACTIONS(89), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_null] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_RPAREN] = ACTIONS(95), + [anon_sym_do] = ACTIONS(89), + [anon_sym_while] = ACTIONS(89), + [anon_sym_for] = ACTIONS(89), + [anon_sym_if] = ACTIONS(89), + [anon_sym_else] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(95), + [aux_sym_number_literal_token1] = ACTIONS(89), + [aux_sym_number_literal_token2] = ACTIONS(95), + [aux_sym_number_literal_token3] = ACTIONS(95), + [aux_sym_number_literal_token4] = ACTIONS(89), + [aux_sym_number_literal_token5] = ACTIONS(95), + [anon_sym_pipeline] = ACTIONS(89), + [anon_sym_return] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SLASH] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(89), + [anon_sym_try] = ACTIONS(89), + [anon_sym_catch] = ACTIONS(89), + [anon_sym_finally] = ACTIONS(89), + [anon_sym_int] = ACTIONS(89), + [anon_sym_boolean] = ACTIONS(89), + [anon_sym_char] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_float] = ACTIONS(89), + [anon_sym_double] = ACTIONS(89), + [anon_sym_void] = ACTIONS(89), + [anon_sym_public] = ACTIONS(89), + [anon_sym_protected] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_static] = ACTIONS(89), + [anon_sym_final] = ACTIONS(89), + [anon_sym_synchronized] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_new] = ACTIONS(89), + }, + [673] = { + [sym_comment] = STATE(673), + [sym_groovy_doc] = STATE(673), + [ts_builtin_sym_end] = ACTIONS(1519), + [sym_identifier] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_STAR] = ACTIONS(1521), + [anon_sym_STAR_COLON] = ACTIONS(1519), + [anon_sym_import] = ACTIONS(1521), + [anon_sym_package] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_assert] = ACTIONS(1521), + [anon_sym_PLUS_PLUS] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_SLASH] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_ATinterface] = ACTIONS(1519), + [anon_sym_interface] = ACTIONS(1521), + [anon_sym_class] = ACTIONS(1521), + [anon_sym_COMMA] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1519), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1521), + [anon_sym_this] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(1519), + [anon_sym_do] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_else] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1519), + [aux_sym_number_literal_token1] = ACTIONS(1521), + [aux_sym_number_literal_token2] = ACTIONS(1519), + [aux_sym_number_literal_token3] = ACTIONS(1519), + [aux_sym_number_literal_token4] = ACTIONS(1521), + [aux_sym_number_literal_token5] = ACTIONS(1519), + [anon_sym_pipeline] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_SQUOTE] = ACTIONS(1521), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1521), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1519), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1519), + [anon_sym_switch] = ACTIONS(1521), + [anon_sym_try] = ACTIONS(1521), + [anon_sym_catch] = ACTIONS(1521), + [anon_sym_finally] = ACTIONS(1521), + [anon_sym_int] = ACTIONS(1521), + [anon_sym_boolean] = ACTIONS(1521), + [anon_sym_char] = ACTIONS(1521), + [anon_sym_short] = ACTIONS(1521), + [anon_sym_long] = ACTIONS(1521), + [anon_sym_float] = ACTIONS(1521), + [anon_sym_double] = ACTIONS(1521), + [anon_sym_void] = ACTIONS(1521), + [anon_sym_public] = ACTIONS(1521), + [anon_sym_protected] = ACTIONS(1521), + [anon_sym_private] = ACTIONS(1521), + [anon_sym_static] = ACTIONS(1521), + [anon_sym_final] = ACTIONS(1521), + [anon_sym_synchronized] = ACTIONS(1521), + [anon_sym_TILDE] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_new] = ACTIONS(1521), + }, + [674] = { + [sym_comment] = STATE(674), + [sym_groovy_doc] = STATE(674), + [ts_builtin_sym_end] = ACTIONS(261), + [sym_identifier] = ACTIONS(259), + [anon_sym_break] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(259), + [anon_sym_SEMI] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(259), + [anon_sym_STAR_COLON] = ACTIONS(261), + [anon_sym_import] = ACTIONS(259), + [anon_sym_package] = ACTIONS(259), + [anon_sym_AT] = ACTIONS(259), + [anon_sym_assert] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_true] = ACTIONS(259), + [anon_sym_false] = ACTIONS(259), + [anon_sym_ATinterface] = ACTIONS(261), + [anon_sym_interface] = ACTIONS(259), + [anon_sym_class] = ACTIONS(259), + [anon_sym_COMMA] = ACTIONS(261), + [anon_sym_LBRACE] = ACTIONS(261), + [anon_sym_RBRACE] = ACTIONS(261), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(259), + [anon_sym_this] = ACTIONS(259), + [anon_sym_null] = ACTIONS(259), + [anon_sym_LPAREN] = ACTIONS(261), + [anon_sym_RPAREN] = ACTIONS(261), + [anon_sym_do] = ACTIONS(259), + [anon_sym_while] = ACTIONS(259), + [anon_sym_for] = ACTIONS(259), + [anon_sym_if] = ACTIONS(259), + [anon_sym_else] = ACTIONS(259), + [anon_sym_LBRACK] = ACTIONS(261), + [aux_sym_number_literal_token1] = ACTIONS(259), + [aux_sym_number_literal_token2] = ACTIONS(261), + [aux_sym_number_literal_token3] = ACTIONS(261), + [aux_sym_number_literal_token4] = ACTIONS(259), + [aux_sym_number_literal_token5] = ACTIONS(261), + [anon_sym_pipeline] = ACTIONS(259), + [anon_sym_return] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(261), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_SLASH] = ACTIONS(261), + [anon_sym_switch] = ACTIONS(259), + [anon_sym_try] = ACTIONS(259), + [anon_sym_catch] = ACTIONS(259), + [anon_sym_finally] = ACTIONS(259), + [anon_sym_int] = ACTIONS(259), + [anon_sym_boolean] = ACTIONS(259), + [anon_sym_char] = ACTIONS(259), + [anon_sym_short] = ACTIONS(259), + [anon_sym_long] = ACTIONS(259), + [anon_sym_float] = ACTIONS(259), + [anon_sym_double] = ACTIONS(259), + [anon_sym_void] = ACTIONS(259), + [anon_sym_public] = ACTIONS(259), + [anon_sym_protected] = ACTIONS(259), + [anon_sym_private] = ACTIONS(259), + [anon_sym_static] = ACTIONS(259), + [anon_sym_final] = ACTIONS(259), + [anon_sym_synchronized] = ACTIONS(259), + [anon_sym_TILDE] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_new] = ACTIONS(259), + }, + [675] = { + [sym_comment] = STATE(675), + [sym_groovy_doc] = STATE(675), + [ts_builtin_sym_end] = ACTIONS(1523), + [sym_identifier] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_STAR_COLON] = ACTIONS(1523), + [anon_sym_import] = ACTIONS(1525), + [anon_sym_package] = ACTIONS(1525), + [anon_sym_AT] = ACTIONS(1525), + [anon_sym_assert] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_SLASH] = ACTIONS(1525), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [anon_sym_ATinterface] = ACTIONS(1523), + [anon_sym_interface] = ACTIONS(1525), + [anon_sym_class] = ACTIONS(1525), + [anon_sym_COMMA] = ACTIONS(1523), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_RBRACE] = ACTIONS(1523), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1525), + [anon_sym_null] = ACTIONS(1525), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_RPAREN] = ACTIONS(1523), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_else] = ACTIONS(1525), + [anon_sym_LBRACK] = ACTIONS(1523), + [aux_sym_number_literal_token1] = ACTIONS(1525), + [aux_sym_number_literal_token2] = ACTIONS(1523), + [aux_sym_number_literal_token3] = ACTIONS(1523), + [aux_sym_number_literal_token4] = ACTIONS(1525), + [aux_sym_number_literal_token5] = ACTIONS(1523), + [anon_sym_pipeline] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_SQUOTE] = ACTIONS(1525), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1525), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1523), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1523), + [anon_sym_switch] = ACTIONS(1525), + [anon_sym_try] = ACTIONS(1525), + [anon_sym_catch] = ACTIONS(1525), + [anon_sym_finally] = ACTIONS(1525), + [anon_sym_int] = ACTIONS(1525), + [anon_sym_boolean] = ACTIONS(1525), + [anon_sym_char] = ACTIONS(1525), + [anon_sym_short] = ACTIONS(1525), + [anon_sym_long] = ACTIONS(1525), + [anon_sym_float] = ACTIONS(1525), + [anon_sym_double] = ACTIONS(1525), + [anon_sym_void] = ACTIONS(1525), + [anon_sym_public] = ACTIONS(1525), + [anon_sym_protected] = ACTIONS(1525), + [anon_sym_private] = ACTIONS(1525), + [anon_sym_static] = ACTIONS(1525), + [anon_sym_final] = ACTIONS(1525), + [anon_sym_synchronized] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1523), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_new] = ACTIONS(1525), + }, + [676] = { + [sym_comment] = STATE(676), + [sym_groovy_doc] = STATE(676), + [ts_builtin_sym_end] = ACTIONS(1527), + [sym_identifier] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_STAR_COLON] = ACTIONS(1527), + [anon_sym_import] = ACTIONS(1529), + [anon_sym_package] = ACTIONS(1529), + [anon_sym_AT] = ACTIONS(1529), + [anon_sym_assert] = ACTIONS(1529), + [anon_sym_PLUS_PLUS] = ACTIONS(1527), + [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_SLASH] = ACTIONS(1529), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_ATinterface] = ACTIONS(1527), + [anon_sym_interface] = ACTIONS(1529), + [anon_sym_class] = ACTIONS(1529), + [anon_sym_COMMA] = ACTIONS(1527), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1527), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1529), + [anon_sym_this] = ACTIONS(1529), + [anon_sym_null] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(1527), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_else] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1527), + [aux_sym_number_literal_token1] = ACTIONS(1529), + [aux_sym_number_literal_token2] = ACTIONS(1527), + [aux_sym_number_literal_token3] = ACTIONS(1527), + [aux_sym_number_literal_token4] = ACTIONS(1529), + [aux_sym_number_literal_token5] = ACTIONS(1527), + [anon_sym_pipeline] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1529), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1527), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1527), + [anon_sym_switch] = ACTIONS(1529), + [anon_sym_try] = ACTIONS(1529), + [anon_sym_catch] = ACTIONS(1529), + [anon_sym_finally] = ACTIONS(1529), + [anon_sym_int] = ACTIONS(1529), + [anon_sym_boolean] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_short] = ACTIONS(1529), + [anon_sym_long] = ACTIONS(1529), + [anon_sym_float] = ACTIONS(1529), + [anon_sym_double] = ACTIONS(1529), + [anon_sym_void] = ACTIONS(1529), + [anon_sym_public] = ACTIONS(1529), + [anon_sym_protected] = ACTIONS(1529), + [anon_sym_private] = ACTIONS(1529), + [anon_sym_static] = ACTIONS(1529), + [anon_sym_final] = ACTIONS(1529), + [anon_sym_synchronized] = ACTIONS(1529), + [anon_sym_TILDE] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_new] = ACTIONS(1529), + }, + [677] = { + [sym_comment] = STATE(677), + [sym_groovy_doc] = STATE(677), + [ts_builtin_sym_end] = ACTIONS(1531), + [sym_identifier] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_STAR] = ACTIONS(1533), + [anon_sym_STAR_COLON] = ACTIONS(1531), + [anon_sym_import] = ACTIONS(1533), + [anon_sym_package] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1533), + [anon_sym_assert] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1531), + [anon_sym_DASH_DASH] = ACTIONS(1531), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(1533), + [anon_sym_false] = ACTIONS(1533), + [anon_sym_ATinterface] = ACTIONS(1531), + [anon_sym_interface] = ACTIONS(1533), + [anon_sym_class] = ACTIONS(1533), + [anon_sym_COMMA] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1531), + [anon_sym_RBRACE] = ACTIONS(1531), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1533), + [anon_sym_this] = ACTIONS(1533), + [anon_sym_null] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_RPAREN] = ACTIONS(1531), + [anon_sym_do] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_else] = ACTIONS(1533), + [anon_sym_LBRACK] = ACTIONS(1531), + [aux_sym_number_literal_token1] = ACTIONS(1533), + [aux_sym_number_literal_token2] = ACTIONS(1531), + [aux_sym_number_literal_token3] = ACTIONS(1531), + [aux_sym_number_literal_token4] = ACTIONS(1533), + [aux_sym_number_literal_token5] = ACTIONS(1531), + [anon_sym_pipeline] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_SQUOTE] = ACTIONS(1533), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1533), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1531), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1531), + [anon_sym_switch] = ACTIONS(1533), + [anon_sym_try] = ACTIONS(1533), + [anon_sym_catch] = ACTIONS(1533), + [anon_sym_finally] = ACTIONS(1533), + [anon_sym_int] = ACTIONS(1533), + [anon_sym_boolean] = ACTIONS(1533), + [anon_sym_char] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_float] = ACTIONS(1533), + [anon_sym_double] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_public] = ACTIONS(1533), + [anon_sym_protected] = ACTIONS(1533), + [anon_sym_private] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1533), + [anon_sym_final] = ACTIONS(1533), + [anon_sym_synchronized] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1531), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1533), + }, + [678] = { + [sym_comment] = STATE(678), + [sym_groovy_doc] = STATE(678), + [ts_builtin_sym_end] = ACTIONS(95), + [sym_identifier] = ACTIONS(89), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_STAR_COLON] = ACTIONS(95), + [anon_sym_import] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [anon_sym_ATinterface] = ACTIONS(95), + [anon_sym_interface] = ACTIONS(89), + [anon_sym_class] = ACTIONS(89), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_null] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_RPAREN] = ACTIONS(95), + [anon_sym_do] = ACTIONS(89), + [anon_sym_while] = ACTIONS(89), + [anon_sym_for] = ACTIONS(89), + [anon_sym_if] = ACTIONS(89), + [anon_sym_else] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(95), + [aux_sym_number_literal_token1] = ACTIONS(89), + [aux_sym_number_literal_token2] = ACTIONS(95), + [aux_sym_number_literal_token3] = ACTIONS(95), + [aux_sym_number_literal_token4] = ACTIONS(89), + [aux_sym_number_literal_token5] = ACTIONS(95), + [anon_sym_pipeline] = ACTIONS(89), + [anon_sym_return] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SLASH] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(89), + [anon_sym_try] = ACTIONS(89), + [anon_sym_catch] = ACTIONS(89), + [anon_sym_finally] = ACTIONS(89), + [anon_sym_int] = ACTIONS(89), + [anon_sym_boolean] = ACTIONS(89), + [anon_sym_char] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_float] = ACTIONS(89), + [anon_sym_double] = ACTIONS(89), + [anon_sym_void] = ACTIONS(89), + [anon_sym_public] = ACTIONS(89), + [anon_sym_protected] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_static] = ACTIONS(89), + [anon_sym_final] = ACTIONS(89), + [anon_sym_synchronized] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_new] = ACTIONS(89), + }, + [679] = { + [sym_comment] = STATE(679), + [sym_groovy_doc] = STATE(679), + [ts_builtin_sym_end] = ACTIONS(1535), + [sym_identifier] = ACTIONS(1537), + [anon_sym_break] = ACTIONS(1537), + [anon_sym_continue] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(1537), + [anon_sym_STAR_COLON] = ACTIONS(1535), + [anon_sym_import] = ACTIONS(1537), + [anon_sym_package] = ACTIONS(1537), + [anon_sym_AT] = ACTIONS(1537), + [anon_sym_assert] = ACTIONS(1537), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_SLASH] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_ATinterface] = ACTIONS(1535), + [anon_sym_interface] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1537), + [anon_sym_COMMA] = ACTIONS(1535), + [anon_sym_LBRACE] = ACTIONS(1535), + [anon_sym_RBRACE] = ACTIONS(1535), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1537), + [anon_sym_this] = ACTIONS(1537), + [anon_sym_null] = ACTIONS(1537), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_RPAREN] = ACTIONS(1535), + [anon_sym_do] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_for] = ACTIONS(1537), + [anon_sym_if] = ACTIONS(1537), + [anon_sym_else] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1535), + [aux_sym_number_literal_token1] = ACTIONS(1537), + [aux_sym_number_literal_token2] = ACTIONS(1535), + [aux_sym_number_literal_token3] = ACTIONS(1535), + [aux_sym_number_literal_token4] = ACTIONS(1537), + [aux_sym_number_literal_token5] = ACTIONS(1535), + [anon_sym_pipeline] = ACTIONS(1537), + [anon_sym_return] = ACTIONS(1537), + [anon_sym_SQUOTE] = ACTIONS(1537), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1537), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1535), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1535), + [anon_sym_switch] = ACTIONS(1537), + [anon_sym_try] = ACTIONS(1537), + [anon_sym_catch] = ACTIONS(1537), + [anon_sym_finally] = ACTIONS(1537), + [anon_sym_int] = ACTIONS(1537), + [anon_sym_boolean] = ACTIONS(1537), + [anon_sym_char] = ACTIONS(1537), + [anon_sym_short] = ACTIONS(1537), + [anon_sym_long] = ACTIONS(1537), + [anon_sym_float] = ACTIONS(1537), + [anon_sym_double] = ACTIONS(1537), + [anon_sym_void] = ACTIONS(1537), + [anon_sym_public] = ACTIONS(1537), + [anon_sym_protected] = ACTIONS(1537), + [anon_sym_private] = ACTIONS(1537), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_final] = ACTIONS(1537), + [anon_sym_synchronized] = ACTIONS(1537), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_new] = ACTIONS(1537), + }, + [680] = { + [sym_comment] = STATE(680), + [sym_groovy_doc] = STATE(680), + [ts_builtin_sym_end] = ACTIONS(387), + [sym_identifier] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(385), + [anon_sym_STAR_COLON] = ACTIONS(387), + [anon_sym_import] = ACTIONS(385), + [anon_sym_package] = ACTIONS(385), + [anon_sym_AT] = ACTIONS(385), + [anon_sym_assert] = ACTIONS(385), + [anon_sym_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_true] = ACTIONS(385), + [anon_sym_false] = ACTIONS(385), + [anon_sym_ATinterface] = ACTIONS(387), + [anon_sym_interface] = ACTIONS(385), + [anon_sym_class] = ACTIONS(385), + [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(387), + [anon_sym_RBRACE] = ACTIONS(387), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(385), + [anon_sym_this] = ACTIONS(385), + [anon_sym_null] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(387), + [anon_sym_do] = ACTIONS(385), + [anon_sym_while] = ACTIONS(385), + [anon_sym_for] = ACTIONS(385), + [anon_sym_if] = ACTIONS(385), + [anon_sym_else] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [aux_sym_number_literal_token1] = ACTIONS(385), + [aux_sym_number_literal_token2] = ACTIONS(387), + [aux_sym_number_literal_token3] = ACTIONS(387), + [aux_sym_number_literal_token4] = ACTIONS(385), + [aux_sym_number_literal_token5] = ACTIONS(387), + [anon_sym_pipeline] = ACTIONS(385), + [anon_sym_return] = ACTIONS(385), + [anon_sym_SQUOTE] = ACTIONS(385), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(387), + [anon_sym_DQUOTE] = ACTIONS(385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_SLASH] = ACTIONS(387), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_try] = ACTIONS(385), + [anon_sym_catch] = ACTIONS(385), + [anon_sym_finally] = ACTIONS(385), + [anon_sym_int] = ACTIONS(385), + [anon_sym_boolean] = ACTIONS(385), + [anon_sym_char] = ACTIONS(385), + [anon_sym_short] = ACTIONS(385), + [anon_sym_long] = ACTIONS(385), + [anon_sym_float] = ACTIONS(385), + [anon_sym_double] = ACTIONS(385), + [anon_sym_void] = ACTIONS(385), + [anon_sym_public] = ACTIONS(385), + [anon_sym_protected] = ACTIONS(385), + [anon_sym_private] = ACTIONS(385), + [anon_sym_static] = ACTIONS(385), + [anon_sym_final] = ACTIONS(385), + [anon_sym_synchronized] = ACTIONS(385), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(387), + [anon_sym_new] = ACTIONS(385), + }, + [681] = { + [sym_comment] = STATE(681), + [sym_groovy_doc] = STATE(681), + [ts_builtin_sym_end] = ACTIONS(1539), + [sym_identifier] = ACTIONS(1541), + [anon_sym_break] = ACTIONS(1541), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_STAR_COLON] = ACTIONS(1539), + [anon_sym_import] = ACTIONS(1541), + [anon_sym_package] = ACTIONS(1541), + [anon_sym_AT] = ACTIONS(1541), + [anon_sym_assert] = ACTIONS(1541), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_SLASH] = ACTIONS(1541), + [anon_sym_PLUS] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_true] = ACTIONS(1541), + [anon_sym_false] = ACTIONS(1541), + [anon_sym_ATinterface] = ACTIONS(1539), + [anon_sym_interface] = ACTIONS(1541), + [anon_sym_class] = ACTIONS(1541), + [anon_sym_COMMA] = ACTIONS(1539), + [anon_sym_LBRACE] = ACTIONS(1539), + [anon_sym_RBRACE] = ACTIONS(1539), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1541), + [anon_sym_this] = ACTIONS(1541), + [anon_sym_null] = ACTIONS(1541), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_RPAREN] = ACTIONS(1539), + [anon_sym_do] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1541), + [anon_sym_if] = ACTIONS(1541), + [anon_sym_else] = ACTIONS(1541), + [anon_sym_LBRACK] = ACTIONS(1539), + [aux_sym_number_literal_token1] = ACTIONS(1541), + [aux_sym_number_literal_token2] = ACTIONS(1539), + [aux_sym_number_literal_token3] = ACTIONS(1539), + [aux_sym_number_literal_token4] = ACTIONS(1541), + [aux_sym_number_literal_token5] = ACTIONS(1539), + [anon_sym_pipeline] = ACTIONS(1541), + [anon_sym_return] = ACTIONS(1541), + [anon_sym_SQUOTE] = ACTIONS(1541), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(1541), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1539), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1539), + [anon_sym_switch] = ACTIONS(1541), + [anon_sym_try] = ACTIONS(1541), + [anon_sym_catch] = ACTIONS(1541), + [anon_sym_finally] = ACTIONS(1541), + [anon_sym_int] = ACTIONS(1541), + [anon_sym_boolean] = ACTIONS(1541), + [anon_sym_char] = ACTIONS(1541), + [anon_sym_short] = ACTIONS(1541), + [anon_sym_long] = ACTIONS(1541), + [anon_sym_float] = ACTIONS(1541), + [anon_sym_double] = ACTIONS(1541), + [anon_sym_void] = ACTIONS(1541), + [anon_sym_public] = ACTIONS(1541), + [anon_sym_protected] = ACTIONS(1541), + [anon_sym_private] = ACTIONS(1541), + [anon_sym_static] = ACTIONS(1541), + [anon_sym_final] = ACTIONS(1541), + [anon_sym_synchronized] = ACTIONS(1541), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + }, + [682] = { + [sym_comment] = STATE(682), + [sym_groovy_doc] = STATE(682), + [ts_builtin_sym_end] = ACTIONS(381), + [sym_identifier] = ACTIONS(379), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(379), + [anon_sym_STAR_COLON] = ACTIONS(381), + [anon_sym_import] = ACTIONS(379), + [anon_sym_package] = ACTIONS(379), + [anon_sym_AT] = ACTIONS(379), + [anon_sym_assert] = ACTIONS(379), + [anon_sym_PLUS_PLUS] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(379), + [anon_sym_DASH] = ACTIONS(379), + [anon_sym_true] = ACTIONS(379), + [anon_sym_false] = ACTIONS(379), + [anon_sym_ATinterface] = ACTIONS(381), + [anon_sym_interface] = ACTIONS(379), + [anon_sym_class] = ACTIONS(379), + [anon_sym_COMMA] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(381), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(379), + [anon_sym_this] = ACTIONS(379), + [anon_sym_null] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_RPAREN] = ACTIONS(381), + [anon_sym_do] = ACTIONS(379), + [anon_sym_while] = ACTIONS(379), + [anon_sym_for] = ACTIONS(379), + [anon_sym_if] = ACTIONS(379), + [anon_sym_else] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [aux_sym_number_literal_token1] = ACTIONS(379), + [aux_sym_number_literal_token2] = ACTIONS(381), + [aux_sym_number_literal_token3] = ACTIONS(381), + [aux_sym_number_literal_token4] = ACTIONS(379), + [aux_sym_number_literal_token5] = ACTIONS(381), + [anon_sym_pipeline] = ACTIONS(379), + [anon_sym_return] = ACTIONS(379), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(381), + [anon_sym_DOLLAR_SLASH] = ACTIONS(381), + [anon_sym_switch] = ACTIONS(379), + [anon_sym_try] = ACTIONS(379), + [anon_sym_catch] = ACTIONS(379), + [anon_sym_finally] = ACTIONS(379), + [anon_sym_int] = ACTIONS(379), + [anon_sym_boolean] = ACTIONS(379), + [anon_sym_char] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [anon_sym_long] = ACTIONS(379), + [anon_sym_float] = ACTIONS(379), + [anon_sym_double] = ACTIONS(379), + [anon_sym_void] = ACTIONS(379), + [anon_sym_public] = ACTIONS(379), + [anon_sym_protected] = ACTIONS(379), + [anon_sym_private] = ACTIONS(379), + [anon_sym_static] = ACTIONS(379), + [anon_sym_final] = ACTIONS(379), + [anon_sym_synchronized] = ACTIONS(379), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_new] = ACTIONS(379), + }, + [683] = { + [sym_comment] = STATE(683), + [sym_groovy_doc] = STATE(683), + [ts_builtin_sym_end] = ACTIONS(1543), + [sym_identifier] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_STAR_COLON] = ACTIONS(1543), + [anon_sym_import] = ACTIONS(1545), + [anon_sym_package] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1545), + [anon_sym_assert] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1543), + [anon_sym_DASH_DASH] = ACTIONS(1543), + [anon_sym_SLASH] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [anon_sym_ATinterface] = ACTIONS(1543), + [anon_sym_interface] = ACTIONS(1545), + [anon_sym_class] = ACTIONS(1545), + [anon_sym_COMMA] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_RPAREN] = ACTIONS(1543), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_else] = ACTIONS(1545), + [anon_sym_LBRACK] = ACTIONS(1543), + [aux_sym_number_literal_token1] = ACTIONS(1545), + [aux_sym_number_literal_token2] = ACTIONS(1543), + [aux_sym_number_literal_token3] = ACTIONS(1543), + [aux_sym_number_literal_token4] = ACTIONS(1545), + [aux_sym_number_literal_token5] = ACTIONS(1543), + [anon_sym_pipeline] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_SQUOTE] = ACTIONS(1545), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1545), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1543), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1543), + [anon_sym_switch] = ACTIONS(1545), + [anon_sym_try] = ACTIONS(1545), + [anon_sym_catch] = ACTIONS(1545), + [anon_sym_finally] = ACTIONS(1545), + [anon_sym_int] = ACTIONS(1545), + [anon_sym_boolean] = ACTIONS(1545), + [anon_sym_char] = ACTIONS(1545), + [anon_sym_short] = ACTIONS(1545), + [anon_sym_long] = ACTIONS(1545), + [anon_sym_float] = ACTIONS(1545), + [anon_sym_double] = ACTIONS(1545), + [anon_sym_void] = ACTIONS(1545), + [anon_sym_public] = ACTIONS(1545), + [anon_sym_protected] = ACTIONS(1545), + [anon_sym_private] = ACTIONS(1545), + [anon_sym_static] = ACTIONS(1545), + [anon_sym_final] = ACTIONS(1545), + [anon_sym_synchronized] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_new] = ACTIONS(1545), + }, + [684] = { + [sym_comment] = STATE(684), + [sym_groovy_doc] = STATE(684), + [ts_builtin_sym_end] = ACTIONS(1547), + [sym_identifier] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_STAR_COLON] = ACTIONS(1547), + [anon_sym_import] = ACTIONS(1549), + [anon_sym_package] = ACTIONS(1549), + [anon_sym_AT] = ACTIONS(1549), + [anon_sym_assert] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), + [anon_sym_DASH_DASH] = ACTIONS(1547), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1549), + [anon_sym_false] = ACTIONS(1549), + [anon_sym_ATinterface] = ACTIONS(1547), + [anon_sym_interface] = ACTIONS(1549), + [anon_sym_class] = ACTIONS(1549), + [anon_sym_COMMA] = ACTIONS(1547), + [anon_sym_LBRACE] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1547), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1549), + [anon_sym_this] = ACTIONS(1549), + [anon_sym_null] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_RPAREN] = ACTIONS(1547), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_else] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1547), + [aux_sym_number_literal_token1] = ACTIONS(1549), + [aux_sym_number_literal_token2] = ACTIONS(1547), + [aux_sym_number_literal_token3] = ACTIONS(1547), + [aux_sym_number_literal_token4] = ACTIONS(1549), + [aux_sym_number_literal_token5] = ACTIONS(1547), + [anon_sym_pipeline] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_SQUOTE] = ACTIONS(1549), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1549), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1547), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_try] = ACTIONS(1549), + [anon_sym_catch] = ACTIONS(1549), + [anon_sym_finally] = ACTIONS(1549), + [anon_sym_int] = ACTIONS(1549), + [anon_sym_boolean] = ACTIONS(1549), + [anon_sym_char] = ACTIONS(1549), + [anon_sym_short] = ACTIONS(1549), + [anon_sym_long] = ACTIONS(1549), + [anon_sym_float] = ACTIONS(1549), + [anon_sym_double] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_public] = ACTIONS(1549), + [anon_sym_protected] = ACTIONS(1549), + [anon_sym_private] = ACTIONS(1549), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_final] = ACTIONS(1549), + [anon_sym_synchronized] = ACTIONS(1549), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_new] = ACTIONS(1549), + }, + [685] = { + [sym_comment] = STATE(685), + [sym_groovy_doc] = STATE(685), + [ts_builtin_sym_end] = ACTIONS(377), + [sym_identifier] = ACTIONS(375), + [anon_sym_break] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(375), + [anon_sym_STAR_COLON] = ACTIONS(377), + [anon_sym_import] = ACTIONS(375), + [anon_sym_package] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(375), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_PLUS_PLUS] = ACTIONS(377), + [anon_sym_DASH_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_ATinterface] = ACTIONS(377), + [anon_sym_interface] = ACTIONS(375), + [anon_sym_class] = ACTIONS(375), + [anon_sym_COMMA] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_RBRACE] = ACTIONS(377), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(375), + [anon_sym_this] = ACTIONS(375), + [anon_sym_null] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_RPAREN] = ACTIONS(377), + [anon_sym_do] = ACTIONS(375), + [anon_sym_while] = ACTIONS(375), + [anon_sym_for] = ACTIONS(375), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(377), + [aux_sym_number_literal_token1] = ACTIONS(375), + [aux_sym_number_literal_token2] = ACTIONS(377), + [aux_sym_number_literal_token3] = ACTIONS(377), + [aux_sym_number_literal_token4] = ACTIONS(375), + [aux_sym_number_literal_token5] = ACTIONS(377), + [anon_sym_pipeline] = ACTIONS(375), + [anon_sym_return] = ACTIONS(375), + [anon_sym_SQUOTE] = ACTIONS(375), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_DOLLAR_SLASH] = ACTIONS(377), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_try] = ACTIONS(375), + [anon_sym_catch] = ACTIONS(375), + [anon_sym_finally] = ACTIONS(375), + [anon_sym_int] = ACTIONS(375), + [anon_sym_boolean] = ACTIONS(375), + [anon_sym_char] = ACTIONS(375), + [anon_sym_short] = ACTIONS(375), + [anon_sym_long] = ACTIONS(375), + [anon_sym_float] = ACTIONS(375), + [anon_sym_double] = ACTIONS(375), + [anon_sym_void] = ACTIONS(375), + [anon_sym_public] = ACTIONS(375), + [anon_sym_protected] = ACTIONS(375), + [anon_sym_private] = ACTIONS(375), + [anon_sym_static] = ACTIONS(375), + [anon_sym_final] = ACTIONS(375), + [anon_sym_synchronized] = ACTIONS(375), + [anon_sym_TILDE] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_new] = ACTIONS(375), + }, + [686] = { + [sym_comment] = STATE(686), + [sym_groovy_doc] = STATE(686), + [ts_builtin_sym_end] = ACTIONS(1551), + [sym_identifier] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1553), + [anon_sym_STAR_COLON] = ACTIONS(1551), + [anon_sym_import] = ACTIONS(1553), + [anon_sym_package] = ACTIONS(1553), + [anon_sym_AT] = ACTIONS(1553), + [anon_sym_assert] = ACTIONS(1553), + [anon_sym_PLUS_PLUS] = ACTIONS(1551), + [anon_sym_DASH_DASH] = ACTIONS(1551), + [anon_sym_SLASH] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_ATinterface] = ACTIONS(1551), + [anon_sym_interface] = ACTIONS(1553), + [anon_sym_class] = ACTIONS(1553), + [anon_sym_COMMA] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1553), + [anon_sym_this] = ACTIONS(1553), + [anon_sym_null] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_else] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [aux_sym_number_literal_token1] = ACTIONS(1553), + [aux_sym_number_literal_token2] = ACTIONS(1551), + [aux_sym_number_literal_token3] = ACTIONS(1551), + [aux_sym_number_literal_token4] = ACTIONS(1553), + [aux_sym_number_literal_token5] = ACTIONS(1551), + [anon_sym_pipeline] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_SQUOTE] = ACTIONS(1553), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1553), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1553), + [anon_sym_catch] = ACTIONS(1553), + [anon_sym_finally] = ACTIONS(1553), + [anon_sym_int] = ACTIONS(1553), + [anon_sym_boolean] = ACTIONS(1553), + [anon_sym_char] = ACTIONS(1553), + [anon_sym_short] = ACTIONS(1553), + [anon_sym_long] = ACTIONS(1553), + [anon_sym_float] = ACTIONS(1553), + [anon_sym_double] = ACTIONS(1553), + [anon_sym_void] = ACTIONS(1553), + [anon_sym_public] = ACTIONS(1553), + [anon_sym_protected] = ACTIONS(1553), + [anon_sym_private] = ACTIONS(1553), + [anon_sym_static] = ACTIONS(1553), + [anon_sym_final] = ACTIONS(1553), + [anon_sym_synchronized] = ACTIONS(1553), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_new] = ACTIONS(1553), + }, + [687] = { + [sym_comment] = STATE(687), + [sym_groovy_doc] = STATE(687), + [ts_builtin_sym_end] = ACTIONS(1555), + [sym_identifier] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1557), + [anon_sym_continue] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1555), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_STAR_COLON] = ACTIONS(1555), + [anon_sym_import] = ACTIONS(1557), + [anon_sym_package] = ACTIONS(1557), + [anon_sym_AT] = ACTIONS(1557), + [anon_sym_assert] = ACTIONS(1557), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_SLASH] = ACTIONS(1557), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [anon_sym_ATinterface] = ACTIONS(1555), + [anon_sym_interface] = ACTIONS(1557), + [anon_sym_class] = ACTIONS(1557), + [anon_sym_COMMA] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1555), + [anon_sym_RBRACE] = ACTIONS(1555), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1557), + [anon_sym_this] = ACTIONS(1557), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_RPAREN] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1557), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_else] = ACTIONS(1557), + [anon_sym_LBRACK] = ACTIONS(1555), + [aux_sym_number_literal_token1] = ACTIONS(1557), + [aux_sym_number_literal_token2] = ACTIONS(1555), + [aux_sym_number_literal_token3] = ACTIONS(1555), + [aux_sym_number_literal_token4] = ACTIONS(1557), + [aux_sym_number_literal_token5] = ACTIONS(1555), + [anon_sym_pipeline] = ACTIONS(1557), + [anon_sym_return] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1555), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1555), + [anon_sym_switch] = ACTIONS(1557), + [anon_sym_try] = ACTIONS(1557), + [anon_sym_catch] = ACTIONS(1557), + [anon_sym_finally] = ACTIONS(1557), + [anon_sym_int] = ACTIONS(1557), + [anon_sym_boolean] = ACTIONS(1557), + [anon_sym_char] = ACTIONS(1557), + [anon_sym_short] = ACTIONS(1557), + [anon_sym_long] = ACTIONS(1557), + [anon_sym_float] = ACTIONS(1557), + [anon_sym_double] = ACTIONS(1557), + [anon_sym_void] = ACTIONS(1557), + [anon_sym_public] = ACTIONS(1557), + [anon_sym_protected] = ACTIONS(1557), + [anon_sym_private] = ACTIONS(1557), + [anon_sym_static] = ACTIONS(1557), + [anon_sym_final] = ACTIONS(1557), + [anon_sym_synchronized] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1557), + }, + [688] = { + [sym_comment] = STATE(688), + [sym_groovy_doc] = STATE(688), + [ts_builtin_sym_end] = ACTIONS(1559), + [sym_identifier] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_STAR_COLON] = ACTIONS(1559), + [anon_sym_import] = ACTIONS(1561), + [anon_sym_package] = ACTIONS(1561), + [anon_sym_AT] = ACTIONS(1561), + [anon_sym_assert] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_SLASH] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [anon_sym_ATinterface] = ACTIONS(1559), + [anon_sym_interface] = ACTIONS(1561), + [anon_sym_class] = ACTIONS(1561), + [anon_sym_COMMA] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1559), + [anon_sym_RBRACE] = ACTIONS(1559), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(1561), + [anon_sym_null] = ACTIONS(1561), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_RPAREN] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_else] = ACTIONS(1561), + [anon_sym_LBRACK] = ACTIONS(1559), + [aux_sym_number_literal_token1] = ACTIONS(1561), + [aux_sym_number_literal_token2] = ACTIONS(1559), + [aux_sym_number_literal_token3] = ACTIONS(1559), + [aux_sym_number_literal_token4] = ACTIONS(1561), + [aux_sym_number_literal_token5] = ACTIONS(1559), + [anon_sym_pipeline] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_SQUOTE] = ACTIONS(1561), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1561), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1559), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1559), + [anon_sym_switch] = ACTIONS(1561), + [anon_sym_try] = ACTIONS(1561), + [anon_sym_catch] = ACTIONS(1561), + [anon_sym_finally] = ACTIONS(1561), + [anon_sym_int] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_char] = ACTIONS(1561), + [anon_sym_short] = ACTIONS(1561), + [anon_sym_long] = ACTIONS(1561), + [anon_sym_float] = ACTIONS(1561), + [anon_sym_double] = ACTIONS(1561), + [anon_sym_void] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_final] = ACTIONS(1561), + [anon_sym_synchronized] = ACTIONS(1561), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_new] = ACTIONS(1561), + }, + [689] = { + [sym_comment] = STATE(689), + [sym_groovy_doc] = STATE(689), + [ts_builtin_sym_end] = ACTIONS(1563), + [sym_identifier] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(1565), + [anon_sym_STAR_COLON] = ACTIONS(1563), + [anon_sym_import] = ACTIONS(1565), + [anon_sym_package] = ACTIONS(1565), + [anon_sym_AT] = ACTIONS(1565), + [anon_sym_assert] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1563), + [anon_sym_SLASH] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1565), + [anon_sym_false] = ACTIONS(1565), + [anon_sym_ATinterface] = ACTIONS(1563), + [anon_sym_interface] = ACTIONS(1565), + [anon_sym_class] = ACTIONS(1565), + [anon_sym_COMMA] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1563), + [anon_sym_RBRACE] = ACTIONS(1563), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1565), + [anon_sym_this] = ACTIONS(1565), + [anon_sym_null] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_RPAREN] = ACTIONS(1563), + [anon_sym_do] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_else] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1563), + [aux_sym_number_literal_token1] = ACTIONS(1565), + [aux_sym_number_literal_token2] = ACTIONS(1563), + [aux_sym_number_literal_token3] = ACTIONS(1563), + [aux_sym_number_literal_token4] = ACTIONS(1565), + [aux_sym_number_literal_token5] = ACTIONS(1563), + [anon_sym_pipeline] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_SQUOTE] = ACTIONS(1565), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1565), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1563), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1563), + [anon_sym_switch] = ACTIONS(1565), + [anon_sym_try] = ACTIONS(1565), + [anon_sym_catch] = ACTIONS(1565), + [anon_sym_finally] = ACTIONS(1565), + [anon_sym_int] = ACTIONS(1565), + [anon_sym_boolean] = ACTIONS(1565), + [anon_sym_char] = ACTIONS(1565), + [anon_sym_short] = ACTIONS(1565), + [anon_sym_long] = ACTIONS(1565), + [anon_sym_float] = ACTIONS(1565), + [anon_sym_double] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_public] = ACTIONS(1565), + [anon_sym_protected] = ACTIONS(1565), + [anon_sym_private] = ACTIONS(1565), + [anon_sym_static] = ACTIONS(1565), + [anon_sym_final] = ACTIONS(1565), + [anon_sym_synchronized] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_new] = ACTIONS(1565), + }, + [690] = { + [sym_comment] = STATE(690), + [sym_groovy_doc] = STATE(690), + [ts_builtin_sym_end] = ACTIONS(1567), + [sym_identifier] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_STAR] = ACTIONS(1569), + [anon_sym_STAR_COLON] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(1569), + [anon_sym_package] = ACTIONS(1569), + [anon_sym_AT] = ACTIONS(1569), + [anon_sym_assert] = ACTIONS(1569), + [anon_sym_PLUS_PLUS] = ACTIONS(1567), + [anon_sym_DASH_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_ATinterface] = ACTIONS(1567), + [anon_sym_interface] = ACTIONS(1569), + [anon_sym_class] = ACTIONS(1569), + [anon_sym_COMMA] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1567), + [anon_sym_RBRACE] = ACTIONS(1567), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1569), + [anon_sym_this] = ACTIONS(1569), + [anon_sym_null] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_RPAREN] = ACTIONS(1567), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1567), + [aux_sym_number_literal_token1] = ACTIONS(1569), + [aux_sym_number_literal_token2] = ACTIONS(1567), + [aux_sym_number_literal_token3] = ACTIONS(1567), + [aux_sym_number_literal_token4] = ACTIONS(1569), + [aux_sym_number_literal_token5] = ACTIONS(1567), + [anon_sym_pipeline] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_SQUOTE] = ACTIONS(1569), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1567), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1567), + [anon_sym_switch] = ACTIONS(1569), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_catch] = ACTIONS(1569), + [anon_sym_finally] = ACTIONS(1569), + [anon_sym_int] = ACTIONS(1569), + [anon_sym_boolean] = ACTIONS(1569), + [anon_sym_char] = ACTIONS(1569), + [anon_sym_short] = ACTIONS(1569), + [anon_sym_long] = ACTIONS(1569), + [anon_sym_float] = ACTIONS(1569), + [anon_sym_double] = ACTIONS(1569), + [anon_sym_void] = ACTIONS(1569), + [anon_sym_public] = ACTIONS(1569), + [anon_sym_protected] = ACTIONS(1569), + [anon_sym_private] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1569), + [anon_sym_final] = ACTIONS(1569), + [anon_sym_synchronized] = ACTIONS(1569), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_new] = ACTIONS(1569), + }, + [691] = { + [sym_comment] = STATE(691), + [sym_groovy_doc] = STATE(691), + [ts_builtin_sym_end] = ACTIONS(1571), + [sym_identifier] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_STAR_COLON] = ACTIONS(1571), + [anon_sym_import] = ACTIONS(1573), + [anon_sym_package] = ACTIONS(1573), + [anon_sym_AT] = ACTIONS(1573), + [anon_sym_assert] = ACTIONS(1573), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1573), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [anon_sym_ATinterface] = ACTIONS(1571), + [anon_sym_interface] = ACTIONS(1573), + [anon_sym_class] = ACTIONS(1573), + [anon_sym_COMMA] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_RBRACE] = ACTIONS(1571), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1573), + [anon_sym_this] = ACTIONS(1573), + [anon_sym_null] = ACTIONS(1573), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_RPAREN] = ACTIONS(1571), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_else] = ACTIONS(1573), + [anon_sym_LBRACK] = ACTIONS(1571), + [aux_sym_number_literal_token1] = ACTIONS(1573), + [aux_sym_number_literal_token2] = ACTIONS(1571), + [aux_sym_number_literal_token3] = ACTIONS(1571), + [aux_sym_number_literal_token4] = ACTIONS(1573), + [aux_sym_number_literal_token5] = ACTIONS(1571), + [anon_sym_pipeline] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1571), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1571), + [anon_sym_switch] = ACTIONS(1573), + [anon_sym_try] = ACTIONS(1573), + [anon_sym_catch] = ACTIONS(1573), + [anon_sym_finally] = ACTIONS(1573), + [anon_sym_int] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_char] = ACTIONS(1573), + [anon_sym_short] = ACTIONS(1573), + [anon_sym_long] = ACTIONS(1573), + [anon_sym_float] = ACTIONS(1573), + [anon_sym_double] = ACTIONS(1573), + [anon_sym_void] = ACTIONS(1573), + [anon_sym_public] = ACTIONS(1573), + [anon_sym_protected] = ACTIONS(1573), + [anon_sym_private] = ACTIONS(1573), + [anon_sym_static] = ACTIONS(1573), + [anon_sym_final] = ACTIONS(1573), + [anon_sym_synchronized] = ACTIONS(1573), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_new] = ACTIONS(1573), + }, + [692] = { + [sym_comment] = STATE(692), + [sym_groovy_doc] = STATE(692), + [ts_builtin_sym_end] = ACTIONS(1575), + [sym_identifier] = ACTIONS(1577), + [anon_sym_break] = ACTIONS(1577), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1577), + [anon_sym_STAR_COLON] = ACTIONS(1575), + [anon_sym_import] = ACTIONS(1577), + [anon_sym_package] = ACTIONS(1577), + [anon_sym_AT] = ACTIONS(1577), + [anon_sym_assert] = ACTIONS(1577), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_true] = ACTIONS(1577), + [anon_sym_false] = ACTIONS(1577), + [anon_sym_ATinterface] = ACTIONS(1575), + [anon_sym_interface] = ACTIONS(1577), + [anon_sym_class] = ACTIONS(1577), + [anon_sym_COMMA] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_RBRACE] = ACTIONS(1575), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1577), + [anon_sym_this] = ACTIONS(1577), + [anon_sym_null] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_RPAREN] = ACTIONS(1575), + [anon_sym_do] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1577), + [anon_sym_for] = ACTIONS(1577), + [anon_sym_if] = ACTIONS(1577), + [anon_sym_else] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1575), + [aux_sym_number_literal_token1] = ACTIONS(1577), + [aux_sym_number_literal_token2] = ACTIONS(1575), + [aux_sym_number_literal_token3] = ACTIONS(1575), + [aux_sym_number_literal_token4] = ACTIONS(1577), + [aux_sym_number_literal_token5] = ACTIONS(1575), + [anon_sym_pipeline] = ACTIONS(1577), + [anon_sym_return] = ACTIONS(1577), + [anon_sym_SQUOTE] = ACTIONS(1577), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1577), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1575), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1575), + [anon_sym_switch] = ACTIONS(1577), + [anon_sym_try] = ACTIONS(1577), + [anon_sym_catch] = ACTIONS(1577), + [anon_sym_finally] = ACTIONS(1577), + [anon_sym_int] = ACTIONS(1577), + [anon_sym_boolean] = ACTIONS(1577), + [anon_sym_char] = ACTIONS(1577), + [anon_sym_short] = ACTIONS(1577), + [anon_sym_long] = ACTIONS(1577), + [anon_sym_float] = ACTIONS(1577), + [anon_sym_double] = ACTIONS(1577), + [anon_sym_void] = ACTIONS(1577), + [anon_sym_public] = ACTIONS(1577), + [anon_sym_protected] = ACTIONS(1577), + [anon_sym_private] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1577), + [anon_sym_final] = ACTIONS(1577), + [anon_sym_synchronized] = ACTIONS(1577), + [anon_sym_TILDE] = ACTIONS(1575), + [anon_sym_BANG] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), + }, + [693] = { + [sym_comment] = STATE(693), + [sym_groovy_doc] = STATE(693), + [ts_builtin_sym_end] = ACTIONS(610), + [sym_identifier] = ACTIONS(608), + [anon_sym_break] = ACTIONS(608), + [anon_sym_continue] = ACTIONS(608), + [anon_sym_SEMI] = ACTIONS(610), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_STAR_COLON] = ACTIONS(610), + [anon_sym_import] = ACTIONS(608), + [anon_sym_package] = ACTIONS(608), + [anon_sym_AT] = ACTIONS(608), + [anon_sym_assert] = ACTIONS(608), + [anon_sym_PLUS_PLUS] = ACTIONS(610), + [anon_sym_DASH_DASH] = ACTIONS(610), + [anon_sym_SLASH] = ACTIONS(608), + [anon_sym_PLUS] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(608), + [anon_sym_true] = ACTIONS(608), + [anon_sym_false] = ACTIONS(608), + [anon_sym_ATinterface] = ACTIONS(610), + [anon_sym_interface] = ACTIONS(608), + [anon_sym_class] = ACTIONS(608), + [anon_sym_COMMA] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_RBRACE] = ACTIONS(610), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(608), + [anon_sym_this] = ACTIONS(608), + [anon_sym_null] = ACTIONS(608), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_RPAREN] = ACTIONS(610), + [anon_sym_do] = ACTIONS(608), + [anon_sym_while] = ACTIONS(608), + [anon_sym_for] = ACTIONS(608), + [anon_sym_if] = ACTIONS(608), + [anon_sym_else] = ACTIONS(608), + [anon_sym_LBRACK] = ACTIONS(610), + [aux_sym_number_literal_token1] = ACTIONS(608), + [aux_sym_number_literal_token2] = ACTIONS(610), + [aux_sym_number_literal_token3] = ACTIONS(610), + [aux_sym_number_literal_token4] = ACTIONS(608), + [aux_sym_number_literal_token5] = ACTIONS(610), + [anon_sym_pipeline] = ACTIONS(608), + [anon_sym_return] = ACTIONS(608), + [anon_sym_SQUOTE] = ACTIONS(608), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(610), + [anon_sym_DQUOTE] = ACTIONS(608), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(610), + [anon_sym_DOLLAR_SLASH] = ACTIONS(610), + [anon_sym_switch] = ACTIONS(608), + [anon_sym_try] = ACTIONS(608), + [anon_sym_catch] = ACTIONS(608), + [anon_sym_finally] = ACTIONS(608), + [anon_sym_int] = ACTIONS(608), + [anon_sym_boolean] = ACTIONS(608), + [anon_sym_char] = ACTIONS(608), + [anon_sym_short] = ACTIONS(608), + [anon_sym_long] = ACTIONS(608), + [anon_sym_float] = ACTIONS(608), + [anon_sym_double] = ACTIONS(608), + [anon_sym_void] = ACTIONS(608), + [anon_sym_public] = ACTIONS(608), + [anon_sym_protected] = ACTIONS(608), + [anon_sym_private] = ACTIONS(608), + [anon_sym_static] = ACTIONS(608), + [anon_sym_final] = ACTIONS(608), + [anon_sym_synchronized] = ACTIONS(608), + [anon_sym_TILDE] = ACTIONS(610), + [anon_sym_BANG] = ACTIONS(610), + [anon_sym_new] = ACTIONS(608), + }, + [694] = { + [sym_comment] = STATE(694), + [sym_groovy_doc] = STATE(694), + [ts_builtin_sym_end] = ACTIONS(1579), + [sym_identifier] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1581), + [anon_sym_STAR_COLON] = ACTIONS(1579), + [anon_sym_import] = ACTIONS(1581), + [anon_sym_package] = ACTIONS(1581), + [anon_sym_AT] = ACTIONS(1581), + [anon_sym_assert] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1581), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), + [anon_sym_ATinterface] = ACTIONS(1579), + [anon_sym_interface] = ACTIONS(1581), + [anon_sym_class] = ACTIONS(1581), + [anon_sym_COMMA] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1581), + [anon_sym_this] = ACTIONS(1581), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_else] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [aux_sym_number_literal_token1] = ACTIONS(1581), + [aux_sym_number_literal_token2] = ACTIONS(1579), + [aux_sym_number_literal_token3] = ACTIONS(1579), + [aux_sym_number_literal_token4] = ACTIONS(1581), + [aux_sym_number_literal_token5] = ACTIONS(1579), + [anon_sym_pipeline] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_SQUOTE] = ACTIONS(1581), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1581), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1579), + [anon_sym_switch] = ACTIONS(1581), + [anon_sym_try] = ACTIONS(1581), + [anon_sym_catch] = ACTIONS(1581), + [anon_sym_finally] = ACTIONS(1581), + [anon_sym_int] = ACTIONS(1581), + [anon_sym_boolean] = ACTIONS(1581), + [anon_sym_char] = ACTIONS(1581), + [anon_sym_short] = ACTIONS(1581), + [anon_sym_long] = ACTIONS(1581), + [anon_sym_float] = ACTIONS(1581), + [anon_sym_double] = ACTIONS(1581), + [anon_sym_void] = ACTIONS(1581), + [anon_sym_public] = ACTIONS(1581), + [anon_sym_protected] = ACTIONS(1581), + [anon_sym_private] = ACTIONS(1581), + [anon_sym_static] = ACTIONS(1581), + [anon_sym_final] = ACTIONS(1581), + [anon_sym_synchronized] = ACTIONS(1581), + [anon_sym_TILDE] = ACTIONS(1579), + [anon_sym_BANG] = ACTIONS(1579), + [anon_sym_new] = ACTIONS(1581), + }, + [695] = { + [sym_comment] = STATE(695), + [sym_groovy_doc] = STATE(695), + [ts_builtin_sym_end] = ACTIONS(1583), + [sym_identifier] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_STAR_COLON] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(1585), + [anon_sym_package] = ACTIONS(1585), + [anon_sym_AT] = ACTIONS(1585), + [anon_sym_assert] = ACTIONS(1585), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_true] = ACTIONS(1585), + [anon_sym_false] = ACTIONS(1585), + [anon_sym_ATinterface] = ACTIONS(1583), + [anon_sym_interface] = ACTIONS(1585), + [anon_sym_class] = ACTIONS(1585), + [anon_sym_COMMA] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1583), + [anon_sym_RBRACE] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1585), + [anon_sym_this] = ACTIONS(1585), + [anon_sym_null] = ACTIONS(1585), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_RPAREN] = ACTIONS(1583), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_else] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1583), + [aux_sym_number_literal_token1] = ACTIONS(1585), + [aux_sym_number_literal_token2] = ACTIONS(1583), + [aux_sym_number_literal_token3] = ACTIONS(1583), + [aux_sym_number_literal_token4] = ACTIONS(1585), + [aux_sym_number_literal_token5] = ACTIONS(1583), + [anon_sym_pipeline] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1585), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1583), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1583), + [anon_sym_switch] = ACTIONS(1585), + [anon_sym_try] = ACTIONS(1585), + [anon_sym_catch] = ACTIONS(1585), + [anon_sym_finally] = ACTIONS(1585), + [anon_sym_int] = ACTIONS(1585), + [anon_sym_boolean] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_short] = ACTIONS(1585), + [anon_sym_long] = ACTIONS(1585), + [anon_sym_float] = ACTIONS(1585), + [anon_sym_double] = ACTIONS(1585), + [anon_sym_void] = ACTIONS(1585), + [anon_sym_public] = ACTIONS(1585), + [anon_sym_protected] = ACTIONS(1585), + [anon_sym_private] = ACTIONS(1585), + [anon_sym_static] = ACTIONS(1585), + [anon_sym_final] = ACTIONS(1585), + [anon_sym_synchronized] = ACTIONS(1585), + [anon_sym_TILDE] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1583), + [anon_sym_new] = ACTIONS(1585), + }, + [696] = { + [sym_comment] = STATE(696), + [sym_groovy_doc] = STATE(696), + [ts_builtin_sym_end] = ACTIONS(1587), + [sym_identifier] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_STAR_COLON] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1589), + [anon_sym_package] = ACTIONS(1589), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_assert] = ACTIONS(1589), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_SLASH] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_ATinterface] = ACTIONS(1587), + [anon_sym_interface] = ACTIONS(1589), + [anon_sym_class] = ACTIONS(1589), + [anon_sym_COMMA] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_RPAREN] = ACTIONS(1587), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1587), + [aux_sym_number_literal_token1] = ACTIONS(1589), + [aux_sym_number_literal_token2] = ACTIONS(1587), + [aux_sym_number_literal_token3] = ACTIONS(1587), + [aux_sym_number_literal_token4] = ACTIONS(1589), + [aux_sym_number_literal_token5] = ACTIONS(1587), + [anon_sym_pipeline] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1587), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1587), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_catch] = ACTIONS(1589), + [anon_sym_finally] = ACTIONS(1589), + [anon_sym_int] = ACTIONS(1589), + [anon_sym_boolean] = ACTIONS(1589), + [anon_sym_char] = ACTIONS(1589), + [anon_sym_short] = ACTIONS(1589), + [anon_sym_long] = ACTIONS(1589), + [anon_sym_float] = ACTIONS(1589), + [anon_sym_double] = ACTIONS(1589), + [anon_sym_void] = ACTIONS(1589), + [anon_sym_public] = ACTIONS(1589), + [anon_sym_protected] = ACTIONS(1589), + [anon_sym_private] = ACTIONS(1589), + [anon_sym_static] = ACTIONS(1589), + [anon_sym_final] = ACTIONS(1589), + [anon_sym_synchronized] = ACTIONS(1589), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_new] = ACTIONS(1589), + }, + [697] = { + [sym_comment] = STATE(697), + [sym_groovy_doc] = STATE(697), + [ts_builtin_sym_end] = ACTIONS(431), + [sym_identifier] = ACTIONS(429), + [anon_sym_break] = ACTIONS(429), + [anon_sym_continue] = ACTIONS(429), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_STAR_COLON] = ACTIONS(431), + [anon_sym_import] = ACTIONS(429), + [anon_sym_package] = ACTIONS(429), + [anon_sym_AT] = ACTIONS(429), + [anon_sym_assert] = ACTIONS(429), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ATinterface] = ACTIONS(431), + [anon_sym_interface] = ACTIONS(429), + [anon_sym_class] = ACTIONS(429), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_RBRACE] = ACTIONS(431), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(429), + [anon_sym_this] = ACTIONS(429), + [anon_sym_null] = ACTIONS(429), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [anon_sym_do] = ACTIONS(429), + [anon_sym_while] = ACTIONS(429), + [anon_sym_for] = ACTIONS(429), + [anon_sym_if] = ACTIONS(429), + [anon_sym_else] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(431), + [aux_sym_number_literal_token1] = ACTIONS(429), + [aux_sym_number_literal_token2] = ACTIONS(431), + [aux_sym_number_literal_token3] = ACTIONS(431), + [aux_sym_number_literal_token4] = ACTIONS(429), + [aux_sym_number_literal_token5] = ACTIONS(431), + [anon_sym_pipeline] = ACTIONS(429), + [anon_sym_return] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(429), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(429), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(431), + [anon_sym_DOLLAR_SLASH] = ACTIONS(431), + [anon_sym_switch] = ACTIONS(429), + [anon_sym_try] = ACTIONS(429), + [anon_sym_catch] = ACTIONS(429), + [anon_sym_finally] = ACTIONS(429), + [anon_sym_int] = ACTIONS(429), + [anon_sym_boolean] = ACTIONS(429), + [anon_sym_char] = ACTIONS(429), + [anon_sym_short] = ACTIONS(429), + [anon_sym_long] = ACTIONS(429), + [anon_sym_float] = ACTIONS(429), + [anon_sym_double] = ACTIONS(429), + [anon_sym_void] = ACTIONS(429), + [anon_sym_public] = ACTIONS(429), + [anon_sym_protected] = ACTIONS(429), + [anon_sym_private] = ACTIONS(429), + [anon_sym_static] = ACTIONS(429), + [anon_sym_final] = ACTIONS(429), + [anon_sym_synchronized] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_new] = ACTIONS(429), + }, + [698] = { + [sym_comment] = STATE(698), + [sym_groovy_doc] = STATE(698), + [ts_builtin_sym_end] = ACTIONS(1591), + [sym_identifier] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_STAR] = ACTIONS(1593), + [anon_sym_STAR_COLON] = ACTIONS(1591), + [anon_sym_import] = ACTIONS(1593), + [anon_sym_package] = ACTIONS(1593), + [anon_sym_AT] = ACTIONS(1593), + [anon_sym_assert] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [anon_sym_ATinterface] = ACTIONS(1591), + [anon_sym_interface] = ACTIONS(1593), + [anon_sym_class] = ACTIONS(1593), + [anon_sym_COMMA] = ACTIONS(1591), + [anon_sym_LBRACE] = ACTIONS(1591), + [anon_sym_RBRACE] = ACTIONS(1591), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1593), + [anon_sym_this] = ACTIONS(1593), + [anon_sym_null] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_RPAREN] = ACTIONS(1591), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_else] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1591), + [aux_sym_number_literal_token1] = ACTIONS(1593), + [aux_sym_number_literal_token2] = ACTIONS(1591), + [aux_sym_number_literal_token3] = ACTIONS(1591), + [aux_sym_number_literal_token4] = ACTIONS(1593), + [aux_sym_number_literal_token5] = ACTIONS(1591), + [anon_sym_pipeline] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1591), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1591), + [anon_sym_switch] = ACTIONS(1593), + [anon_sym_try] = ACTIONS(1593), + [anon_sym_catch] = ACTIONS(1593), + [anon_sym_finally] = ACTIONS(1593), + [anon_sym_int] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_char] = ACTIONS(1593), + [anon_sym_short] = ACTIONS(1593), + [anon_sym_long] = ACTIONS(1593), + [anon_sym_float] = ACTIONS(1593), + [anon_sym_double] = ACTIONS(1593), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_final] = ACTIONS(1593), + [anon_sym_synchronized] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + }, + [699] = { + [sym_comment] = STATE(699), + [sym_groovy_doc] = STATE(699), + [ts_builtin_sym_end] = ACTIONS(1595), + [sym_identifier] = ACTIONS(1597), + [anon_sym_break] = ACTIONS(1597), + [anon_sym_continue] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_STAR_COLON] = ACTIONS(1595), + [anon_sym_import] = ACTIONS(1597), + [anon_sym_package] = ACTIONS(1597), + [anon_sym_AT] = ACTIONS(1597), + [anon_sym_assert] = ACTIONS(1597), + [anon_sym_PLUS_PLUS] = ACTIONS(1595), + [anon_sym_DASH_DASH] = ACTIONS(1595), + [anon_sym_SLASH] = ACTIONS(1597), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1597), + [anon_sym_false] = ACTIONS(1597), + [anon_sym_ATinterface] = ACTIONS(1595), + [anon_sym_interface] = ACTIONS(1597), + [anon_sym_class] = ACTIONS(1597), + [anon_sym_COMMA] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1595), + [anon_sym_RBRACE] = ACTIONS(1595), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1597), + [anon_sym_this] = ACTIONS(1597), + [anon_sym_null] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_RPAREN] = ACTIONS(1595), + [anon_sym_do] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_else] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1595), + [aux_sym_number_literal_token1] = ACTIONS(1597), + [aux_sym_number_literal_token2] = ACTIONS(1595), + [aux_sym_number_literal_token3] = ACTIONS(1595), + [aux_sym_number_literal_token4] = ACTIONS(1597), + [aux_sym_number_literal_token5] = ACTIONS(1595), + [anon_sym_pipeline] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(1597), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1595), + [anon_sym_DQUOTE] = ACTIONS(1597), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1595), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1595), + [anon_sym_switch] = ACTIONS(1597), + [anon_sym_try] = ACTIONS(1597), + [anon_sym_catch] = ACTIONS(1597), + [anon_sym_finally] = ACTIONS(1597), + [anon_sym_int] = ACTIONS(1597), + [anon_sym_boolean] = ACTIONS(1597), + [anon_sym_char] = ACTIONS(1597), + [anon_sym_short] = ACTIONS(1597), + [anon_sym_long] = ACTIONS(1597), + [anon_sym_float] = ACTIONS(1597), + [anon_sym_double] = ACTIONS(1597), + [anon_sym_void] = ACTIONS(1597), + [anon_sym_public] = ACTIONS(1597), + [anon_sym_protected] = ACTIONS(1597), + [anon_sym_private] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_final] = ACTIONS(1597), + [anon_sym_synchronized] = ACTIONS(1597), + [anon_sym_TILDE] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + }, + [700] = { + [sym_comment] = STATE(700), + [sym_groovy_doc] = STATE(700), + [ts_builtin_sym_end] = ACTIONS(1599), + [sym_identifier] = ACTIONS(1601), + [anon_sym_break] = ACTIONS(1601), + [anon_sym_continue] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1601), + [anon_sym_STAR_COLON] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(1601), + [anon_sym_package] = ACTIONS(1601), + [anon_sym_AT] = ACTIONS(1601), + [anon_sym_assert] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [anon_sym_ATinterface] = ACTIONS(1599), + [anon_sym_interface] = ACTIONS(1601), + [anon_sym_class] = ACTIONS(1601), + [anon_sym_COMMA] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1601), + [anon_sym_this] = ACTIONS(1601), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(1599), + [anon_sym_do] = ACTIONS(1601), + [anon_sym_while] = ACTIONS(1601), + [anon_sym_for] = ACTIONS(1601), + [anon_sym_if] = ACTIONS(1601), + [anon_sym_else] = ACTIONS(1601), + [anon_sym_LBRACK] = ACTIONS(1599), + [aux_sym_number_literal_token1] = ACTIONS(1601), + [aux_sym_number_literal_token2] = ACTIONS(1599), + [aux_sym_number_literal_token3] = ACTIONS(1599), + [aux_sym_number_literal_token4] = ACTIONS(1601), + [aux_sym_number_literal_token5] = ACTIONS(1599), + [anon_sym_pipeline] = ACTIONS(1601), + [anon_sym_return] = ACTIONS(1601), + [anon_sym_SQUOTE] = ACTIONS(1601), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1601), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1599), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1599), + [anon_sym_switch] = ACTIONS(1601), + [anon_sym_try] = ACTIONS(1601), + [anon_sym_catch] = ACTIONS(1601), + [anon_sym_finally] = ACTIONS(1601), + [anon_sym_int] = ACTIONS(1601), + [anon_sym_boolean] = ACTIONS(1601), + [anon_sym_char] = ACTIONS(1601), + [anon_sym_short] = ACTIONS(1601), + [anon_sym_long] = ACTIONS(1601), + [anon_sym_float] = ACTIONS(1601), + [anon_sym_double] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_public] = ACTIONS(1601), + [anon_sym_protected] = ACTIONS(1601), + [anon_sym_private] = ACTIONS(1601), + [anon_sym_static] = ACTIONS(1601), + [anon_sym_final] = ACTIONS(1601), + [anon_sym_synchronized] = ACTIONS(1601), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_new] = ACTIONS(1601), + }, + [701] = { + [sym_comment] = STATE(701), + [sym_groovy_doc] = STATE(701), + [ts_builtin_sym_end] = ACTIONS(95), + [sym_identifier] = ACTIONS(89), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_STAR_COLON] = ACTIONS(95), + [anon_sym_import] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [anon_sym_ATinterface] = ACTIONS(95), + [anon_sym_interface] = ACTIONS(89), + [anon_sym_class] = ACTIONS(89), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_null] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_RPAREN] = ACTIONS(95), + [anon_sym_do] = ACTIONS(89), + [anon_sym_while] = ACTIONS(89), + [anon_sym_for] = ACTIONS(89), + [anon_sym_if] = ACTIONS(89), + [anon_sym_else] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(95), + [aux_sym_number_literal_token1] = ACTIONS(89), + [aux_sym_number_literal_token2] = ACTIONS(95), + [aux_sym_number_literal_token3] = ACTIONS(95), + [aux_sym_number_literal_token4] = ACTIONS(89), + [aux_sym_number_literal_token5] = ACTIONS(95), + [anon_sym_pipeline] = ACTIONS(89), + [anon_sym_return] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SLASH] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(89), + [anon_sym_try] = ACTIONS(89), + [anon_sym_catch] = ACTIONS(89), + [anon_sym_finally] = ACTIONS(89), + [anon_sym_int] = ACTIONS(89), + [anon_sym_boolean] = ACTIONS(89), + [anon_sym_char] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_float] = ACTIONS(89), + [anon_sym_double] = ACTIONS(89), + [anon_sym_void] = ACTIONS(89), + [anon_sym_public] = ACTIONS(89), + [anon_sym_protected] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_static] = ACTIONS(89), + [anon_sym_final] = ACTIONS(89), + [anon_sym_synchronized] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_new] = ACTIONS(89), + }, + [702] = { + [sym_comment] = STATE(702), + [sym_groovy_doc] = STATE(702), + [ts_builtin_sym_end] = ACTIONS(1603), + [sym_identifier] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_STAR_COLON] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(1605), + [anon_sym_package] = ACTIONS(1605), + [anon_sym_AT] = ACTIONS(1605), + [anon_sym_assert] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1605), + [anon_sym_false] = ACTIONS(1605), + [anon_sym_ATinterface] = ACTIONS(1603), + [anon_sym_interface] = ACTIONS(1605), + [anon_sym_class] = ACTIONS(1605), + [anon_sym_COMMA] = ACTIONS(1603), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_RBRACE] = ACTIONS(1603), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1605), + [anon_sym_this] = ACTIONS(1605), + [anon_sym_null] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_RPAREN] = ACTIONS(1603), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_else] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(1603), + [aux_sym_number_literal_token1] = ACTIONS(1605), + [aux_sym_number_literal_token2] = ACTIONS(1603), + [aux_sym_number_literal_token3] = ACTIONS(1603), + [aux_sym_number_literal_token4] = ACTIONS(1605), + [aux_sym_number_literal_token5] = ACTIONS(1603), + [anon_sym_pipeline] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1605), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1603), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1603), + [anon_sym_switch] = ACTIONS(1605), + [anon_sym_try] = ACTIONS(1605), + [anon_sym_catch] = ACTIONS(1605), + [anon_sym_finally] = ACTIONS(1605), + [anon_sym_int] = ACTIONS(1605), + [anon_sym_boolean] = ACTIONS(1605), + [anon_sym_char] = ACTIONS(1605), + [anon_sym_short] = ACTIONS(1605), + [anon_sym_long] = ACTIONS(1605), + [anon_sym_float] = ACTIONS(1605), + [anon_sym_double] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_public] = ACTIONS(1605), + [anon_sym_protected] = ACTIONS(1605), + [anon_sym_private] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1605), + [anon_sym_final] = ACTIONS(1605), + [anon_sym_synchronized] = ACTIONS(1605), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1605), + }, + [703] = { + [sym_comment] = STATE(703), + [sym_groovy_doc] = STATE(703), + [ts_builtin_sym_end] = ACTIONS(95), + [sym_identifier] = ACTIONS(89), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_STAR_COLON] = ACTIONS(95), + [anon_sym_import] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [anon_sym_ATinterface] = ACTIONS(95), + [anon_sym_interface] = ACTIONS(89), + [anon_sym_class] = ACTIONS(89), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_null] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_RPAREN] = ACTIONS(95), + [anon_sym_do] = ACTIONS(89), + [anon_sym_while] = ACTIONS(89), + [anon_sym_for] = ACTIONS(89), + [anon_sym_if] = ACTIONS(89), + [anon_sym_else] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(95), + [aux_sym_number_literal_token1] = ACTIONS(89), + [aux_sym_number_literal_token2] = ACTIONS(95), + [aux_sym_number_literal_token3] = ACTIONS(95), + [aux_sym_number_literal_token4] = ACTIONS(89), + [aux_sym_number_literal_token5] = ACTIONS(95), + [anon_sym_pipeline] = ACTIONS(89), + [anon_sym_return] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SLASH] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(89), + [anon_sym_try] = ACTIONS(89), + [anon_sym_catch] = ACTIONS(89), + [anon_sym_finally] = ACTIONS(89), + [anon_sym_int] = ACTIONS(89), + [anon_sym_boolean] = ACTIONS(89), + [anon_sym_char] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_float] = ACTIONS(89), + [anon_sym_double] = ACTIONS(89), + [anon_sym_void] = ACTIONS(89), + [anon_sym_public] = ACTIONS(89), + [anon_sym_protected] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_static] = ACTIONS(89), + [anon_sym_final] = ACTIONS(89), + [anon_sym_synchronized] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_new] = ACTIONS(89), + }, + [704] = { + [sym_comment] = STATE(704), + [sym_groovy_doc] = STATE(704), + [ts_builtin_sym_end] = ACTIONS(1607), + [sym_identifier] = ACTIONS(1609), + [anon_sym_break] = ACTIONS(1609), + [anon_sym_continue] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_STAR_COLON] = ACTIONS(1607), + [anon_sym_import] = ACTIONS(1609), + [anon_sym_package] = ACTIONS(1609), + [anon_sym_AT] = ACTIONS(1609), + [anon_sym_assert] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1609), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [anon_sym_ATinterface] = ACTIONS(1607), + [anon_sym_interface] = ACTIONS(1609), + [anon_sym_class] = ACTIONS(1609), + [anon_sym_COMMA] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1607), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1609), + [anon_sym_this] = ACTIONS(1609), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_RPAREN] = ACTIONS(1607), + [anon_sym_do] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1609), + [anon_sym_for] = ACTIONS(1609), + [anon_sym_if] = ACTIONS(1609), + [anon_sym_else] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1607), + [aux_sym_number_literal_token1] = ACTIONS(1609), + [aux_sym_number_literal_token2] = ACTIONS(1607), + [aux_sym_number_literal_token3] = ACTIONS(1607), + [aux_sym_number_literal_token4] = ACTIONS(1609), + [aux_sym_number_literal_token5] = ACTIONS(1607), + [anon_sym_pipeline] = ACTIONS(1609), + [anon_sym_return] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(1609), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1609), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1607), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1607), + [anon_sym_switch] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1609), + [anon_sym_catch] = ACTIONS(1609), + [anon_sym_finally] = ACTIONS(1609), + [anon_sym_int] = ACTIONS(1609), + [anon_sym_boolean] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_short] = ACTIONS(1609), + [anon_sym_long] = ACTIONS(1609), + [anon_sym_float] = ACTIONS(1609), + [anon_sym_double] = ACTIONS(1609), + [anon_sym_void] = ACTIONS(1609), + [anon_sym_public] = ACTIONS(1609), + [anon_sym_protected] = ACTIONS(1609), + [anon_sym_private] = ACTIONS(1609), + [anon_sym_static] = ACTIONS(1609), + [anon_sym_final] = ACTIONS(1609), + [anon_sym_synchronized] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1607), + [anon_sym_new] = ACTIONS(1609), + }, + [705] = { + [sym_comment] = STATE(705), + [sym_groovy_doc] = STATE(705), + [ts_builtin_sym_end] = ACTIONS(1611), + [sym_identifier] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1611), + [anon_sym_STAR] = ACTIONS(1613), + [anon_sym_STAR_COLON] = ACTIONS(1611), + [anon_sym_import] = ACTIONS(1613), + [anon_sym_package] = ACTIONS(1613), + [anon_sym_AT] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_SLASH] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_ATinterface] = ACTIONS(1611), + [anon_sym_interface] = ACTIONS(1613), + [anon_sym_class] = ACTIONS(1613), + [anon_sym_COMMA] = ACTIONS(1611), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_RBRACE] = ACTIONS(1611), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1613), + [anon_sym_this] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_LPAREN] = ACTIONS(1611), + [anon_sym_RPAREN] = ACTIONS(1611), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_else] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1611), + [aux_sym_number_literal_token1] = ACTIONS(1613), + [aux_sym_number_literal_token2] = ACTIONS(1611), + [aux_sym_number_literal_token3] = ACTIONS(1611), + [aux_sym_number_literal_token4] = ACTIONS(1613), + [aux_sym_number_literal_token5] = ACTIONS(1611), + [anon_sym_pipeline] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_SQUOTE] = ACTIONS(1613), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1613), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1611), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1611), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_try] = ACTIONS(1613), + [anon_sym_catch] = ACTIONS(1613), + [anon_sym_finally] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_boolean] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_public] = ACTIONS(1613), + [anon_sym_protected] = ACTIONS(1613), + [anon_sym_private] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_final] = ACTIONS(1613), + [anon_sym_synchronized] = ACTIONS(1613), + [anon_sym_TILDE] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1611), + [anon_sym_new] = ACTIONS(1613), + }, + [706] = { + [sym_comment] = STATE(706), + [sym_groovy_doc] = STATE(706), + [ts_builtin_sym_end] = ACTIONS(1615), + [sym_identifier] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1617), + [anon_sym_continue] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1617), + [anon_sym_STAR_COLON] = ACTIONS(1615), + [anon_sym_import] = ACTIONS(1617), + [anon_sym_package] = ACTIONS(1617), + [anon_sym_AT] = ACTIONS(1617), + [anon_sym_assert] = ACTIONS(1617), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_SLASH] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1617), + [anon_sym_false] = ACTIONS(1617), + [anon_sym_ATinterface] = ACTIONS(1615), + [anon_sym_interface] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1617), + [anon_sym_COMMA] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1615), + [anon_sym_RBRACE] = ACTIONS(1615), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1617), + [anon_sym_this] = ACTIONS(1617), + [anon_sym_null] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_RPAREN] = ACTIONS(1615), + [anon_sym_do] = ACTIONS(1617), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1617), + [anon_sym_if] = ACTIONS(1617), + [anon_sym_else] = ACTIONS(1617), + [anon_sym_LBRACK] = ACTIONS(1615), + [aux_sym_number_literal_token1] = ACTIONS(1617), + [aux_sym_number_literal_token2] = ACTIONS(1615), + [aux_sym_number_literal_token3] = ACTIONS(1615), + [aux_sym_number_literal_token4] = ACTIONS(1617), + [aux_sym_number_literal_token5] = ACTIONS(1615), + [anon_sym_pipeline] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1615), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1615), + [anon_sym_switch] = ACTIONS(1617), + [anon_sym_try] = ACTIONS(1617), + [anon_sym_catch] = ACTIONS(1617), + [anon_sym_finally] = ACTIONS(1617), + [anon_sym_int] = ACTIONS(1617), + [anon_sym_boolean] = ACTIONS(1617), + [anon_sym_char] = ACTIONS(1617), + [anon_sym_short] = ACTIONS(1617), + [anon_sym_long] = ACTIONS(1617), + [anon_sym_float] = ACTIONS(1617), + [anon_sym_double] = ACTIONS(1617), + [anon_sym_void] = ACTIONS(1617), + [anon_sym_public] = ACTIONS(1617), + [anon_sym_protected] = ACTIONS(1617), + [anon_sym_private] = ACTIONS(1617), + [anon_sym_static] = ACTIONS(1617), + [anon_sym_final] = ACTIONS(1617), + [anon_sym_synchronized] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_new] = ACTIONS(1617), + }, + [707] = { + [sym_comment] = STATE(707), + [sym_groovy_doc] = STATE(707), + [ts_builtin_sym_end] = ACTIONS(1619), + [sym_identifier] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_STAR_COLON] = ACTIONS(1619), + [anon_sym_import] = ACTIONS(1621), + [anon_sym_package] = ACTIONS(1621), + [anon_sym_AT] = ACTIONS(1621), + [anon_sym_assert] = ACTIONS(1621), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_true] = ACTIONS(1621), + [anon_sym_false] = ACTIONS(1621), + [anon_sym_ATinterface] = ACTIONS(1619), + [anon_sym_interface] = ACTIONS(1621), + [anon_sym_class] = ACTIONS(1621), + [anon_sym_COMMA] = ACTIONS(1619), + [anon_sym_LBRACE] = ACTIONS(1619), + [anon_sym_RBRACE] = ACTIONS(1619), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1621), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_null] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_RPAREN] = ACTIONS(1619), + [anon_sym_do] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_else] = ACTIONS(1621), + [anon_sym_LBRACK] = ACTIONS(1619), + [aux_sym_number_literal_token1] = ACTIONS(1621), + [aux_sym_number_literal_token2] = ACTIONS(1619), + [aux_sym_number_literal_token3] = ACTIONS(1619), + [aux_sym_number_literal_token4] = ACTIONS(1621), + [aux_sym_number_literal_token5] = ACTIONS(1619), + [anon_sym_pipeline] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1619), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1619), + [anon_sym_switch] = ACTIONS(1621), + [anon_sym_try] = ACTIONS(1621), + [anon_sym_catch] = ACTIONS(1621), + [anon_sym_finally] = ACTIONS(1621), + [anon_sym_int] = ACTIONS(1621), + [anon_sym_boolean] = ACTIONS(1621), + [anon_sym_char] = ACTIONS(1621), + [anon_sym_short] = ACTIONS(1621), + [anon_sym_long] = ACTIONS(1621), + [anon_sym_float] = ACTIONS(1621), + [anon_sym_double] = ACTIONS(1621), + [anon_sym_void] = ACTIONS(1621), + [anon_sym_public] = ACTIONS(1621), + [anon_sym_protected] = ACTIONS(1621), + [anon_sym_private] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1621), + [anon_sym_final] = ACTIONS(1621), + [anon_sym_synchronized] = ACTIONS(1621), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_new] = ACTIONS(1621), + }, + [708] = { + [sym_comment] = STATE(708), + [sym_groovy_doc] = STATE(708), + [ts_builtin_sym_end] = ACTIONS(1623), + [sym_identifier] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1625), + [anon_sym_STAR_COLON] = ACTIONS(1623), + [anon_sym_import] = ACTIONS(1625), + [anon_sym_package] = ACTIONS(1625), + [anon_sym_AT] = ACTIONS(1625), + [anon_sym_assert] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_SLASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [anon_sym_ATinterface] = ACTIONS(1623), + [anon_sym_interface] = ACTIONS(1625), + [anon_sym_class] = ACTIONS(1625), + [anon_sym_COMMA] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_RBRACE] = ACTIONS(1623), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1625), + [anon_sym_this] = ACTIONS(1625), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_RPAREN] = ACTIONS(1623), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_else] = ACTIONS(1625), + [anon_sym_LBRACK] = ACTIONS(1623), + [aux_sym_number_literal_token1] = ACTIONS(1625), + [aux_sym_number_literal_token2] = ACTIONS(1623), + [aux_sym_number_literal_token3] = ACTIONS(1623), + [aux_sym_number_literal_token4] = ACTIONS(1625), + [aux_sym_number_literal_token5] = ACTIONS(1623), + [anon_sym_pipeline] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_SQUOTE] = ACTIONS(1625), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1623), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1623), + [anon_sym_switch] = ACTIONS(1625), + [anon_sym_try] = ACTIONS(1625), + [anon_sym_catch] = ACTIONS(1625), + [anon_sym_finally] = ACTIONS(1625), + [anon_sym_int] = ACTIONS(1625), + [anon_sym_boolean] = ACTIONS(1625), + [anon_sym_char] = ACTIONS(1625), + [anon_sym_short] = ACTIONS(1625), + [anon_sym_long] = ACTIONS(1625), + [anon_sym_float] = ACTIONS(1625), + [anon_sym_double] = ACTIONS(1625), + [anon_sym_void] = ACTIONS(1625), + [anon_sym_public] = ACTIONS(1625), + [anon_sym_protected] = ACTIONS(1625), + [anon_sym_private] = ACTIONS(1625), + [anon_sym_static] = ACTIONS(1625), + [anon_sym_final] = ACTIONS(1625), + [anon_sym_synchronized] = ACTIONS(1625), + [anon_sym_TILDE] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1623), + [anon_sym_new] = ACTIONS(1625), + }, + [709] = { + [sym_comment] = STATE(709), + [sym_groovy_doc] = STATE(709), + [ts_builtin_sym_end] = ACTIONS(1627), + [sym_identifier] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [anon_sym_STAR_COLON] = ACTIONS(1627), + [anon_sym_import] = ACTIONS(1629), + [anon_sym_package] = ACTIONS(1629), + [anon_sym_AT] = ACTIONS(1629), + [anon_sym_assert] = ACTIONS(1629), + [anon_sym_PLUS_PLUS] = ACTIONS(1627), + [anon_sym_DASH_DASH] = ACTIONS(1627), + [anon_sym_SLASH] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [anon_sym_ATinterface] = ACTIONS(1627), + [anon_sym_interface] = ACTIONS(1629), + [anon_sym_class] = ACTIONS(1629), + [anon_sym_COMMA] = ACTIONS(1627), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_RBRACE] = ACTIONS(1627), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1629), + [anon_sym_this] = ACTIONS(1629), + [anon_sym_null] = ACTIONS(1629), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_RPAREN] = ACTIONS(1627), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_else] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1627), + [aux_sym_number_literal_token1] = ACTIONS(1629), + [aux_sym_number_literal_token2] = ACTIONS(1627), + [aux_sym_number_literal_token3] = ACTIONS(1627), + [aux_sym_number_literal_token4] = ACTIONS(1629), + [aux_sym_number_literal_token5] = ACTIONS(1627), + [anon_sym_pipeline] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1629), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1629), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1627), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1627), + [anon_sym_switch] = ACTIONS(1629), + [anon_sym_try] = ACTIONS(1629), + [anon_sym_catch] = ACTIONS(1629), + [anon_sym_finally] = ACTIONS(1629), + [anon_sym_int] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_short] = ACTIONS(1629), + [anon_sym_long] = ACTIONS(1629), + [anon_sym_float] = ACTIONS(1629), + [anon_sym_double] = ACTIONS(1629), + [anon_sym_void] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_final] = ACTIONS(1629), + [anon_sym_synchronized] = ACTIONS(1629), + [anon_sym_TILDE] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1627), + [anon_sym_new] = ACTIONS(1629), + }, + [710] = { + [sym_comment] = STATE(710), + [sym_groovy_doc] = STATE(710), + [ts_builtin_sym_end] = ACTIONS(1631), + [sym_identifier] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_STAR] = ACTIONS(1633), + [anon_sym_STAR_COLON] = ACTIONS(1631), + [anon_sym_import] = ACTIONS(1633), + [anon_sym_package] = ACTIONS(1633), + [anon_sym_AT] = ACTIONS(1633), + [anon_sym_assert] = ACTIONS(1633), + [anon_sym_PLUS_PLUS] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1631), + [anon_sym_SLASH] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_ATinterface] = ACTIONS(1631), + [anon_sym_interface] = ACTIONS(1633), + [anon_sym_class] = ACTIONS(1633), + [anon_sym_COMMA] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1631), + [anon_sym_RBRACE] = ACTIONS(1631), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1633), + [anon_sym_this] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_RPAREN] = ACTIONS(1631), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_else] = ACTIONS(1633), + [anon_sym_LBRACK] = ACTIONS(1631), + [aux_sym_number_literal_token1] = ACTIONS(1633), + [aux_sym_number_literal_token2] = ACTIONS(1631), + [aux_sym_number_literal_token3] = ACTIONS(1631), + [aux_sym_number_literal_token4] = ACTIONS(1633), + [aux_sym_number_literal_token5] = ACTIONS(1631), + [anon_sym_pipeline] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1633), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1631), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1631), + [anon_sym_switch] = ACTIONS(1633), + [anon_sym_try] = ACTIONS(1633), + [anon_sym_catch] = ACTIONS(1633), + [anon_sym_finally] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_boolean] = ACTIONS(1633), + [anon_sym_char] = ACTIONS(1633), + [anon_sym_short] = ACTIONS(1633), + [anon_sym_long] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_double] = ACTIONS(1633), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_public] = ACTIONS(1633), + [anon_sym_protected] = ACTIONS(1633), + [anon_sym_private] = ACTIONS(1633), + [anon_sym_static] = ACTIONS(1633), + [anon_sym_final] = ACTIONS(1633), + [anon_sym_synchronized] = ACTIONS(1633), + [anon_sym_TILDE] = ACTIONS(1631), + [anon_sym_BANG] = ACTIONS(1631), + [anon_sym_new] = ACTIONS(1633), + }, + [711] = { + [sym_comment] = STATE(711), + [sym_groovy_doc] = STATE(711), + [ts_builtin_sym_end] = ACTIONS(1635), + [sym_identifier] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_STAR] = ACTIONS(1637), + [anon_sym_STAR_COLON] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(1637), + [anon_sym_package] = ACTIONS(1637), + [anon_sym_AT] = ACTIONS(1637), + [anon_sym_assert] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_SLASH] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1637), + [anon_sym_false] = ACTIONS(1637), + [anon_sym_ATinterface] = ACTIONS(1635), + [anon_sym_interface] = ACTIONS(1637), + [anon_sym_class] = ACTIONS(1637), + [anon_sym_COMMA] = ACTIONS(1635), + [anon_sym_LBRACE] = ACTIONS(1635), + [anon_sym_RBRACE] = ACTIONS(1635), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1637), + [anon_sym_this] = ACTIONS(1637), + [anon_sym_null] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_RPAREN] = ACTIONS(1635), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_else] = ACTIONS(1637), + [anon_sym_LBRACK] = ACTIONS(1635), + [aux_sym_number_literal_token1] = ACTIONS(1637), + [aux_sym_number_literal_token2] = ACTIONS(1635), + [aux_sym_number_literal_token3] = ACTIONS(1635), + [aux_sym_number_literal_token4] = ACTIONS(1637), + [aux_sym_number_literal_token5] = ACTIONS(1635), + [anon_sym_pipeline] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_SQUOTE] = ACTIONS(1637), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1637), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1635), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1635), + [anon_sym_switch] = ACTIONS(1637), + [anon_sym_try] = ACTIONS(1637), + [anon_sym_catch] = ACTIONS(1637), + [anon_sym_finally] = ACTIONS(1637), + [anon_sym_int] = ACTIONS(1637), + [anon_sym_boolean] = ACTIONS(1637), + [anon_sym_char] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_float] = ACTIONS(1637), + [anon_sym_double] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_public] = ACTIONS(1637), + [anon_sym_protected] = ACTIONS(1637), + [anon_sym_private] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_final] = ACTIONS(1637), + [anon_sym_synchronized] = ACTIONS(1637), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_new] = ACTIONS(1637), + }, + [712] = { + [sym_comment] = STATE(712), + [sym_groovy_doc] = STATE(712), + [ts_builtin_sym_end] = ACTIONS(1467), + [sym_identifier] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1469), + [anon_sym_STAR_COLON] = ACTIONS(1467), + [anon_sym_DOT] = ACTIONS(101), + [anon_sym_import] = ACTIONS(1469), + [anon_sym_package] = ACTIONS(1469), + [anon_sym_AT] = ACTIONS(1469), + [anon_sym_assert] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_DASH_DASH] = ACTIONS(1467), + [anon_sym_SLASH] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [anon_sym_ATinterface] = ACTIONS(1467), + [anon_sym_interface] = ACTIONS(1469), + [anon_sym_class] = ACTIONS(1469), + [anon_sym_COMMA] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1467), + [anon_sym_RBRACE] = ACTIONS(1467), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1469), + [anon_sym_null] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_RPAREN] = ACTIONS(1467), + [anon_sym_do] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_else] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(101), + [aux_sym_number_literal_token1] = ACTIONS(1469), + [aux_sym_number_literal_token2] = ACTIONS(1467), + [aux_sym_number_literal_token3] = ACTIONS(1467), + [aux_sym_number_literal_token4] = ACTIONS(1469), + [aux_sym_number_literal_token5] = ACTIONS(1467), + [anon_sym_pipeline] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_SQUOTE] = ACTIONS(1469), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1469), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1467), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1467), + [anon_sym_switch] = ACTIONS(1469), + [anon_sym_try] = ACTIONS(1469), + [anon_sym_int] = ACTIONS(1469), + [anon_sym_boolean] = ACTIONS(1469), + [anon_sym_char] = ACTIONS(1469), + [anon_sym_short] = ACTIONS(1469), + [anon_sym_long] = ACTIONS(1469), + [anon_sym_float] = ACTIONS(1469), + [anon_sym_double] = ACTIONS(1469), + [anon_sym_void] = ACTIONS(1469), + [anon_sym_public] = ACTIONS(1469), + [anon_sym_protected] = ACTIONS(1469), + [anon_sym_private] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1469), + [anon_sym_final] = ACTIONS(1469), + [anon_sym_synchronized] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1467), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_new] = ACTIONS(1469), + }, + [713] = { + [sym_comment] = STATE(713), + [sym_groovy_doc] = STATE(713), + [ts_builtin_sym_end] = ACTIONS(1639), + [sym_identifier] = ACTIONS(1641), + [anon_sym_break] = ACTIONS(1641), + [anon_sym_continue] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_STAR_COLON] = ACTIONS(1639), + [anon_sym_import] = ACTIONS(1641), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_package] = ACTIONS(1641), + [anon_sym_AT] = ACTIONS(1641), + [anon_sym_assert] = ACTIONS(1641), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_SLASH] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_true] = ACTIONS(1641), + [anon_sym_false] = ACTIONS(1641), + [anon_sym_ATinterface] = ACTIONS(1639), + [anon_sym_interface] = ACTIONS(1641), + [anon_sym_class] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_RBRACE] = ACTIONS(1639), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1641), + [anon_sym_this] = ACTIONS(1641), + [anon_sym_null] = ACTIONS(1641), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_do] = ACTIONS(1641), + [anon_sym_while] = ACTIONS(1641), + [anon_sym_for] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1641), + [anon_sym_else] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(1639), + [aux_sym_number_literal_token1] = ACTIONS(1641), + [aux_sym_number_literal_token2] = ACTIONS(1639), + [aux_sym_number_literal_token3] = ACTIONS(1639), + [aux_sym_number_literal_token4] = ACTIONS(1641), + [aux_sym_number_literal_token5] = ACTIONS(1639), + [anon_sym_pipeline] = ACTIONS(1641), + [anon_sym_return] = ACTIONS(1641), + [anon_sym_SQUOTE] = ACTIONS(1641), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1641), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1639), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1639), + [anon_sym_switch] = ACTIONS(1641), + [anon_sym_try] = ACTIONS(1641), + [anon_sym_catch] = ACTIONS(1641), + [anon_sym_finally] = ACTIONS(1641), + [anon_sym_int] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_char] = ACTIONS(1641), + [anon_sym_short] = ACTIONS(1641), + [anon_sym_long] = ACTIONS(1641), + [anon_sym_float] = ACTIONS(1641), + [anon_sym_double] = ACTIONS(1641), + [anon_sym_void] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_final] = ACTIONS(1641), + [anon_sym_synchronized] = ACTIONS(1641), + [anon_sym_TILDE] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_new] = ACTIONS(1641), + }, + [714] = { + [sym_comment] = STATE(714), + [sym_groovy_doc] = STATE(714), + [ts_builtin_sym_end] = ACTIONS(1645), + [sym_identifier] = ACTIONS(1647), + [anon_sym_break] = ACTIONS(1647), + [anon_sym_continue] = ACTIONS(1647), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_STAR_COLON] = ACTIONS(1645), + [anon_sym_import] = ACTIONS(1647), + [anon_sym_as] = ACTIONS(1649), + [anon_sym_package] = ACTIONS(1647), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_assert] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_SLASH] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_true] = ACTIONS(1647), + [anon_sym_false] = ACTIONS(1647), + [anon_sym_ATinterface] = ACTIONS(1645), + [anon_sym_interface] = ACTIONS(1647), + [anon_sym_class] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1645), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1647), + [anon_sym_this] = ACTIONS(1647), + [anon_sym_null] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1645), + [anon_sym_do] = ACTIONS(1647), + [anon_sym_while] = ACTIONS(1647), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_else] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(1645), + [aux_sym_number_literal_token1] = ACTIONS(1647), + [aux_sym_number_literal_token2] = ACTIONS(1645), + [aux_sym_number_literal_token3] = ACTIONS(1645), + [aux_sym_number_literal_token4] = ACTIONS(1647), + [aux_sym_number_literal_token5] = ACTIONS(1645), + [anon_sym_pipeline] = ACTIONS(1647), + [anon_sym_return] = ACTIONS(1647), + [anon_sym_SQUOTE] = ACTIONS(1647), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1647), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1645), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1645), + [anon_sym_switch] = ACTIONS(1647), + [anon_sym_try] = ACTIONS(1647), + [anon_sym_catch] = ACTIONS(1647), + [anon_sym_finally] = ACTIONS(1647), + [anon_sym_int] = ACTIONS(1647), + [anon_sym_boolean] = ACTIONS(1647), + [anon_sym_char] = ACTIONS(1647), + [anon_sym_short] = ACTIONS(1647), + [anon_sym_long] = ACTIONS(1647), + [anon_sym_float] = ACTIONS(1647), + [anon_sym_double] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_public] = ACTIONS(1647), + [anon_sym_protected] = ACTIONS(1647), + [anon_sym_private] = ACTIONS(1647), + [anon_sym_static] = ACTIONS(1647), + [anon_sym_final] = ACTIONS(1647), + [anon_sym_synchronized] = ACTIONS(1647), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_new] = ACTIONS(1647), + }, + [715] = { + [sym_comment] = STATE(715), + [sym_groovy_doc] = STATE(715), + [sym_identifier] = ACTIONS(283), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(283), + [anon_sym_STAR_COLON] = ACTIONS(285), + [anon_sym_DOT] = ACTIONS(283), + [anon_sym_import] = ACTIONS(283), + [anon_sym_DOT_STAR] = ACTIONS(285), + [anon_sym_as] = ACTIONS(283), + [anon_sym_package] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [anon_sym_assert] = ACTIONS(283), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(283), + [anon_sym_DASH] = ACTIONS(283), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_ATinterface] = ACTIONS(285), + [anon_sym_interface] = ACTIONS(283), + [anon_sym_class] = ACTIONS(283), + [anon_sym_LBRACE] = ACTIONS(285), + [anon_sym_RBRACE] = ACTIONS(285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(283), + [anon_sym_this] = ACTIONS(283), + [anon_sym_null] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_do] = ACTIONS(283), + [anon_sym_while] = ACTIONS(283), + [anon_sym_for] = ACTIONS(283), + [anon_sym_if] = ACTIONS(283), + [anon_sym_else] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [aux_sym_number_literal_token1] = ACTIONS(283), + [aux_sym_number_literal_token2] = ACTIONS(285), + [aux_sym_number_literal_token3] = ACTIONS(285), + [aux_sym_number_literal_token4] = ACTIONS(283), + [aux_sym_number_literal_token5] = ACTIONS(285), + [anon_sym_return] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(283), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_SLASH] = ACTIONS(285), + [anon_sym_switch] = ACTIONS(283), + [anon_sym_try] = ACTIONS(283), + [anon_sym_catch] = ACTIONS(283), + [anon_sym_finally] = ACTIONS(283), + [anon_sym_int] = ACTIONS(283), + [anon_sym_boolean] = ACTIONS(283), + [anon_sym_char] = ACTIONS(283), + [anon_sym_short] = ACTIONS(283), + [anon_sym_long] = ACTIONS(283), + [anon_sym_float] = ACTIONS(283), + [anon_sym_double] = ACTIONS(283), + [anon_sym_void] = ACTIONS(283), + [anon_sym_public] = ACTIONS(283), + [anon_sym_protected] = ACTIONS(283), + [anon_sym_private] = ACTIONS(283), + [anon_sym_static] = ACTIONS(283), + [anon_sym_final] = ACTIONS(283), + [anon_sym_synchronized] = ACTIONS(283), + [anon_sym_TILDE] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_new] = ACTIONS(283), + }, + [716] = { + [sym_comment] = STATE(716), + [sym_groovy_doc] = STATE(716), + [ts_builtin_sym_end] = ACTIONS(1451), + [sym_identifier] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_STAR] = ACTIONS(1453), + [anon_sym_STAR_COLON] = ACTIONS(1451), + [anon_sym_DOT] = ACTIONS(97), + [anon_sym_import] = ACTIONS(1453), + [anon_sym_DOT_STAR] = ACTIONS(1651), + [anon_sym_as] = ACTIONS(1653), + [anon_sym_package] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1453), + [anon_sym_assert] = ACTIONS(1453), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [anon_sym_ATinterface] = ACTIONS(1451), + [anon_sym_interface] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1451), + [anon_sym_RBRACE] = ACTIONS(1451), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1453), + [anon_sym_this] = ACTIONS(1453), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_else] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(101), + [aux_sym_number_literal_token1] = ACTIONS(1453), + [aux_sym_number_literal_token2] = ACTIONS(1451), + [aux_sym_number_literal_token3] = ACTIONS(1451), + [aux_sym_number_literal_token4] = ACTIONS(1453), + [aux_sym_number_literal_token5] = ACTIONS(1451), + [anon_sym_pipeline] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_SQUOTE] = ACTIONS(1453), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1451), + [anon_sym_DQUOTE] = ACTIONS(1453), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1451), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1451), + [anon_sym_switch] = ACTIONS(1453), + [anon_sym_try] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_boolean] = ACTIONS(1453), + [anon_sym_char] = ACTIONS(1453), + [anon_sym_short] = ACTIONS(1453), + [anon_sym_long] = ACTIONS(1453), + [anon_sym_float] = ACTIONS(1453), + [anon_sym_double] = ACTIONS(1453), + [anon_sym_void] = ACTIONS(1453), + [anon_sym_public] = ACTIONS(1453), + [anon_sym_protected] = ACTIONS(1453), + [anon_sym_private] = ACTIONS(1453), + [anon_sym_static] = ACTIONS(1453), + [anon_sym_final] = ACTIONS(1453), + [anon_sym_synchronized] = ACTIONS(1453), + [anon_sym_TILDE] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_new] = ACTIONS(1453), + }, + [717] = { + [sym_comment] = STATE(717), + [sym_groovy_doc] = STATE(717), + [ts_builtin_sym_end] = ACTIONS(1443), + [sym_identifier] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_STAR_COLON] = ACTIONS(1443), + [anon_sym_DOT] = ACTIONS(97), + [anon_sym_import] = ACTIONS(1445), + [anon_sym_DOT_STAR] = ACTIONS(1655), + [anon_sym_as] = ACTIONS(1657), + [anon_sym_package] = ACTIONS(1445), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_assert] = ACTIONS(1445), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1445), + [anon_sym_false] = ACTIONS(1445), + [anon_sym_ATinterface] = ACTIONS(1443), + [anon_sym_interface] = ACTIONS(1445), + [anon_sym_class] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_RBRACE] = ACTIONS(1443), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1445), + [anon_sym_this] = ACTIONS(1445), + [anon_sym_null] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_else] = ACTIONS(1445), + [anon_sym_LBRACK] = ACTIONS(101), + [aux_sym_number_literal_token1] = ACTIONS(1445), + [aux_sym_number_literal_token2] = ACTIONS(1443), + [aux_sym_number_literal_token3] = ACTIONS(1443), + [aux_sym_number_literal_token4] = ACTIONS(1445), + [aux_sym_number_literal_token5] = ACTIONS(1443), + [anon_sym_pipeline] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(1445), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1443), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1443), + [anon_sym_switch] = ACTIONS(1445), + [anon_sym_try] = ACTIONS(1445), + [anon_sym_int] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_char] = ACTIONS(1445), + [anon_sym_short] = ACTIONS(1445), + [anon_sym_long] = ACTIONS(1445), + [anon_sym_float] = ACTIONS(1445), + [anon_sym_double] = ACTIONS(1445), + [anon_sym_void] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_final] = ACTIONS(1445), + [anon_sym_synchronized] = ACTIONS(1445), + [anon_sym_TILDE] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_new] = ACTIONS(1445), + }, + [718] = { + [sym_comment] = STATE(718), + [sym_groovy_doc] = STATE(718), + [ts_builtin_sym_end] = ACTIONS(1563), + [sym_identifier] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(1565), + [anon_sym_STAR_COLON] = ACTIONS(1563), + [anon_sym_import] = ACTIONS(1565), + [anon_sym_package] = ACTIONS(1565), + [anon_sym_AT] = ACTIONS(1565), + [anon_sym_assert] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1563), + [anon_sym_SLASH] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1565), + [anon_sym_false] = ACTIONS(1565), + [anon_sym_ATinterface] = ACTIONS(1563), + [anon_sym_interface] = ACTIONS(1565), + [anon_sym_class] = ACTIONS(1565), + [anon_sym_COMMA] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1563), + [anon_sym_RBRACE] = ACTIONS(1563), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1565), + [anon_sym_this] = ACTIONS(1565), + [anon_sym_null] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_RPAREN] = ACTIONS(1563), + [anon_sym_do] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_else] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1563), + [aux_sym_number_literal_token1] = ACTIONS(1565), + [aux_sym_number_literal_token2] = ACTIONS(1563), + [aux_sym_number_literal_token3] = ACTIONS(1563), + [aux_sym_number_literal_token4] = ACTIONS(1565), + [aux_sym_number_literal_token5] = ACTIONS(1563), + [anon_sym_pipeline] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_SQUOTE] = ACTIONS(1565), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1565), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1563), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1563), + [anon_sym_switch] = ACTIONS(1565), + [anon_sym_try] = ACTIONS(1565), + [anon_sym_int] = ACTIONS(1565), + [anon_sym_boolean] = ACTIONS(1565), + [anon_sym_char] = ACTIONS(1565), + [anon_sym_short] = ACTIONS(1565), + [anon_sym_long] = ACTIONS(1565), + [anon_sym_float] = ACTIONS(1565), + [anon_sym_double] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_public] = ACTIONS(1565), + [anon_sym_protected] = ACTIONS(1565), + [anon_sym_private] = ACTIONS(1565), + [anon_sym_static] = ACTIONS(1565), + [anon_sym_final] = ACTIONS(1565), + [anon_sym_synchronized] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_new] = ACTIONS(1565), + }, + [719] = { + [sym_comment] = STATE(719), + [sym_groovy_doc] = STATE(719), + [ts_builtin_sym_end] = ACTIONS(1659), + [sym_identifier] = ACTIONS(1661), + [anon_sym_break] = ACTIONS(1661), + [anon_sym_continue] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_STAR_COLON] = ACTIONS(1659), + [anon_sym_import] = ACTIONS(1661), + [anon_sym_package] = ACTIONS(1661), + [anon_sym_AT] = ACTIONS(1661), + [anon_sym_assert] = ACTIONS(1661), + [anon_sym_PLUS_PLUS] = ACTIONS(1659), + [anon_sym_DASH_DASH] = ACTIONS(1659), + [anon_sym_SLASH] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_ATinterface] = ACTIONS(1659), + [anon_sym_interface] = ACTIONS(1661), + [anon_sym_class] = ACTIONS(1661), + [anon_sym_COMMA] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1659), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1661), + [anon_sym_this] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_RPAREN] = ACTIONS(1659), + [anon_sym_do] = ACTIONS(1661), + [anon_sym_while] = ACTIONS(1661), + [anon_sym_for] = ACTIONS(1661), + [anon_sym_if] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1659), + [aux_sym_number_literal_token1] = ACTIONS(1661), + [aux_sym_number_literal_token2] = ACTIONS(1659), + [aux_sym_number_literal_token3] = ACTIONS(1659), + [aux_sym_number_literal_token4] = ACTIONS(1661), + [aux_sym_number_literal_token5] = ACTIONS(1659), + [anon_sym_pipeline] = ACTIONS(1661), + [anon_sym_return] = ACTIONS(1661), + [anon_sym_SQUOTE] = ACTIONS(1661), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1659), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1659), + [anon_sym_switch] = ACTIONS(1661), + [anon_sym_try] = ACTIONS(1661), + [anon_sym_int] = ACTIONS(1661), + [anon_sym_boolean] = ACTIONS(1661), + [anon_sym_char] = ACTIONS(1661), + [anon_sym_short] = ACTIONS(1661), + [anon_sym_long] = ACTIONS(1661), + [anon_sym_float] = ACTIONS(1661), + [anon_sym_double] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(1661), + [anon_sym_public] = ACTIONS(1661), + [anon_sym_protected] = ACTIONS(1661), + [anon_sym_private] = ACTIONS(1661), + [anon_sym_static] = ACTIONS(1661), + [anon_sym_final] = ACTIONS(1661), + [anon_sym_synchronized] = ACTIONS(1661), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_new] = ACTIONS(1661), + }, + [720] = { + [sym_comment] = STATE(720), + [sym_groovy_doc] = STATE(720), + [ts_builtin_sym_end] = ACTIONS(1583), + [sym_identifier] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_STAR_COLON] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(1585), + [anon_sym_package] = ACTIONS(1585), + [anon_sym_AT] = ACTIONS(1585), + [anon_sym_assert] = ACTIONS(1585), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_true] = ACTIONS(1585), + [anon_sym_false] = ACTIONS(1585), + [anon_sym_ATinterface] = ACTIONS(1583), + [anon_sym_interface] = ACTIONS(1585), + [anon_sym_class] = ACTIONS(1585), + [anon_sym_COMMA] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1583), + [anon_sym_RBRACE] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1585), + [anon_sym_this] = ACTIONS(1585), + [anon_sym_null] = ACTIONS(1585), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_RPAREN] = ACTIONS(1583), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_else] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1583), + [aux_sym_number_literal_token1] = ACTIONS(1585), + [aux_sym_number_literal_token2] = ACTIONS(1583), + [aux_sym_number_literal_token3] = ACTIONS(1583), + [aux_sym_number_literal_token4] = ACTIONS(1585), + [aux_sym_number_literal_token5] = ACTIONS(1583), + [anon_sym_pipeline] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1585), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1583), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1583), + [anon_sym_switch] = ACTIONS(1585), + [anon_sym_try] = ACTIONS(1585), + [anon_sym_int] = ACTIONS(1585), + [anon_sym_boolean] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_short] = ACTIONS(1585), + [anon_sym_long] = ACTIONS(1585), + [anon_sym_float] = ACTIONS(1585), + [anon_sym_double] = ACTIONS(1585), + [anon_sym_void] = ACTIONS(1585), + [anon_sym_public] = ACTIONS(1585), + [anon_sym_protected] = ACTIONS(1585), + [anon_sym_private] = ACTIONS(1585), + [anon_sym_static] = ACTIONS(1585), + [anon_sym_final] = ACTIONS(1585), + [anon_sym_synchronized] = ACTIONS(1585), + [anon_sym_TILDE] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1583), + [anon_sym_new] = ACTIONS(1585), + }, + [721] = { + [sym_comment] = STATE(721), + [sym_groovy_doc] = STATE(721), + [ts_builtin_sym_end] = ACTIONS(1551), + [sym_identifier] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1553), + [anon_sym_STAR_COLON] = ACTIONS(1551), + [anon_sym_import] = ACTIONS(1553), + [anon_sym_package] = ACTIONS(1553), + [anon_sym_AT] = ACTIONS(1553), + [anon_sym_assert] = ACTIONS(1553), + [anon_sym_PLUS_PLUS] = ACTIONS(1551), + [anon_sym_DASH_DASH] = ACTIONS(1551), + [anon_sym_SLASH] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_ATinterface] = ACTIONS(1551), + [anon_sym_interface] = ACTIONS(1553), + [anon_sym_class] = ACTIONS(1553), + [anon_sym_COMMA] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1553), + [anon_sym_this] = ACTIONS(1553), + [anon_sym_null] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_else] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [aux_sym_number_literal_token1] = ACTIONS(1553), + [aux_sym_number_literal_token2] = ACTIONS(1551), + [aux_sym_number_literal_token3] = ACTIONS(1551), + [aux_sym_number_literal_token4] = ACTIONS(1553), + [aux_sym_number_literal_token5] = ACTIONS(1551), + [anon_sym_pipeline] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_SQUOTE] = ACTIONS(1553), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1553), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1553), + [anon_sym_int] = ACTIONS(1553), + [anon_sym_boolean] = ACTIONS(1553), + [anon_sym_char] = ACTIONS(1553), + [anon_sym_short] = ACTIONS(1553), + [anon_sym_long] = ACTIONS(1553), + [anon_sym_float] = ACTIONS(1553), + [anon_sym_double] = ACTIONS(1553), + [anon_sym_void] = ACTIONS(1553), + [anon_sym_public] = ACTIONS(1553), + [anon_sym_protected] = ACTIONS(1553), + [anon_sym_private] = ACTIONS(1553), + [anon_sym_static] = ACTIONS(1553), + [anon_sym_final] = ACTIONS(1553), + [anon_sym_synchronized] = ACTIONS(1553), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_new] = ACTIONS(1553), + }, + [722] = { + [sym_comment] = STATE(722), + [sym_groovy_doc] = STATE(722), + [ts_builtin_sym_end] = ACTIONS(95), + [sym_identifier] = ACTIONS(89), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_STAR_COLON] = ACTIONS(95), + [anon_sym_import] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [anon_sym_ATinterface] = ACTIONS(95), + [anon_sym_interface] = ACTIONS(89), + [anon_sym_class] = ACTIONS(89), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_null] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_RPAREN] = ACTIONS(95), + [anon_sym_do] = ACTIONS(89), + [anon_sym_while] = ACTIONS(89), + [anon_sym_for] = ACTIONS(89), + [anon_sym_if] = ACTIONS(89), + [anon_sym_else] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(95), + [aux_sym_number_literal_token1] = ACTIONS(89), + [aux_sym_number_literal_token2] = ACTIONS(95), + [aux_sym_number_literal_token3] = ACTIONS(95), + [aux_sym_number_literal_token4] = ACTIONS(89), + [aux_sym_number_literal_token5] = ACTIONS(95), + [anon_sym_pipeline] = ACTIONS(89), + [anon_sym_return] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SLASH] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(89), + [anon_sym_try] = ACTIONS(89), + [anon_sym_int] = ACTIONS(89), + [anon_sym_boolean] = ACTIONS(89), + [anon_sym_char] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_float] = ACTIONS(89), + [anon_sym_double] = ACTIONS(89), + [anon_sym_void] = ACTIONS(89), + [anon_sym_public] = ACTIONS(89), + [anon_sym_protected] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_static] = ACTIONS(89), + [anon_sym_final] = ACTIONS(89), + [anon_sym_synchronized] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_new] = ACTIONS(89), + }, + [723] = { + [sym_comment] = STATE(723), + [sym_groovy_doc] = STATE(723), + [ts_builtin_sym_end] = ACTIONS(1531), + [sym_identifier] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_STAR] = ACTIONS(1533), + [anon_sym_STAR_COLON] = ACTIONS(1531), + [anon_sym_import] = ACTIONS(1533), + [anon_sym_package] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1533), + [anon_sym_assert] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1531), + [anon_sym_DASH_DASH] = ACTIONS(1531), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(1533), + [anon_sym_false] = ACTIONS(1533), + [anon_sym_ATinterface] = ACTIONS(1531), + [anon_sym_interface] = ACTIONS(1533), + [anon_sym_class] = ACTIONS(1533), + [anon_sym_COMMA] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1531), + [anon_sym_RBRACE] = ACTIONS(1531), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1533), + [anon_sym_this] = ACTIONS(1533), + [anon_sym_null] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_RPAREN] = ACTIONS(1531), + [anon_sym_do] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_else] = ACTIONS(1533), + [anon_sym_LBRACK] = ACTIONS(1531), + [aux_sym_number_literal_token1] = ACTIONS(1533), + [aux_sym_number_literal_token2] = ACTIONS(1531), + [aux_sym_number_literal_token3] = ACTIONS(1531), + [aux_sym_number_literal_token4] = ACTIONS(1533), + [aux_sym_number_literal_token5] = ACTIONS(1531), + [anon_sym_pipeline] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_SQUOTE] = ACTIONS(1533), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1533), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1531), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1531), + [anon_sym_switch] = ACTIONS(1533), + [anon_sym_try] = ACTIONS(1533), + [anon_sym_int] = ACTIONS(1533), + [anon_sym_boolean] = ACTIONS(1533), + [anon_sym_char] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_float] = ACTIONS(1533), + [anon_sym_double] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_public] = ACTIONS(1533), + [anon_sym_protected] = ACTIONS(1533), + [anon_sym_private] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1533), + [anon_sym_final] = ACTIONS(1533), + [anon_sym_synchronized] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1531), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1533), + }, + [724] = { + [sym_comment] = STATE(724), + [sym_groovy_doc] = STATE(724), + [ts_builtin_sym_end] = ACTIONS(1599), + [sym_identifier] = ACTIONS(1601), + [anon_sym_break] = ACTIONS(1601), + [anon_sym_continue] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1601), + [anon_sym_STAR_COLON] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(1601), + [anon_sym_package] = ACTIONS(1601), + [anon_sym_AT] = ACTIONS(1601), + [anon_sym_assert] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [anon_sym_ATinterface] = ACTIONS(1599), + [anon_sym_interface] = ACTIONS(1601), + [anon_sym_class] = ACTIONS(1601), + [anon_sym_COMMA] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1601), + [anon_sym_this] = ACTIONS(1601), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(1599), + [anon_sym_do] = ACTIONS(1601), + [anon_sym_while] = ACTIONS(1601), + [anon_sym_for] = ACTIONS(1601), + [anon_sym_if] = ACTIONS(1601), + [anon_sym_else] = ACTIONS(1601), + [anon_sym_LBRACK] = ACTIONS(1599), + [aux_sym_number_literal_token1] = ACTIONS(1601), + [aux_sym_number_literal_token2] = ACTIONS(1599), + [aux_sym_number_literal_token3] = ACTIONS(1599), + [aux_sym_number_literal_token4] = ACTIONS(1601), + [aux_sym_number_literal_token5] = ACTIONS(1599), + [anon_sym_pipeline] = ACTIONS(1601), + [anon_sym_return] = ACTIONS(1601), + [anon_sym_SQUOTE] = ACTIONS(1601), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1601), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1599), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1599), + [anon_sym_switch] = ACTIONS(1601), + [anon_sym_try] = ACTIONS(1601), + [anon_sym_int] = ACTIONS(1601), + [anon_sym_boolean] = ACTIONS(1601), + [anon_sym_char] = ACTIONS(1601), + [anon_sym_short] = ACTIONS(1601), + [anon_sym_long] = ACTIONS(1601), + [anon_sym_float] = ACTIONS(1601), + [anon_sym_double] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_public] = ACTIONS(1601), + [anon_sym_protected] = ACTIONS(1601), + [anon_sym_private] = ACTIONS(1601), + [anon_sym_static] = ACTIONS(1601), + [anon_sym_final] = ACTIONS(1601), + [anon_sym_synchronized] = ACTIONS(1601), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_new] = ACTIONS(1601), + }, + [725] = { + [sym_comment] = STATE(725), + [sym_groovy_doc] = STATE(725), + [ts_builtin_sym_end] = ACTIONS(1607), + [sym_identifier] = ACTIONS(1609), + [anon_sym_break] = ACTIONS(1609), + [anon_sym_continue] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_STAR_COLON] = ACTIONS(1607), + [anon_sym_import] = ACTIONS(1609), + [anon_sym_package] = ACTIONS(1609), + [anon_sym_AT] = ACTIONS(1609), + [anon_sym_assert] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1609), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [anon_sym_ATinterface] = ACTIONS(1607), + [anon_sym_interface] = ACTIONS(1609), + [anon_sym_class] = ACTIONS(1609), + [anon_sym_COMMA] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1607), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1609), + [anon_sym_this] = ACTIONS(1609), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_RPAREN] = ACTIONS(1607), + [anon_sym_do] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1609), + [anon_sym_for] = ACTIONS(1609), + [anon_sym_if] = ACTIONS(1609), + [anon_sym_else] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1607), + [aux_sym_number_literal_token1] = ACTIONS(1609), + [aux_sym_number_literal_token2] = ACTIONS(1607), + [aux_sym_number_literal_token3] = ACTIONS(1607), + [aux_sym_number_literal_token4] = ACTIONS(1609), + [aux_sym_number_literal_token5] = ACTIONS(1607), + [anon_sym_pipeline] = ACTIONS(1609), + [anon_sym_return] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(1609), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1609), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1607), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1607), + [anon_sym_switch] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1609), + [anon_sym_int] = ACTIONS(1609), + [anon_sym_boolean] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_short] = ACTIONS(1609), + [anon_sym_long] = ACTIONS(1609), + [anon_sym_float] = ACTIONS(1609), + [anon_sym_double] = ACTIONS(1609), + [anon_sym_void] = ACTIONS(1609), + [anon_sym_public] = ACTIONS(1609), + [anon_sym_protected] = ACTIONS(1609), + [anon_sym_private] = ACTIONS(1609), + [anon_sym_static] = ACTIONS(1609), + [anon_sym_final] = ACTIONS(1609), + [anon_sym_synchronized] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1607), + [anon_sym_new] = ACTIONS(1609), + }, + [726] = { + [sym_comment] = STATE(726), + [sym_groovy_doc] = STATE(726), + [ts_builtin_sym_end] = ACTIONS(1623), + [sym_identifier] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1625), + [anon_sym_STAR_COLON] = ACTIONS(1623), + [anon_sym_import] = ACTIONS(1625), + [anon_sym_package] = ACTIONS(1625), + [anon_sym_AT] = ACTIONS(1625), + [anon_sym_assert] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_SLASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [anon_sym_ATinterface] = ACTIONS(1623), + [anon_sym_interface] = ACTIONS(1625), + [anon_sym_class] = ACTIONS(1625), + [anon_sym_COMMA] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_RBRACE] = ACTIONS(1623), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1625), + [anon_sym_this] = ACTIONS(1625), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_RPAREN] = ACTIONS(1623), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_else] = ACTIONS(1625), + [anon_sym_LBRACK] = ACTIONS(1623), + [aux_sym_number_literal_token1] = ACTIONS(1625), + [aux_sym_number_literal_token2] = ACTIONS(1623), + [aux_sym_number_literal_token3] = ACTIONS(1623), + [aux_sym_number_literal_token4] = ACTIONS(1625), + [aux_sym_number_literal_token5] = ACTIONS(1623), + [anon_sym_pipeline] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_SQUOTE] = ACTIONS(1625), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1623), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1623), + [anon_sym_switch] = ACTIONS(1625), + [anon_sym_try] = ACTIONS(1625), + [anon_sym_int] = ACTIONS(1625), + [anon_sym_boolean] = ACTIONS(1625), + [anon_sym_char] = ACTIONS(1625), + [anon_sym_short] = ACTIONS(1625), + [anon_sym_long] = ACTIONS(1625), + [anon_sym_float] = ACTIONS(1625), + [anon_sym_double] = ACTIONS(1625), + [anon_sym_void] = ACTIONS(1625), + [anon_sym_public] = ACTIONS(1625), + [anon_sym_protected] = ACTIONS(1625), + [anon_sym_private] = ACTIONS(1625), + [anon_sym_static] = ACTIONS(1625), + [anon_sym_final] = ACTIONS(1625), + [anon_sym_synchronized] = ACTIONS(1625), + [anon_sym_TILDE] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1623), + [anon_sym_new] = ACTIONS(1625), + }, + [727] = { + [sym_comment] = STATE(727), + [sym_groovy_doc] = STATE(727), + [ts_builtin_sym_end] = ACTIONS(1595), + [sym_identifier] = ACTIONS(1597), + [anon_sym_break] = ACTIONS(1597), + [anon_sym_continue] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_STAR_COLON] = ACTIONS(1595), + [anon_sym_import] = ACTIONS(1597), + [anon_sym_package] = ACTIONS(1597), + [anon_sym_AT] = ACTIONS(1597), + [anon_sym_assert] = ACTIONS(1597), + [anon_sym_PLUS_PLUS] = ACTIONS(1595), + [anon_sym_DASH_DASH] = ACTIONS(1595), + [anon_sym_SLASH] = ACTIONS(1597), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1597), + [anon_sym_false] = ACTIONS(1597), + [anon_sym_ATinterface] = ACTIONS(1595), + [anon_sym_interface] = ACTIONS(1597), + [anon_sym_class] = ACTIONS(1597), + [anon_sym_COMMA] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1595), + [anon_sym_RBRACE] = ACTIONS(1595), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1597), + [anon_sym_this] = ACTIONS(1597), + [anon_sym_null] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_RPAREN] = ACTIONS(1595), + [anon_sym_do] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_else] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1595), + [aux_sym_number_literal_token1] = ACTIONS(1597), + [aux_sym_number_literal_token2] = ACTIONS(1595), + [aux_sym_number_literal_token3] = ACTIONS(1595), + [aux_sym_number_literal_token4] = ACTIONS(1597), + [aux_sym_number_literal_token5] = ACTIONS(1595), + [anon_sym_pipeline] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(1597), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1595), + [anon_sym_DQUOTE] = ACTIONS(1597), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1595), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1595), + [anon_sym_switch] = ACTIONS(1597), + [anon_sym_try] = ACTIONS(1597), + [anon_sym_int] = ACTIONS(1597), + [anon_sym_boolean] = ACTIONS(1597), + [anon_sym_char] = ACTIONS(1597), + [anon_sym_short] = ACTIONS(1597), + [anon_sym_long] = ACTIONS(1597), + [anon_sym_float] = ACTIONS(1597), + [anon_sym_double] = ACTIONS(1597), + [anon_sym_void] = ACTIONS(1597), + [anon_sym_public] = ACTIONS(1597), + [anon_sym_protected] = ACTIONS(1597), + [anon_sym_private] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_final] = ACTIONS(1597), + [anon_sym_synchronized] = ACTIONS(1597), + [anon_sym_TILDE] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + }, + [728] = { + [sym_comment] = STATE(728), + [sym_groovy_doc] = STATE(728), + [ts_builtin_sym_end] = ACTIONS(95), + [sym_identifier] = ACTIONS(89), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_STAR_COLON] = ACTIONS(95), + [anon_sym_import] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [anon_sym_ATinterface] = ACTIONS(95), + [anon_sym_interface] = ACTIONS(89), + [anon_sym_class] = ACTIONS(89), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_null] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_RPAREN] = ACTIONS(95), + [anon_sym_do] = ACTIONS(89), + [anon_sym_while] = ACTIONS(89), + [anon_sym_for] = ACTIONS(89), + [anon_sym_if] = ACTIONS(89), + [anon_sym_else] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(95), + [aux_sym_number_literal_token1] = ACTIONS(89), + [aux_sym_number_literal_token2] = ACTIONS(95), + [aux_sym_number_literal_token3] = ACTIONS(95), + [aux_sym_number_literal_token4] = ACTIONS(89), + [aux_sym_number_literal_token5] = ACTIONS(95), + [anon_sym_pipeline] = ACTIONS(89), + [anon_sym_return] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SLASH] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(89), + [anon_sym_try] = ACTIONS(89), + [anon_sym_int] = ACTIONS(89), + [anon_sym_boolean] = ACTIONS(89), + [anon_sym_char] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_float] = ACTIONS(89), + [anon_sym_double] = ACTIONS(89), + [anon_sym_void] = ACTIONS(89), + [anon_sym_public] = ACTIONS(89), + [anon_sym_protected] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_static] = ACTIONS(89), + [anon_sym_final] = ACTIONS(89), + [anon_sym_synchronized] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_new] = ACTIONS(89), + }, + [729] = { + [sym_comment] = STATE(729), + [sym_groovy_doc] = STATE(729), + [ts_builtin_sym_end] = ACTIONS(1515), + [sym_identifier] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_STAR_COLON] = ACTIONS(1515), + [anon_sym_import] = ACTIONS(1517), + [anon_sym_package] = ACTIONS(1517), + [anon_sym_AT] = ACTIONS(1517), + [anon_sym_assert] = ACTIONS(1517), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [anon_sym_ATinterface] = ACTIONS(1515), + [anon_sym_interface] = ACTIONS(1517), + [anon_sym_class] = ACTIONS(1517), + [anon_sym_COMMA] = ACTIONS(1515), + [anon_sym_LBRACE] = ACTIONS(1515), + [anon_sym_RBRACE] = ACTIONS(1515), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1517), + [anon_sym_this] = ACTIONS(1517), + [anon_sym_null] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_RPAREN] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_else] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(1515), + [aux_sym_number_literal_token1] = ACTIONS(1517), + [aux_sym_number_literal_token2] = ACTIONS(1515), + [aux_sym_number_literal_token3] = ACTIONS(1515), + [aux_sym_number_literal_token4] = ACTIONS(1517), + [aux_sym_number_literal_token5] = ACTIONS(1515), + [anon_sym_pipeline] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_SQUOTE] = ACTIONS(1517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1517), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1515), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1515), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_try] = ACTIONS(1517), + [anon_sym_int] = ACTIONS(1517), + [anon_sym_boolean] = ACTIONS(1517), + [anon_sym_char] = ACTIONS(1517), + [anon_sym_short] = ACTIONS(1517), + [anon_sym_long] = ACTIONS(1517), + [anon_sym_float] = ACTIONS(1517), + [anon_sym_double] = ACTIONS(1517), + [anon_sym_void] = ACTIONS(1517), + [anon_sym_public] = ACTIONS(1517), + [anon_sym_protected] = ACTIONS(1517), + [anon_sym_private] = ACTIONS(1517), + [anon_sym_static] = ACTIONS(1517), + [anon_sym_final] = ACTIONS(1517), + [anon_sym_synchronized] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_new] = ACTIONS(1517), + }, + [730] = { + [sym_comment] = STATE(730), + [sym_groovy_doc] = STATE(730), + [ts_builtin_sym_end] = ACTIONS(1579), + [sym_identifier] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1581), + [anon_sym_STAR_COLON] = ACTIONS(1579), + [anon_sym_import] = ACTIONS(1581), + [anon_sym_package] = ACTIONS(1581), + [anon_sym_AT] = ACTIONS(1581), + [anon_sym_assert] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1581), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), + [anon_sym_ATinterface] = ACTIONS(1579), + [anon_sym_interface] = ACTIONS(1581), + [anon_sym_class] = ACTIONS(1581), + [anon_sym_COMMA] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1581), + [anon_sym_this] = ACTIONS(1581), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_else] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [aux_sym_number_literal_token1] = ACTIONS(1581), + [aux_sym_number_literal_token2] = ACTIONS(1579), + [aux_sym_number_literal_token3] = ACTIONS(1579), + [aux_sym_number_literal_token4] = ACTIONS(1581), + [aux_sym_number_literal_token5] = ACTIONS(1579), + [anon_sym_pipeline] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_SQUOTE] = ACTIONS(1581), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1581), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1579), + [anon_sym_switch] = ACTIONS(1581), + [anon_sym_try] = ACTIONS(1581), + [anon_sym_int] = ACTIONS(1581), + [anon_sym_boolean] = ACTIONS(1581), + [anon_sym_char] = ACTIONS(1581), + [anon_sym_short] = ACTIONS(1581), + [anon_sym_long] = ACTIONS(1581), + [anon_sym_float] = ACTIONS(1581), + [anon_sym_double] = ACTIONS(1581), + [anon_sym_void] = ACTIONS(1581), + [anon_sym_public] = ACTIONS(1581), + [anon_sym_protected] = ACTIONS(1581), + [anon_sym_private] = ACTIONS(1581), + [anon_sym_static] = ACTIONS(1581), + [anon_sym_final] = ACTIONS(1581), + [anon_sym_synchronized] = ACTIONS(1581), + [anon_sym_TILDE] = ACTIONS(1579), + [anon_sym_BANG] = ACTIONS(1579), + [anon_sym_new] = ACTIONS(1581), + }, + [731] = { + [sym_comment] = STATE(731), + [sym_groovy_doc] = STATE(731), + [ts_builtin_sym_end] = ACTIONS(1575), + [sym_identifier] = ACTIONS(1577), + [anon_sym_break] = ACTIONS(1577), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1577), + [anon_sym_STAR_COLON] = ACTIONS(1575), + [anon_sym_import] = ACTIONS(1577), + [anon_sym_package] = ACTIONS(1577), + [anon_sym_AT] = ACTIONS(1577), + [anon_sym_assert] = ACTIONS(1577), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_true] = ACTIONS(1577), + [anon_sym_false] = ACTIONS(1577), + [anon_sym_ATinterface] = ACTIONS(1575), + [anon_sym_interface] = ACTIONS(1577), + [anon_sym_class] = ACTIONS(1577), + [anon_sym_COMMA] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_RBRACE] = ACTIONS(1575), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1577), + [anon_sym_this] = ACTIONS(1577), + [anon_sym_null] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_RPAREN] = ACTIONS(1575), + [anon_sym_do] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1577), + [anon_sym_for] = ACTIONS(1577), + [anon_sym_if] = ACTIONS(1577), + [anon_sym_else] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1575), + [aux_sym_number_literal_token1] = ACTIONS(1577), + [aux_sym_number_literal_token2] = ACTIONS(1575), + [aux_sym_number_literal_token3] = ACTIONS(1575), + [aux_sym_number_literal_token4] = ACTIONS(1577), + [aux_sym_number_literal_token5] = ACTIONS(1575), + [anon_sym_pipeline] = ACTIONS(1577), + [anon_sym_return] = ACTIONS(1577), + [anon_sym_SQUOTE] = ACTIONS(1577), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1577), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1575), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1575), + [anon_sym_switch] = ACTIONS(1577), + [anon_sym_try] = ACTIONS(1577), + [anon_sym_int] = ACTIONS(1577), + [anon_sym_boolean] = ACTIONS(1577), + [anon_sym_char] = ACTIONS(1577), + [anon_sym_short] = ACTIONS(1577), + [anon_sym_long] = ACTIONS(1577), + [anon_sym_float] = ACTIONS(1577), + [anon_sym_double] = ACTIONS(1577), + [anon_sym_void] = ACTIONS(1577), + [anon_sym_public] = ACTIONS(1577), + [anon_sym_protected] = ACTIONS(1577), + [anon_sym_private] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1577), + [anon_sym_final] = ACTIONS(1577), + [anon_sym_synchronized] = ACTIONS(1577), + [anon_sym_TILDE] = ACTIONS(1575), + [anon_sym_BANG] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), + }, + [732] = { + [sym_comment] = STATE(732), + [sym_groovy_doc] = STATE(732), + [ts_builtin_sym_end] = ACTIONS(1567), + [sym_identifier] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_STAR] = ACTIONS(1569), + [anon_sym_STAR_COLON] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(1569), + [anon_sym_package] = ACTIONS(1569), + [anon_sym_AT] = ACTIONS(1569), + [anon_sym_assert] = ACTIONS(1569), + [anon_sym_PLUS_PLUS] = ACTIONS(1567), + [anon_sym_DASH_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_ATinterface] = ACTIONS(1567), + [anon_sym_interface] = ACTIONS(1569), + [anon_sym_class] = ACTIONS(1569), + [anon_sym_COMMA] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1567), + [anon_sym_RBRACE] = ACTIONS(1567), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1569), + [anon_sym_this] = ACTIONS(1569), + [anon_sym_null] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_RPAREN] = ACTIONS(1567), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1567), + [aux_sym_number_literal_token1] = ACTIONS(1569), + [aux_sym_number_literal_token2] = ACTIONS(1567), + [aux_sym_number_literal_token3] = ACTIONS(1567), + [aux_sym_number_literal_token4] = ACTIONS(1569), + [aux_sym_number_literal_token5] = ACTIONS(1567), + [anon_sym_pipeline] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_SQUOTE] = ACTIONS(1569), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1567), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1567), + [anon_sym_switch] = ACTIONS(1569), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_int] = ACTIONS(1569), + [anon_sym_boolean] = ACTIONS(1569), + [anon_sym_char] = ACTIONS(1569), + [anon_sym_short] = ACTIONS(1569), + [anon_sym_long] = ACTIONS(1569), + [anon_sym_float] = ACTIONS(1569), + [anon_sym_double] = ACTIONS(1569), + [anon_sym_void] = ACTIONS(1569), + [anon_sym_public] = ACTIONS(1569), + [anon_sym_protected] = ACTIONS(1569), + [anon_sym_private] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1569), + [anon_sym_final] = ACTIONS(1569), + [anon_sym_synchronized] = ACTIONS(1569), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_new] = ACTIONS(1569), + }, + [733] = { + [sym_comment] = STATE(733), + [sym_groovy_doc] = STATE(733), + [ts_builtin_sym_end] = ACTIONS(1627), + [sym_identifier] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [anon_sym_STAR_COLON] = ACTIONS(1627), + [anon_sym_import] = ACTIONS(1629), + [anon_sym_package] = ACTIONS(1629), + [anon_sym_AT] = ACTIONS(1629), + [anon_sym_assert] = ACTIONS(1629), + [anon_sym_PLUS_PLUS] = ACTIONS(1627), + [anon_sym_DASH_DASH] = ACTIONS(1627), + [anon_sym_SLASH] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [anon_sym_ATinterface] = ACTIONS(1627), + [anon_sym_interface] = ACTIONS(1629), + [anon_sym_class] = ACTIONS(1629), + [anon_sym_COMMA] = ACTIONS(1627), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_RBRACE] = ACTIONS(1627), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1629), + [anon_sym_this] = ACTIONS(1629), + [anon_sym_null] = ACTIONS(1629), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_RPAREN] = ACTIONS(1627), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_else] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1627), + [aux_sym_number_literal_token1] = ACTIONS(1629), + [aux_sym_number_literal_token2] = ACTIONS(1627), + [aux_sym_number_literal_token3] = ACTIONS(1627), + [aux_sym_number_literal_token4] = ACTIONS(1629), + [aux_sym_number_literal_token5] = ACTIONS(1627), + [anon_sym_pipeline] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1629), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1629), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1627), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1627), + [anon_sym_switch] = ACTIONS(1629), + [anon_sym_try] = ACTIONS(1629), + [anon_sym_int] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_short] = ACTIONS(1629), + [anon_sym_long] = ACTIONS(1629), + [anon_sym_float] = ACTIONS(1629), + [anon_sym_double] = ACTIONS(1629), + [anon_sym_void] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_final] = ACTIONS(1629), + [anon_sym_synchronized] = ACTIONS(1629), + [anon_sym_TILDE] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1627), + [anon_sym_new] = ACTIONS(1629), + }, + [734] = { + [sym_comment] = STATE(734), + [sym_groovy_doc] = STATE(734), + [ts_builtin_sym_end] = ACTIONS(1635), + [sym_identifier] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_STAR] = ACTIONS(1637), + [anon_sym_STAR_COLON] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(1637), + [anon_sym_package] = ACTIONS(1637), + [anon_sym_AT] = ACTIONS(1637), + [anon_sym_assert] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_SLASH] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1637), + [anon_sym_false] = ACTIONS(1637), + [anon_sym_ATinterface] = ACTIONS(1635), + [anon_sym_interface] = ACTIONS(1637), + [anon_sym_class] = ACTIONS(1637), + [anon_sym_COMMA] = ACTIONS(1635), + [anon_sym_LBRACE] = ACTIONS(1635), + [anon_sym_RBRACE] = ACTIONS(1635), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1637), + [anon_sym_this] = ACTIONS(1637), + [anon_sym_null] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_RPAREN] = ACTIONS(1635), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_else] = ACTIONS(1637), + [anon_sym_LBRACK] = ACTIONS(1635), + [aux_sym_number_literal_token1] = ACTIONS(1637), + [aux_sym_number_literal_token2] = ACTIONS(1635), + [aux_sym_number_literal_token3] = ACTIONS(1635), + [aux_sym_number_literal_token4] = ACTIONS(1637), + [aux_sym_number_literal_token5] = ACTIONS(1635), + [anon_sym_pipeline] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_SQUOTE] = ACTIONS(1637), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1637), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1635), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1635), + [anon_sym_switch] = ACTIONS(1637), + [anon_sym_try] = ACTIONS(1637), + [anon_sym_int] = ACTIONS(1637), + [anon_sym_boolean] = ACTIONS(1637), + [anon_sym_char] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_float] = ACTIONS(1637), + [anon_sym_double] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_public] = ACTIONS(1637), + [anon_sym_protected] = ACTIONS(1637), + [anon_sym_private] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_final] = ACTIONS(1637), + [anon_sym_synchronized] = ACTIONS(1637), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_new] = ACTIONS(1637), + }, + [735] = { + [sym_comment] = STATE(735), + [sym_groovy_doc] = STATE(735), + [ts_builtin_sym_end] = ACTIONS(610), + [sym_identifier] = ACTIONS(608), + [anon_sym_break] = ACTIONS(608), + [anon_sym_continue] = ACTIONS(608), + [anon_sym_SEMI] = ACTIONS(610), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_STAR_COLON] = ACTIONS(610), + [anon_sym_import] = ACTIONS(608), + [anon_sym_package] = ACTIONS(608), + [anon_sym_AT] = ACTIONS(608), + [anon_sym_assert] = ACTIONS(608), + [anon_sym_PLUS_PLUS] = ACTIONS(610), + [anon_sym_DASH_DASH] = ACTIONS(610), + [anon_sym_SLASH] = ACTIONS(608), + [anon_sym_PLUS] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(608), + [anon_sym_true] = ACTIONS(608), + [anon_sym_false] = ACTIONS(608), + [anon_sym_ATinterface] = ACTIONS(610), + [anon_sym_interface] = ACTIONS(608), + [anon_sym_class] = ACTIONS(608), + [anon_sym_COMMA] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_RBRACE] = ACTIONS(610), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(608), + [anon_sym_this] = ACTIONS(608), + [anon_sym_null] = ACTIONS(608), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_RPAREN] = ACTIONS(610), + [anon_sym_do] = ACTIONS(608), + [anon_sym_while] = ACTIONS(608), + [anon_sym_for] = ACTIONS(608), + [anon_sym_if] = ACTIONS(608), + [anon_sym_else] = ACTIONS(608), + [anon_sym_LBRACK] = ACTIONS(610), + [aux_sym_number_literal_token1] = ACTIONS(608), + [aux_sym_number_literal_token2] = ACTIONS(610), + [aux_sym_number_literal_token3] = ACTIONS(610), + [aux_sym_number_literal_token4] = ACTIONS(608), + [aux_sym_number_literal_token5] = ACTIONS(610), + [anon_sym_pipeline] = ACTIONS(608), + [anon_sym_return] = ACTIONS(608), + [anon_sym_SQUOTE] = ACTIONS(608), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(610), + [anon_sym_DQUOTE] = ACTIONS(608), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(610), + [anon_sym_DOLLAR_SLASH] = ACTIONS(610), + [anon_sym_switch] = ACTIONS(608), + [anon_sym_try] = ACTIONS(608), + [anon_sym_int] = ACTIONS(608), + [anon_sym_boolean] = ACTIONS(608), + [anon_sym_char] = ACTIONS(608), + [anon_sym_short] = ACTIONS(608), + [anon_sym_long] = ACTIONS(608), + [anon_sym_float] = ACTIONS(608), + [anon_sym_double] = ACTIONS(608), + [anon_sym_void] = ACTIONS(608), + [anon_sym_public] = ACTIONS(608), + [anon_sym_protected] = ACTIONS(608), + [anon_sym_private] = ACTIONS(608), + [anon_sym_static] = ACTIONS(608), + [anon_sym_final] = ACTIONS(608), + [anon_sym_synchronized] = ACTIONS(608), + [anon_sym_TILDE] = ACTIONS(610), + [anon_sym_BANG] = ACTIONS(610), + [anon_sym_new] = ACTIONS(608), + }, + [736] = { + [sym_comment] = STATE(736), + [sym_groovy_doc] = STATE(736), + [ts_builtin_sym_end] = ACTIONS(1559), + [sym_identifier] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_STAR_COLON] = ACTIONS(1559), + [anon_sym_import] = ACTIONS(1561), + [anon_sym_package] = ACTIONS(1561), + [anon_sym_AT] = ACTIONS(1561), + [anon_sym_assert] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_SLASH] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [anon_sym_ATinterface] = ACTIONS(1559), + [anon_sym_interface] = ACTIONS(1561), + [anon_sym_class] = ACTIONS(1561), + [anon_sym_COMMA] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1559), + [anon_sym_RBRACE] = ACTIONS(1559), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(1561), + [anon_sym_null] = ACTIONS(1561), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_RPAREN] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_else] = ACTIONS(1561), + [anon_sym_LBRACK] = ACTIONS(1559), + [aux_sym_number_literal_token1] = ACTIONS(1561), + [aux_sym_number_literal_token2] = ACTIONS(1559), + [aux_sym_number_literal_token3] = ACTIONS(1559), + [aux_sym_number_literal_token4] = ACTIONS(1561), + [aux_sym_number_literal_token5] = ACTIONS(1559), + [anon_sym_pipeline] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_SQUOTE] = ACTIONS(1561), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1561), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1559), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1559), + [anon_sym_switch] = ACTIONS(1561), + [anon_sym_try] = ACTIONS(1561), + [anon_sym_int] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_char] = ACTIONS(1561), + [anon_sym_short] = ACTIONS(1561), + [anon_sym_long] = ACTIONS(1561), + [anon_sym_float] = ACTIONS(1561), + [anon_sym_double] = ACTIONS(1561), + [anon_sym_void] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_final] = ACTIONS(1561), + [anon_sym_synchronized] = ACTIONS(1561), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_new] = ACTIONS(1561), + }, + [737] = { + [sym_comment] = STATE(737), + [sym_groovy_doc] = STATE(737), + [ts_builtin_sym_end] = ACTIONS(1491), + [sym_identifier] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_STAR_COLON] = ACTIONS(1491), + [anon_sym_import] = ACTIONS(1493), + [anon_sym_package] = ACTIONS(1493), + [anon_sym_AT] = ACTIONS(1493), + [anon_sym_assert] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_ATinterface] = ACTIONS(1491), + [anon_sym_interface] = ACTIONS(1493), + [anon_sym_class] = ACTIONS(1493), + [anon_sym_COMMA] = ACTIONS(1491), + [anon_sym_LBRACE] = ACTIONS(1491), + [anon_sym_RBRACE] = ACTIONS(1491), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1493), + [anon_sym_this] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_RPAREN] = ACTIONS(1491), + [anon_sym_do] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_else] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(1491), + [aux_sym_number_literal_token1] = ACTIONS(1493), + [aux_sym_number_literal_token2] = ACTIONS(1491), + [aux_sym_number_literal_token3] = ACTIONS(1491), + [aux_sym_number_literal_token4] = ACTIONS(1493), + [aux_sym_number_literal_token5] = ACTIONS(1491), + [anon_sym_pipeline] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_SQUOTE] = ACTIONS(1493), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1493), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1491), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1491), + [anon_sym_switch] = ACTIONS(1493), + [anon_sym_try] = ACTIONS(1493), + [anon_sym_int] = ACTIONS(1493), + [anon_sym_boolean] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_short] = ACTIONS(1493), + [anon_sym_long] = ACTIONS(1493), + [anon_sym_float] = ACTIONS(1493), + [anon_sym_double] = ACTIONS(1493), + [anon_sym_void] = ACTIONS(1493), + [anon_sym_public] = ACTIONS(1493), + [anon_sym_protected] = ACTIONS(1493), + [anon_sym_private] = ACTIONS(1493), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_final] = ACTIONS(1493), + [anon_sym_synchronized] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_new] = ACTIONS(1493), + }, + [738] = { + [sym_comment] = STATE(738), + [sym_groovy_doc] = STATE(738), + [ts_builtin_sym_end] = ACTIONS(1555), + [sym_identifier] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1557), + [anon_sym_continue] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1555), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_STAR_COLON] = ACTIONS(1555), + [anon_sym_import] = ACTIONS(1557), + [anon_sym_package] = ACTIONS(1557), + [anon_sym_AT] = ACTIONS(1557), + [anon_sym_assert] = ACTIONS(1557), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_SLASH] = ACTIONS(1557), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [anon_sym_ATinterface] = ACTIONS(1555), + [anon_sym_interface] = ACTIONS(1557), + [anon_sym_class] = ACTIONS(1557), + [anon_sym_COMMA] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1555), + [anon_sym_RBRACE] = ACTIONS(1555), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1557), + [anon_sym_this] = ACTIONS(1557), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_RPAREN] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1557), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_else] = ACTIONS(1557), + [anon_sym_LBRACK] = ACTIONS(1555), + [aux_sym_number_literal_token1] = ACTIONS(1557), + [aux_sym_number_literal_token2] = ACTIONS(1555), + [aux_sym_number_literal_token3] = ACTIONS(1555), + [aux_sym_number_literal_token4] = ACTIONS(1557), + [aux_sym_number_literal_token5] = ACTIONS(1555), + [anon_sym_pipeline] = ACTIONS(1557), + [anon_sym_return] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1555), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1555), + [anon_sym_switch] = ACTIONS(1557), + [anon_sym_try] = ACTIONS(1557), + [anon_sym_int] = ACTIONS(1557), + [anon_sym_boolean] = ACTIONS(1557), + [anon_sym_char] = ACTIONS(1557), + [anon_sym_short] = ACTIONS(1557), + [anon_sym_long] = ACTIONS(1557), + [anon_sym_float] = ACTIONS(1557), + [anon_sym_double] = ACTIONS(1557), + [anon_sym_void] = ACTIONS(1557), + [anon_sym_public] = ACTIONS(1557), + [anon_sym_protected] = ACTIONS(1557), + [anon_sym_private] = ACTIONS(1557), + [anon_sym_static] = ACTIONS(1557), + [anon_sym_final] = ACTIONS(1557), + [anon_sym_synchronized] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1557), + }, + [739] = { + [sym_comment] = STATE(739), + [sym_groovy_doc] = STATE(739), + [ts_builtin_sym_end] = ACTIONS(1619), + [sym_identifier] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_STAR_COLON] = ACTIONS(1619), + [anon_sym_import] = ACTIONS(1621), + [anon_sym_package] = ACTIONS(1621), + [anon_sym_AT] = ACTIONS(1621), + [anon_sym_assert] = ACTIONS(1621), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_true] = ACTIONS(1621), + [anon_sym_false] = ACTIONS(1621), + [anon_sym_ATinterface] = ACTIONS(1619), + [anon_sym_interface] = ACTIONS(1621), + [anon_sym_class] = ACTIONS(1621), + [anon_sym_COMMA] = ACTIONS(1619), + [anon_sym_LBRACE] = ACTIONS(1619), + [anon_sym_RBRACE] = ACTIONS(1619), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1621), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_null] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_RPAREN] = ACTIONS(1619), + [anon_sym_do] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_else] = ACTIONS(1621), + [anon_sym_LBRACK] = ACTIONS(1619), + [aux_sym_number_literal_token1] = ACTIONS(1621), + [aux_sym_number_literal_token2] = ACTIONS(1619), + [aux_sym_number_literal_token3] = ACTIONS(1619), + [aux_sym_number_literal_token4] = ACTIONS(1621), + [aux_sym_number_literal_token5] = ACTIONS(1619), + [anon_sym_pipeline] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1619), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1619), + [anon_sym_switch] = ACTIONS(1621), + [anon_sym_try] = ACTIONS(1621), + [anon_sym_int] = ACTIONS(1621), + [anon_sym_boolean] = ACTIONS(1621), + [anon_sym_char] = ACTIONS(1621), + [anon_sym_short] = ACTIONS(1621), + [anon_sym_long] = ACTIONS(1621), + [anon_sym_float] = ACTIONS(1621), + [anon_sym_double] = ACTIONS(1621), + [anon_sym_void] = ACTIONS(1621), + [anon_sym_public] = ACTIONS(1621), + [anon_sym_protected] = ACTIONS(1621), + [anon_sym_private] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1621), + [anon_sym_final] = ACTIONS(1621), + [anon_sym_synchronized] = ACTIONS(1621), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_new] = ACTIONS(1621), + }, + [740] = { + [sym_comment] = STATE(740), + [sym_groovy_doc] = STATE(740), + [ts_builtin_sym_end] = ACTIONS(1471), + [sym_identifier] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_STAR_COLON] = ACTIONS(1471), + [anon_sym_import] = ACTIONS(1473), + [anon_sym_package] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_assert] = ACTIONS(1473), + [anon_sym_PLUS_PLUS] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_ATinterface] = ACTIONS(1471), + [anon_sym_interface] = ACTIONS(1473), + [anon_sym_class] = ACTIONS(1473), + [anon_sym_COMMA] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1471), + [anon_sym_RBRACE] = ACTIONS(1471), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1473), + [anon_sym_this] = ACTIONS(1473), + [anon_sym_null] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_RPAREN] = ACTIONS(1471), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_else] = ACTIONS(1473), + [anon_sym_LBRACK] = ACTIONS(1471), + [aux_sym_number_literal_token1] = ACTIONS(1473), + [aux_sym_number_literal_token2] = ACTIONS(1471), + [aux_sym_number_literal_token3] = ACTIONS(1471), + [aux_sym_number_literal_token4] = ACTIONS(1473), + [aux_sym_number_literal_token5] = ACTIONS(1471), + [anon_sym_pipeline] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_SQUOTE] = ACTIONS(1473), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1473), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1471), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1473), + [anon_sym_try] = ACTIONS(1473), + [anon_sym_int] = ACTIONS(1473), + [anon_sym_boolean] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_float] = ACTIONS(1473), + [anon_sym_double] = ACTIONS(1473), + [anon_sym_void] = ACTIONS(1473), + [anon_sym_public] = ACTIONS(1473), + [anon_sym_protected] = ACTIONS(1473), + [anon_sym_private] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_final] = ACTIONS(1473), + [anon_sym_synchronized] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_new] = ACTIONS(1473), + }, + [741] = { + [sym_comment] = STATE(741), + [sym_groovy_doc] = STATE(741), + [sym_parameter_list] = STATE(648), + [sym_identifier] = ACTIONS(1663), + [anon_sym_break] = ACTIONS(1663), + [anon_sym_continue] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_STAR_COLON] = ACTIONS(1665), + [anon_sym_import] = ACTIONS(1663), + [anon_sym_package] = ACTIONS(1663), + [anon_sym_AT] = ACTIONS(1663), + [anon_sym_assert] = ACTIONS(1663), + [anon_sym_EQ] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_true] = ACTIONS(1663), + [anon_sym_false] = ACTIONS(1663), + [anon_sym_ATinterface] = ACTIONS(1665), + [anon_sym_interface] = ACTIONS(1663), + [anon_sym_class] = ACTIONS(1663), + [anon_sym_LBRACE] = ACTIONS(1665), + [anon_sym_RBRACE] = ACTIONS(1665), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1663), + [anon_sym_this] = ACTIONS(1663), + [anon_sym_null] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_do] = ACTIONS(1663), + [anon_sym_while] = ACTIONS(1663), + [anon_sym_for] = ACTIONS(1663), + [anon_sym_if] = ACTIONS(1663), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), + [aux_sym_number_literal_token1] = ACTIONS(1663), + [aux_sym_number_literal_token2] = ACTIONS(1665), + [aux_sym_number_literal_token3] = ACTIONS(1665), + [aux_sym_number_literal_token4] = ACTIONS(1663), + [aux_sym_number_literal_token5] = ACTIONS(1665), + [anon_sym_return] = ACTIONS(1663), + [anon_sym_SQUOTE] = ACTIONS(1663), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1665), + [anon_sym_DQUOTE] = ACTIONS(1663), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1665), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1665), + [anon_sym_switch] = ACTIONS(1663), + [anon_sym_try] = ACTIONS(1663), + [anon_sym_catch] = ACTIONS(1663), + [anon_sym_finally] = ACTIONS(1663), + [anon_sym_int] = ACTIONS(1663), + [anon_sym_boolean] = ACTIONS(1663), + [anon_sym_char] = ACTIONS(1663), + [anon_sym_short] = ACTIONS(1663), + [anon_sym_long] = ACTIONS(1663), + [anon_sym_float] = ACTIONS(1663), + [anon_sym_double] = ACTIONS(1663), + [anon_sym_void] = ACTIONS(1663), + [anon_sym_public] = ACTIONS(1663), + [anon_sym_protected] = ACTIONS(1663), + [anon_sym_private] = ACTIONS(1663), + [anon_sym_static] = ACTIONS(1663), + [anon_sym_final] = ACTIONS(1663), + [anon_sym_synchronized] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_new] = ACTIONS(1663), + }, + [742] = { + [sym_comment] = STATE(742), + [sym_groovy_doc] = STATE(742), + [ts_builtin_sym_end] = ACTIONS(1547), + [sym_identifier] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_STAR_COLON] = ACTIONS(1547), + [anon_sym_import] = ACTIONS(1549), + [anon_sym_package] = ACTIONS(1549), + [anon_sym_AT] = ACTIONS(1549), + [anon_sym_assert] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), + [anon_sym_DASH_DASH] = ACTIONS(1547), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1549), + [anon_sym_false] = ACTIONS(1549), + [anon_sym_ATinterface] = ACTIONS(1547), + [anon_sym_interface] = ACTIONS(1549), + [anon_sym_class] = ACTIONS(1549), + [anon_sym_COMMA] = ACTIONS(1547), + [anon_sym_LBRACE] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1547), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1549), + [anon_sym_this] = ACTIONS(1549), + [anon_sym_null] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_RPAREN] = ACTIONS(1547), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_else] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1547), + [aux_sym_number_literal_token1] = ACTIONS(1549), + [aux_sym_number_literal_token2] = ACTIONS(1547), + [aux_sym_number_literal_token3] = ACTIONS(1547), + [aux_sym_number_literal_token4] = ACTIONS(1549), + [aux_sym_number_literal_token5] = ACTIONS(1547), + [anon_sym_pipeline] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_SQUOTE] = ACTIONS(1549), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1549), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1547), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_try] = ACTIONS(1549), + [anon_sym_int] = ACTIONS(1549), + [anon_sym_boolean] = ACTIONS(1549), + [anon_sym_char] = ACTIONS(1549), + [anon_sym_short] = ACTIONS(1549), + [anon_sym_long] = ACTIONS(1549), + [anon_sym_float] = ACTIONS(1549), + [anon_sym_double] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_public] = ACTIONS(1549), + [anon_sym_protected] = ACTIONS(1549), + [anon_sym_private] = ACTIONS(1549), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_final] = ACTIONS(1549), + [anon_sym_synchronized] = ACTIONS(1549), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_new] = ACTIONS(1549), + }, + [743] = { + [sym_comment] = STATE(743), + [sym_groovy_doc] = STATE(743), + [sym_argument_list] = STATE(780), + [sym_identifier] = ACTIONS(259), + [anon_sym_break] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(259), + [anon_sym_SEMI] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(259), + [anon_sym_STAR_COLON] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(1671), + [anon_sym_import] = ACTIONS(259), + [anon_sym_package] = ACTIONS(259), + [anon_sym_AT] = ACTIONS(259), + [anon_sym_assert] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_true] = ACTIONS(259), + [anon_sym_false] = ACTIONS(259), + [anon_sym_ATinterface] = ACTIONS(261), + [anon_sym_interface] = ACTIONS(259), + [anon_sym_class] = ACTIONS(259), + [anon_sym_LBRACE] = ACTIONS(261), + [anon_sym_RBRACE] = ACTIONS(261), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(259), + [anon_sym_this] = ACTIONS(259), + [anon_sym_null] = ACTIONS(259), + [anon_sym_LPAREN] = ACTIONS(261), + [anon_sym_do] = ACTIONS(259), + [anon_sym_while] = ACTIONS(259), + [anon_sym_for] = ACTIONS(259), + [anon_sym_if] = ACTIONS(259), + [anon_sym_else] = ACTIONS(259), + [anon_sym_LBRACK] = ACTIONS(1673), + [aux_sym_number_literal_token1] = ACTIONS(259), + [aux_sym_number_literal_token2] = ACTIONS(261), + [aux_sym_number_literal_token3] = ACTIONS(261), + [aux_sym_number_literal_token4] = ACTIONS(259), + [aux_sym_number_literal_token5] = ACTIONS(261), + [anon_sym_return] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(261), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_SLASH] = ACTIONS(261), + [anon_sym_switch] = ACTIONS(259), + [anon_sym_try] = ACTIONS(259), + [anon_sym_catch] = ACTIONS(259), + [anon_sym_finally] = ACTIONS(259), + [anon_sym_int] = ACTIONS(259), + [anon_sym_boolean] = ACTIONS(259), + [anon_sym_char] = ACTIONS(259), + [anon_sym_short] = ACTIONS(259), + [anon_sym_long] = ACTIONS(259), + [anon_sym_float] = ACTIONS(259), + [anon_sym_double] = ACTIONS(259), + [anon_sym_void] = ACTIONS(259), + [anon_sym_public] = ACTIONS(259), + [anon_sym_protected] = ACTIONS(259), + [anon_sym_private] = ACTIONS(259), + [anon_sym_static] = ACTIONS(259), + [anon_sym_final] = ACTIONS(259), + [anon_sym_synchronized] = ACTIONS(259), + [anon_sym_TILDE] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_new] = ACTIONS(259), + }, + [744] = { + [sym_comment] = STATE(744), + [sym_groovy_doc] = STATE(744), + [sym_parameter_list] = STATE(652), + [sym_identifier] = ACTIONS(1675), + [anon_sym_break] = ACTIONS(1675), + [anon_sym_continue] = ACTIONS(1675), + [anon_sym_SEMI] = ACTIONS(1677), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_STAR_COLON] = ACTIONS(1677), + [anon_sym_import] = ACTIONS(1675), + [anon_sym_package] = ACTIONS(1675), + [anon_sym_AT] = ACTIONS(1675), + [anon_sym_assert] = ACTIONS(1675), + [anon_sym_EQ] = ACTIONS(1679), + [anon_sym_PLUS_PLUS] = ACTIONS(1677), + [anon_sym_DASH_DASH] = ACTIONS(1677), + [anon_sym_SLASH] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1675), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1675), + [anon_sym_false] = ACTIONS(1675), + [anon_sym_ATinterface] = ACTIONS(1677), + [anon_sym_interface] = ACTIONS(1675), + [anon_sym_class] = ACTIONS(1675), + [anon_sym_LBRACE] = ACTIONS(1677), + [anon_sym_RBRACE] = ACTIONS(1677), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1675), + [anon_sym_this] = ACTIONS(1675), + [anon_sym_null] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_do] = ACTIONS(1675), + [anon_sym_while] = ACTIONS(1675), + [anon_sym_for] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1675), + [anon_sym_else] = ACTIONS(1675), + [anon_sym_LBRACK] = ACTIONS(1677), + [aux_sym_number_literal_token1] = ACTIONS(1675), + [aux_sym_number_literal_token2] = ACTIONS(1677), + [aux_sym_number_literal_token3] = ACTIONS(1677), + [aux_sym_number_literal_token4] = ACTIONS(1675), + [aux_sym_number_literal_token5] = ACTIONS(1677), + [anon_sym_return] = ACTIONS(1675), + [anon_sym_SQUOTE] = ACTIONS(1675), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1677), + [anon_sym_DQUOTE] = ACTIONS(1675), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1677), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1677), + [anon_sym_switch] = ACTIONS(1675), + [anon_sym_try] = ACTIONS(1675), + [anon_sym_catch] = ACTIONS(1675), + [anon_sym_finally] = ACTIONS(1675), + [anon_sym_int] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_char] = ACTIONS(1675), + [anon_sym_short] = ACTIONS(1675), + [anon_sym_long] = ACTIONS(1675), + [anon_sym_float] = ACTIONS(1675), + [anon_sym_double] = ACTIONS(1675), + [anon_sym_void] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_final] = ACTIONS(1675), + [anon_sym_synchronized] = ACTIONS(1675), + [anon_sym_TILDE] = ACTIONS(1677), + [anon_sym_BANG] = ACTIONS(1677), + [anon_sym_new] = ACTIONS(1675), + }, + [745] = { + [sym_comment] = STATE(745), + [sym_groovy_doc] = STATE(745), + [sym_parameter_list] = STATE(652), + [sym_identifier] = ACTIONS(1681), + [anon_sym_break] = ACTIONS(1681), + [anon_sym_continue] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_STAR_COLON] = ACTIONS(1683), + [anon_sym_import] = ACTIONS(1681), + [anon_sym_package] = ACTIONS(1681), + [anon_sym_AT] = ACTIONS(1681), + [anon_sym_assert] = ACTIONS(1681), + [anon_sym_EQ] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(1681), + [anon_sym_false] = ACTIONS(1681), + [anon_sym_ATinterface] = ACTIONS(1683), + [anon_sym_interface] = ACTIONS(1681), + [anon_sym_class] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_RBRACE] = ACTIONS(1683), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1681), + [anon_sym_this] = ACTIONS(1681), + [anon_sym_null] = ACTIONS(1681), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_do] = ACTIONS(1681), + [anon_sym_while] = ACTIONS(1681), + [anon_sym_for] = ACTIONS(1681), + [anon_sym_if] = ACTIONS(1681), + [anon_sym_else] = ACTIONS(1681), + [anon_sym_LBRACK] = ACTIONS(1683), + [aux_sym_number_literal_token1] = ACTIONS(1681), + [aux_sym_number_literal_token2] = ACTIONS(1683), + [aux_sym_number_literal_token3] = ACTIONS(1683), + [aux_sym_number_literal_token4] = ACTIONS(1681), + [aux_sym_number_literal_token5] = ACTIONS(1683), + [anon_sym_return] = ACTIONS(1681), + [anon_sym_SQUOTE] = ACTIONS(1681), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1683), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1683), + [anon_sym_switch] = ACTIONS(1681), + [anon_sym_try] = ACTIONS(1681), + [anon_sym_catch] = ACTIONS(1681), + [anon_sym_finally] = ACTIONS(1681), + [anon_sym_int] = ACTIONS(1681), + [anon_sym_boolean] = ACTIONS(1681), + [anon_sym_char] = ACTIONS(1681), + [anon_sym_short] = ACTIONS(1681), + [anon_sym_long] = ACTIONS(1681), + [anon_sym_float] = ACTIONS(1681), + [anon_sym_double] = ACTIONS(1681), + [anon_sym_void] = ACTIONS(1681), + [anon_sym_public] = ACTIONS(1681), + [anon_sym_protected] = ACTIONS(1681), + [anon_sym_private] = ACTIONS(1681), + [anon_sym_static] = ACTIONS(1681), + [anon_sym_final] = ACTIONS(1681), + [anon_sym_synchronized] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_new] = ACTIONS(1681), + }, + [746] = { + [sym_comment] = STATE(746), + [sym_groovy_doc] = STATE(746), + [ts_builtin_sym_end] = ACTIONS(1631), + [sym_identifier] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_STAR] = ACTIONS(1633), + [anon_sym_STAR_COLON] = ACTIONS(1631), + [anon_sym_import] = ACTIONS(1633), + [anon_sym_package] = ACTIONS(1633), + [anon_sym_AT] = ACTIONS(1633), + [anon_sym_assert] = ACTIONS(1633), + [anon_sym_PLUS_PLUS] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1631), + [anon_sym_SLASH] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_ATinterface] = ACTIONS(1631), + [anon_sym_interface] = ACTIONS(1633), + [anon_sym_class] = ACTIONS(1633), + [anon_sym_COMMA] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1631), + [anon_sym_RBRACE] = ACTIONS(1631), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1633), + [anon_sym_this] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_RPAREN] = ACTIONS(1631), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_else] = ACTIONS(1633), + [anon_sym_LBRACK] = ACTIONS(1631), + [aux_sym_number_literal_token1] = ACTIONS(1633), + [aux_sym_number_literal_token2] = ACTIONS(1631), + [aux_sym_number_literal_token3] = ACTIONS(1631), + [aux_sym_number_literal_token4] = ACTIONS(1633), + [aux_sym_number_literal_token5] = ACTIONS(1631), + [anon_sym_pipeline] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1633), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1631), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1631), + [anon_sym_switch] = ACTIONS(1633), + [anon_sym_try] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_boolean] = ACTIONS(1633), + [anon_sym_char] = ACTIONS(1633), + [anon_sym_short] = ACTIONS(1633), + [anon_sym_long] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_double] = ACTIONS(1633), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_public] = ACTIONS(1633), + [anon_sym_protected] = ACTIONS(1633), + [anon_sym_private] = ACTIONS(1633), + [anon_sym_static] = ACTIONS(1633), + [anon_sym_final] = ACTIONS(1633), + [anon_sym_synchronized] = ACTIONS(1633), + [anon_sym_TILDE] = ACTIONS(1631), + [anon_sym_BANG] = ACTIONS(1631), + [anon_sym_new] = ACTIONS(1633), + }, + [747] = { + [sym_comment] = STATE(747), + [sym_groovy_doc] = STATE(747), + [ts_builtin_sym_end] = ACTIONS(1495), + [sym_identifier] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_STAR_COLON] = ACTIONS(1495), + [anon_sym_import] = ACTIONS(1497), + [anon_sym_package] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1497), + [anon_sym_assert] = ACTIONS(1497), + [anon_sym_PLUS_PLUS] = ACTIONS(1495), + [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_ATinterface] = ACTIONS(1495), + [anon_sym_interface] = ACTIONS(1497), + [anon_sym_class] = ACTIONS(1497), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_RBRACE] = ACTIONS(1495), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1497), + [anon_sym_this] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_RPAREN] = ACTIONS(1495), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_else] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(1495), + [aux_sym_number_literal_token1] = ACTIONS(1497), + [aux_sym_number_literal_token2] = ACTIONS(1495), + [aux_sym_number_literal_token3] = ACTIONS(1495), + [aux_sym_number_literal_token4] = ACTIONS(1497), + [aux_sym_number_literal_token5] = ACTIONS(1495), + [anon_sym_pipeline] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1495), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1495), + [anon_sym_switch] = ACTIONS(1497), + [anon_sym_try] = ACTIONS(1497), + [anon_sym_int] = ACTIONS(1497), + [anon_sym_boolean] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_short] = ACTIONS(1497), + [anon_sym_long] = ACTIONS(1497), + [anon_sym_float] = ACTIONS(1497), + [anon_sym_double] = ACTIONS(1497), + [anon_sym_void] = ACTIONS(1497), + [anon_sym_public] = ACTIONS(1497), + [anon_sym_protected] = ACTIONS(1497), + [anon_sym_private] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(1497), + [anon_sym_final] = ACTIONS(1497), + [anon_sym_synchronized] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(1495), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_new] = ACTIONS(1497), + }, + [748] = { + [sym_comment] = STATE(748), + [sym_groovy_doc] = STATE(748), + [aux_sym__juxt_argument_list_repeat1] = STATE(758), + [sym_identifier] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1687), + [anon_sym_continue] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_STAR] = ACTIONS(1687), + [anon_sym_STAR_COLON] = ACTIONS(1689), + [anon_sym_import] = ACTIONS(1687), + [anon_sym_package] = ACTIONS(1687), + [anon_sym_AT] = ACTIONS(1687), + [anon_sym_assert] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1689), + [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_SLASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_true] = ACTIONS(1687), + [anon_sym_false] = ACTIONS(1687), + [anon_sym_ATinterface] = ACTIONS(1689), + [anon_sym_interface] = ACTIONS(1687), + [anon_sym_class] = ACTIONS(1687), + [anon_sym_COMMA] = ACTIONS(325), + [anon_sym_LBRACE] = ACTIONS(1689), + [anon_sym_RBRACE] = ACTIONS(1689), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1687), + [anon_sym_this] = ACTIONS(1687), + [anon_sym_null] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_do] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_for] = ACTIONS(1687), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_else] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1689), + [aux_sym_number_literal_token1] = ACTIONS(1687), + [aux_sym_number_literal_token2] = ACTIONS(1689), + [aux_sym_number_literal_token3] = ACTIONS(1689), + [aux_sym_number_literal_token4] = ACTIONS(1687), + [aux_sym_number_literal_token5] = ACTIONS(1689), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_SQUOTE] = ACTIONS(1687), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1689), + [anon_sym_DQUOTE] = ACTIONS(1687), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1689), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1689), + [anon_sym_switch] = ACTIONS(1687), + [anon_sym_try] = ACTIONS(1687), + [anon_sym_catch] = ACTIONS(1687), + [anon_sym_finally] = ACTIONS(1687), + [anon_sym_int] = ACTIONS(1687), + [anon_sym_boolean] = ACTIONS(1687), + [anon_sym_char] = ACTIONS(1687), + [anon_sym_short] = ACTIONS(1687), + [anon_sym_long] = ACTIONS(1687), + [anon_sym_float] = ACTIONS(1687), + [anon_sym_double] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_public] = ACTIONS(1687), + [anon_sym_protected] = ACTIONS(1687), + [anon_sym_private] = ACTIONS(1687), + [anon_sym_static] = ACTIONS(1687), + [anon_sym_final] = ACTIONS(1687), + [anon_sym_synchronized] = ACTIONS(1687), + [anon_sym_TILDE] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1687), + }, + [749] = { + [sym_comment] = STATE(749), + [sym_groovy_doc] = STATE(749), + [ts_builtin_sym_end] = ACTIONS(1511), + [sym_identifier] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_STAR] = ACTIONS(1513), + [anon_sym_STAR_COLON] = ACTIONS(1511), + [anon_sym_import] = ACTIONS(1513), + [anon_sym_package] = ACTIONS(1513), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_assert] = ACTIONS(1513), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [anon_sym_ATinterface] = ACTIONS(1511), + [anon_sym_interface] = ACTIONS(1513), + [anon_sym_class] = ACTIONS(1513), + [anon_sym_COMMA] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_RBRACE] = ACTIONS(1511), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1513), + [anon_sym_this] = ACTIONS(1513), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_RPAREN] = ACTIONS(1511), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_else] = ACTIONS(1513), + [anon_sym_LBRACK] = ACTIONS(1511), + [aux_sym_number_literal_token1] = ACTIONS(1513), + [aux_sym_number_literal_token2] = ACTIONS(1511), + [aux_sym_number_literal_token3] = ACTIONS(1511), + [aux_sym_number_literal_token4] = ACTIONS(1513), + [aux_sym_number_literal_token5] = ACTIONS(1511), + [anon_sym_pipeline] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_SQUOTE] = ACTIONS(1513), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1511), + [anon_sym_DQUOTE] = ACTIONS(1513), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1511), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1511), + [anon_sym_switch] = ACTIONS(1513), + [anon_sym_try] = ACTIONS(1513), + [anon_sym_int] = ACTIONS(1513), + [anon_sym_boolean] = ACTIONS(1513), + [anon_sym_char] = ACTIONS(1513), + [anon_sym_short] = ACTIONS(1513), + [anon_sym_long] = ACTIONS(1513), + [anon_sym_float] = ACTIONS(1513), + [anon_sym_double] = ACTIONS(1513), + [anon_sym_void] = ACTIONS(1513), + [anon_sym_public] = ACTIONS(1513), + [anon_sym_protected] = ACTIONS(1513), + [anon_sym_private] = ACTIONS(1513), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_final] = ACTIONS(1513), + [anon_sym_synchronized] = ACTIONS(1513), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_new] = ACTIONS(1513), + }, + [750] = { + [sym_comment] = STATE(750), + [sym_groovy_doc] = STATE(750), + [ts_builtin_sym_end] = ACTIONS(1503), + [sym_identifier] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_STAR_COLON] = ACTIONS(1503), + [anon_sym_import] = ACTIONS(1505), + [anon_sym_package] = ACTIONS(1505), + [anon_sym_AT] = ACTIONS(1505), + [anon_sym_assert] = ACTIONS(1505), + [anon_sym_PLUS_PLUS] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1503), + [anon_sym_SLASH] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_ATinterface] = ACTIONS(1503), + [anon_sym_interface] = ACTIONS(1505), + [anon_sym_class] = ACTIONS(1505), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_LBRACE] = ACTIONS(1503), + [anon_sym_RBRACE] = ACTIONS(1503), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1505), + [anon_sym_this] = ACTIONS(1505), + [anon_sym_null] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(1503), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_else] = ACTIONS(1505), + [anon_sym_LBRACK] = ACTIONS(1503), + [aux_sym_number_literal_token1] = ACTIONS(1505), + [aux_sym_number_literal_token2] = ACTIONS(1503), + [aux_sym_number_literal_token3] = ACTIONS(1503), + [aux_sym_number_literal_token4] = ACTIONS(1505), + [aux_sym_number_literal_token5] = ACTIONS(1503), + [anon_sym_pipeline] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1503), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1503), + [anon_sym_switch] = ACTIONS(1505), + [anon_sym_try] = ACTIONS(1505), + [anon_sym_int] = ACTIONS(1505), + [anon_sym_boolean] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_short] = ACTIONS(1505), + [anon_sym_long] = ACTIONS(1505), + [anon_sym_float] = ACTIONS(1505), + [anon_sym_double] = ACTIONS(1505), + [anon_sym_void] = ACTIONS(1505), + [anon_sym_public] = ACTIONS(1505), + [anon_sym_protected] = ACTIONS(1505), + [anon_sym_private] = ACTIONS(1505), + [anon_sym_static] = ACTIONS(1505), + [anon_sym_final] = ACTIONS(1505), + [anon_sym_synchronized] = ACTIONS(1505), + [anon_sym_TILDE] = ACTIONS(1503), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_new] = ACTIONS(1505), + }, + [751] = { + [sym_comment] = STATE(751), + [sym_groovy_doc] = STATE(751), + [ts_builtin_sym_end] = ACTIONS(1615), + [sym_identifier] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1617), + [anon_sym_continue] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1617), + [anon_sym_STAR_COLON] = ACTIONS(1615), + [anon_sym_import] = ACTIONS(1617), + [anon_sym_package] = ACTIONS(1617), + [anon_sym_AT] = ACTIONS(1617), + [anon_sym_assert] = ACTIONS(1617), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_SLASH] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1617), + [anon_sym_false] = ACTIONS(1617), + [anon_sym_ATinterface] = ACTIONS(1615), + [anon_sym_interface] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1617), + [anon_sym_COMMA] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1615), + [anon_sym_RBRACE] = ACTIONS(1615), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1617), + [anon_sym_this] = ACTIONS(1617), + [anon_sym_null] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_RPAREN] = ACTIONS(1615), + [anon_sym_do] = ACTIONS(1617), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1617), + [anon_sym_if] = ACTIONS(1617), + [anon_sym_else] = ACTIONS(1617), + [anon_sym_LBRACK] = ACTIONS(1615), + [aux_sym_number_literal_token1] = ACTIONS(1617), + [aux_sym_number_literal_token2] = ACTIONS(1615), + [aux_sym_number_literal_token3] = ACTIONS(1615), + [aux_sym_number_literal_token4] = ACTIONS(1617), + [aux_sym_number_literal_token5] = ACTIONS(1615), + [anon_sym_pipeline] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1615), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1615), + [anon_sym_switch] = ACTIONS(1617), + [anon_sym_try] = ACTIONS(1617), + [anon_sym_int] = ACTIONS(1617), + [anon_sym_boolean] = ACTIONS(1617), + [anon_sym_char] = ACTIONS(1617), + [anon_sym_short] = ACTIONS(1617), + [anon_sym_long] = ACTIONS(1617), + [anon_sym_float] = ACTIONS(1617), + [anon_sym_double] = ACTIONS(1617), + [anon_sym_void] = ACTIONS(1617), + [anon_sym_public] = ACTIONS(1617), + [anon_sym_protected] = ACTIONS(1617), + [anon_sym_private] = ACTIONS(1617), + [anon_sym_static] = ACTIONS(1617), + [anon_sym_final] = ACTIONS(1617), + [anon_sym_synchronized] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_new] = ACTIONS(1617), + }, + [752] = { + [sym_comment] = STATE(752), + [sym_groovy_doc] = STATE(752), + [sym_parameter_list] = STATE(647), + [sym_identifier] = ACTIONS(1691), + [anon_sym_break] = ACTIONS(1691), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym_STAR] = ACTIONS(1691), + [anon_sym_STAR_COLON] = ACTIONS(1693), + [anon_sym_import] = ACTIONS(1691), + [anon_sym_package] = ACTIONS(1691), + [anon_sym_AT] = ACTIONS(1691), + [anon_sym_assert] = ACTIONS(1691), + [anon_sym_EQ] = ACTIONS(1695), + [anon_sym_PLUS_PLUS] = ACTIONS(1693), + [anon_sym_DASH_DASH] = ACTIONS(1693), + [anon_sym_SLASH] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1691), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1691), + [anon_sym_false] = ACTIONS(1691), + [anon_sym_ATinterface] = ACTIONS(1693), + [anon_sym_interface] = ACTIONS(1691), + [anon_sym_class] = ACTIONS(1691), + [anon_sym_LBRACE] = ACTIONS(1693), + [anon_sym_RBRACE] = ACTIONS(1693), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1691), + [anon_sym_this] = ACTIONS(1691), + [anon_sym_null] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_do] = ACTIONS(1691), + [anon_sym_while] = ACTIONS(1691), + [anon_sym_for] = ACTIONS(1691), + [anon_sym_if] = ACTIONS(1691), + [anon_sym_else] = ACTIONS(1691), + [anon_sym_LBRACK] = ACTIONS(1693), + [aux_sym_number_literal_token1] = ACTIONS(1691), + [aux_sym_number_literal_token2] = ACTIONS(1693), + [aux_sym_number_literal_token3] = ACTIONS(1693), + [aux_sym_number_literal_token4] = ACTIONS(1691), + [aux_sym_number_literal_token5] = ACTIONS(1693), + [anon_sym_return] = ACTIONS(1691), + [anon_sym_SQUOTE] = ACTIONS(1691), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1693), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1693), + [anon_sym_switch] = ACTIONS(1691), + [anon_sym_try] = ACTIONS(1691), + [anon_sym_catch] = ACTIONS(1691), + [anon_sym_finally] = ACTIONS(1691), + [anon_sym_int] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_char] = ACTIONS(1691), + [anon_sym_short] = ACTIONS(1691), + [anon_sym_long] = ACTIONS(1691), + [anon_sym_float] = ACTIONS(1691), + [anon_sym_double] = ACTIONS(1691), + [anon_sym_void] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_final] = ACTIONS(1691), + [anon_sym_synchronized] = ACTIONS(1691), + [anon_sym_TILDE] = ACTIONS(1693), + [anon_sym_BANG] = ACTIONS(1693), + [anon_sym_new] = ACTIONS(1691), + }, + [753] = { + [sym_comment] = STATE(753), + [sym_groovy_doc] = STATE(753), + [sym_parameter_list] = STATE(647), + [sym_identifier] = ACTIONS(1697), + [anon_sym_break] = ACTIONS(1697), + [anon_sym_continue] = ACTIONS(1697), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_STAR] = ACTIONS(1697), + [anon_sym_STAR_COLON] = ACTIONS(1699), + [anon_sym_import] = ACTIONS(1697), + [anon_sym_package] = ACTIONS(1697), + [anon_sym_AT] = ACTIONS(1697), + [anon_sym_assert] = ACTIONS(1697), + [anon_sym_EQ] = ACTIONS(1701), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_true] = ACTIONS(1697), + [anon_sym_false] = ACTIONS(1697), + [anon_sym_ATinterface] = ACTIONS(1699), + [anon_sym_interface] = ACTIONS(1697), + [anon_sym_class] = ACTIONS(1697), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_RBRACE] = ACTIONS(1699), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1697), + [anon_sym_this] = ACTIONS(1697), + [anon_sym_null] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_do] = ACTIONS(1697), + [anon_sym_while] = ACTIONS(1697), + [anon_sym_for] = ACTIONS(1697), + [anon_sym_if] = ACTIONS(1697), + [anon_sym_else] = ACTIONS(1697), + [anon_sym_LBRACK] = ACTIONS(1699), + [aux_sym_number_literal_token1] = ACTIONS(1697), + [aux_sym_number_literal_token2] = ACTIONS(1699), + [aux_sym_number_literal_token3] = ACTIONS(1699), + [aux_sym_number_literal_token4] = ACTIONS(1697), + [aux_sym_number_literal_token5] = ACTIONS(1699), + [anon_sym_return] = ACTIONS(1697), + [anon_sym_SQUOTE] = ACTIONS(1697), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1699), + [anon_sym_DQUOTE] = ACTIONS(1697), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1699), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1699), + [anon_sym_switch] = ACTIONS(1697), + [anon_sym_try] = ACTIONS(1697), + [anon_sym_catch] = ACTIONS(1697), + [anon_sym_finally] = ACTIONS(1697), + [anon_sym_int] = ACTIONS(1697), + [anon_sym_boolean] = ACTIONS(1697), + [anon_sym_char] = ACTIONS(1697), + [anon_sym_short] = ACTIONS(1697), + [anon_sym_long] = ACTIONS(1697), + [anon_sym_float] = ACTIONS(1697), + [anon_sym_double] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_public] = ACTIONS(1697), + [anon_sym_protected] = ACTIONS(1697), + [anon_sym_private] = ACTIONS(1697), + [anon_sym_static] = ACTIONS(1697), + [anon_sym_final] = ACTIONS(1697), + [anon_sym_synchronized] = ACTIONS(1697), + [anon_sym_TILDE] = ACTIONS(1699), + [anon_sym_BANG] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1697), + }, + [754] = { + [sym_comment] = STATE(754), + [sym_groovy_doc] = STATE(754), + [ts_builtin_sym_end] = ACTIONS(1507), + [sym_identifier] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_STAR_COLON] = ACTIONS(1507), + [anon_sym_import] = ACTIONS(1509), + [anon_sym_package] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_assert] = ACTIONS(1509), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_ATinterface] = ACTIONS(1507), + [anon_sym_interface] = ACTIONS(1509), + [anon_sym_class] = ACTIONS(1509), + [anon_sym_COMMA] = ACTIONS(1507), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1507), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1509), + [anon_sym_this] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_RPAREN] = ACTIONS(1507), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_else] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1507), + [aux_sym_number_literal_token1] = ACTIONS(1509), + [aux_sym_number_literal_token2] = ACTIONS(1507), + [aux_sym_number_literal_token3] = ACTIONS(1507), + [aux_sym_number_literal_token4] = ACTIONS(1509), + [aux_sym_number_literal_token5] = ACTIONS(1507), + [anon_sym_pipeline] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_SQUOTE] = ACTIONS(1509), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1507), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_try] = ACTIONS(1509), + [anon_sym_int] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_char] = ACTIONS(1509), + [anon_sym_short] = ACTIONS(1509), + [anon_sym_long] = ACTIONS(1509), + [anon_sym_float] = ACTIONS(1509), + [anon_sym_double] = ACTIONS(1509), + [anon_sym_void] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_final] = ACTIONS(1509), + [anon_sym_synchronized] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + }, + [755] = { + [sym_comment] = STATE(755), + [sym_groovy_doc] = STATE(755), + [ts_builtin_sym_end] = ACTIONS(1475), + [sym_identifier] = ACTIONS(1477), + [anon_sym_break] = ACTIONS(1477), + [anon_sym_continue] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_STAR_COLON] = ACTIONS(1475), + [anon_sym_import] = ACTIONS(1477), + [anon_sym_package] = ACTIONS(1477), + [anon_sym_AT] = ACTIONS(1477), + [anon_sym_assert] = ACTIONS(1477), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_SLASH] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), + [anon_sym_ATinterface] = ACTIONS(1475), + [anon_sym_interface] = ACTIONS(1477), + [anon_sym_class] = ACTIONS(1477), + [anon_sym_COMMA] = ACTIONS(1475), + [anon_sym_LBRACE] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1477), + [anon_sym_this] = ACTIONS(1477), + [anon_sym_null] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_do] = ACTIONS(1477), + [anon_sym_while] = ACTIONS(1477), + [anon_sym_for] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_else] = ACTIONS(1477), + [anon_sym_LBRACK] = ACTIONS(1475), + [aux_sym_number_literal_token1] = ACTIONS(1477), + [aux_sym_number_literal_token2] = ACTIONS(1475), + [aux_sym_number_literal_token3] = ACTIONS(1475), + [aux_sym_number_literal_token4] = ACTIONS(1477), + [aux_sym_number_literal_token5] = ACTIONS(1475), + [anon_sym_pipeline] = ACTIONS(1477), + [anon_sym_return] = ACTIONS(1477), + [anon_sym_SQUOTE] = ACTIONS(1477), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1475), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1475), + [anon_sym_switch] = ACTIONS(1477), + [anon_sym_try] = ACTIONS(1477), + [anon_sym_int] = ACTIONS(1477), + [anon_sym_boolean] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_short] = ACTIONS(1477), + [anon_sym_long] = ACTIONS(1477), + [anon_sym_float] = ACTIONS(1477), + [anon_sym_double] = ACTIONS(1477), + [anon_sym_void] = ACTIONS(1477), + [anon_sym_public] = ACTIONS(1477), + [anon_sym_protected] = ACTIONS(1477), + [anon_sym_private] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1477), + [anon_sym_final] = ACTIONS(1477), + [anon_sym_synchronized] = ACTIONS(1477), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_new] = ACTIONS(1477), + }, + [756] = { + [sym_comment] = STATE(756), + [sym_groovy_doc] = STATE(756), + [ts_builtin_sym_end] = ACTIONS(1499), + [sym_identifier] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1501), + [anon_sym_STAR_COLON] = ACTIONS(1499), + [anon_sym_import] = ACTIONS(1501), + [anon_sym_package] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(1501), + [anon_sym_assert] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [anon_sym_ATinterface] = ACTIONS(1499), + [anon_sym_interface] = ACTIONS(1501), + [anon_sym_class] = ACTIONS(1501), + [anon_sym_COMMA] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1501), + [anon_sym_this] = ACTIONS(1501), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1499), + [anon_sym_do] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_else] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1499), + [aux_sym_number_literal_token1] = ACTIONS(1501), + [aux_sym_number_literal_token2] = ACTIONS(1499), + [aux_sym_number_literal_token3] = ACTIONS(1499), + [aux_sym_number_literal_token4] = ACTIONS(1501), + [aux_sym_number_literal_token5] = ACTIONS(1499), + [anon_sym_pipeline] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_SQUOTE] = ACTIONS(1501), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1501), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1499), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1499), + [anon_sym_switch] = ACTIONS(1501), + [anon_sym_try] = ACTIONS(1501), + [anon_sym_int] = ACTIONS(1501), + [anon_sym_boolean] = ACTIONS(1501), + [anon_sym_char] = ACTIONS(1501), + [anon_sym_short] = ACTIONS(1501), + [anon_sym_long] = ACTIONS(1501), + [anon_sym_float] = ACTIONS(1501), + [anon_sym_double] = ACTIONS(1501), + [anon_sym_void] = ACTIONS(1501), + [anon_sym_public] = ACTIONS(1501), + [anon_sym_protected] = ACTIONS(1501), + [anon_sym_private] = ACTIONS(1501), + [anon_sym_static] = ACTIONS(1501), + [anon_sym_final] = ACTIONS(1501), + [anon_sym_synchronized] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(1499), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_new] = ACTIONS(1501), + }, + [757] = { + [sym_comment] = STATE(757), + [sym_groovy_doc] = STATE(757), + [ts_builtin_sym_end] = ACTIONS(1539), + [sym_identifier] = ACTIONS(1541), + [anon_sym_break] = ACTIONS(1541), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_STAR_COLON] = ACTIONS(1539), + [anon_sym_import] = ACTIONS(1541), + [anon_sym_package] = ACTIONS(1541), + [anon_sym_AT] = ACTIONS(1541), + [anon_sym_assert] = ACTIONS(1541), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_SLASH] = ACTIONS(1541), + [anon_sym_PLUS] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_true] = ACTIONS(1541), + [anon_sym_false] = ACTIONS(1541), + [anon_sym_ATinterface] = ACTIONS(1539), + [anon_sym_interface] = ACTIONS(1541), + [anon_sym_class] = ACTIONS(1541), + [anon_sym_COMMA] = ACTIONS(1539), + [anon_sym_LBRACE] = ACTIONS(1539), + [anon_sym_RBRACE] = ACTIONS(1539), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1541), + [anon_sym_this] = ACTIONS(1541), + [anon_sym_null] = ACTIONS(1541), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_RPAREN] = ACTIONS(1539), + [anon_sym_do] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1541), + [anon_sym_if] = ACTIONS(1541), + [anon_sym_else] = ACTIONS(1541), + [anon_sym_LBRACK] = ACTIONS(1539), + [aux_sym_number_literal_token1] = ACTIONS(1541), + [aux_sym_number_literal_token2] = ACTIONS(1539), + [aux_sym_number_literal_token3] = ACTIONS(1539), + [aux_sym_number_literal_token4] = ACTIONS(1541), + [aux_sym_number_literal_token5] = ACTIONS(1539), + [anon_sym_pipeline] = ACTIONS(1541), + [anon_sym_return] = ACTIONS(1541), + [anon_sym_SQUOTE] = ACTIONS(1541), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(1541), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1539), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1539), + [anon_sym_switch] = ACTIONS(1541), + [anon_sym_try] = ACTIONS(1541), + [anon_sym_int] = ACTIONS(1541), + [anon_sym_boolean] = ACTIONS(1541), + [anon_sym_char] = ACTIONS(1541), + [anon_sym_short] = ACTIONS(1541), + [anon_sym_long] = ACTIONS(1541), + [anon_sym_float] = ACTIONS(1541), + [anon_sym_double] = ACTIONS(1541), + [anon_sym_void] = ACTIONS(1541), + [anon_sym_public] = ACTIONS(1541), + [anon_sym_protected] = ACTIONS(1541), + [anon_sym_private] = ACTIONS(1541), + [anon_sym_static] = ACTIONS(1541), + [anon_sym_final] = ACTIONS(1541), + [anon_sym_synchronized] = ACTIONS(1541), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + }, + [758] = { + [sym_comment] = STATE(758), + [sym_groovy_doc] = STATE(758), + [aux_sym__juxt_argument_list_repeat1] = STATE(758), + [sym_identifier] = ACTIONS(375), + [anon_sym_break] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(375), + [anon_sym_STAR_COLON] = ACTIONS(377), + [anon_sym_import] = ACTIONS(375), + [anon_sym_package] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(375), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_PLUS_PLUS] = ACTIONS(377), + [anon_sym_DASH_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_ATinterface] = ACTIONS(377), + [anon_sym_interface] = ACTIONS(375), + [anon_sym_class] = ACTIONS(375), + [anon_sym_COMMA] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_RBRACE] = ACTIONS(377), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(375), + [anon_sym_this] = ACTIONS(375), + [anon_sym_null] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_do] = ACTIONS(375), + [anon_sym_while] = ACTIONS(375), + [anon_sym_for] = ACTIONS(375), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(377), + [aux_sym_number_literal_token1] = ACTIONS(375), + [aux_sym_number_literal_token2] = ACTIONS(377), + [aux_sym_number_literal_token3] = ACTIONS(377), + [aux_sym_number_literal_token4] = ACTIONS(375), + [aux_sym_number_literal_token5] = ACTIONS(377), + [anon_sym_return] = ACTIONS(375), + [anon_sym_SQUOTE] = ACTIONS(375), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_DOLLAR_SLASH] = ACTIONS(377), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_try] = ACTIONS(375), + [anon_sym_catch] = ACTIONS(375), + [anon_sym_finally] = ACTIONS(375), + [anon_sym_int] = ACTIONS(375), + [anon_sym_boolean] = ACTIONS(375), + [anon_sym_char] = ACTIONS(375), + [anon_sym_short] = ACTIONS(375), + [anon_sym_long] = ACTIONS(375), + [anon_sym_float] = ACTIONS(375), + [anon_sym_double] = ACTIONS(375), + [anon_sym_void] = ACTIONS(375), + [anon_sym_public] = ACTIONS(375), + [anon_sym_protected] = ACTIONS(375), + [anon_sym_private] = ACTIONS(375), + [anon_sym_static] = ACTIONS(375), + [anon_sym_final] = ACTIONS(375), + [anon_sym_synchronized] = ACTIONS(375), + [anon_sym_TILDE] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_new] = ACTIONS(375), + }, + [759] = { + [sym_comment] = STATE(759), + [sym_groovy_doc] = STATE(759), + [ts_builtin_sym_end] = ACTIONS(1543), + [sym_identifier] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_STAR_COLON] = ACTIONS(1543), + [anon_sym_import] = ACTIONS(1545), + [anon_sym_package] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1545), + [anon_sym_assert] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1543), + [anon_sym_DASH_DASH] = ACTIONS(1543), + [anon_sym_SLASH] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [anon_sym_ATinterface] = ACTIONS(1543), + [anon_sym_interface] = ACTIONS(1545), + [anon_sym_class] = ACTIONS(1545), + [anon_sym_COMMA] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_RPAREN] = ACTIONS(1543), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_else] = ACTIONS(1545), + [anon_sym_LBRACK] = ACTIONS(1543), + [aux_sym_number_literal_token1] = ACTIONS(1545), + [aux_sym_number_literal_token2] = ACTIONS(1543), + [aux_sym_number_literal_token3] = ACTIONS(1543), + [aux_sym_number_literal_token4] = ACTIONS(1545), + [aux_sym_number_literal_token5] = ACTIONS(1543), + [anon_sym_pipeline] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_SQUOTE] = ACTIONS(1545), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1545), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1543), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1543), + [anon_sym_switch] = ACTIONS(1545), + [anon_sym_try] = ACTIONS(1545), + [anon_sym_int] = ACTIONS(1545), + [anon_sym_boolean] = ACTIONS(1545), + [anon_sym_char] = ACTIONS(1545), + [anon_sym_short] = ACTIONS(1545), + [anon_sym_long] = ACTIONS(1545), + [anon_sym_float] = ACTIONS(1545), + [anon_sym_double] = ACTIONS(1545), + [anon_sym_void] = ACTIONS(1545), + [anon_sym_public] = ACTIONS(1545), + [anon_sym_protected] = ACTIONS(1545), + [anon_sym_private] = ACTIONS(1545), + [anon_sym_static] = ACTIONS(1545), + [anon_sym_final] = ACTIONS(1545), + [anon_sym_synchronized] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_new] = ACTIONS(1545), + }, + [760] = { + [sym_comment] = STATE(760), + [sym_groovy_doc] = STATE(760), + [ts_builtin_sym_end] = ACTIONS(1591), + [sym_identifier] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_STAR] = ACTIONS(1593), + [anon_sym_STAR_COLON] = ACTIONS(1591), + [anon_sym_import] = ACTIONS(1593), + [anon_sym_package] = ACTIONS(1593), + [anon_sym_AT] = ACTIONS(1593), + [anon_sym_assert] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [anon_sym_ATinterface] = ACTIONS(1591), + [anon_sym_interface] = ACTIONS(1593), + [anon_sym_class] = ACTIONS(1593), + [anon_sym_COMMA] = ACTIONS(1591), + [anon_sym_LBRACE] = ACTIONS(1591), + [anon_sym_RBRACE] = ACTIONS(1591), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1593), + [anon_sym_this] = ACTIONS(1593), + [anon_sym_null] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_RPAREN] = ACTIONS(1591), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_else] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1591), + [aux_sym_number_literal_token1] = ACTIONS(1593), + [aux_sym_number_literal_token2] = ACTIONS(1591), + [aux_sym_number_literal_token3] = ACTIONS(1591), + [aux_sym_number_literal_token4] = ACTIONS(1593), + [aux_sym_number_literal_token5] = ACTIONS(1591), + [anon_sym_pipeline] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1591), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1591), + [anon_sym_switch] = ACTIONS(1593), + [anon_sym_try] = ACTIONS(1593), + [anon_sym_int] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_char] = ACTIONS(1593), + [anon_sym_short] = ACTIONS(1593), + [anon_sym_long] = ACTIONS(1593), + [anon_sym_float] = ACTIONS(1593), + [anon_sym_double] = ACTIONS(1593), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_final] = ACTIONS(1593), + [anon_sym_synchronized] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + }, + [761] = { + [sym_comment] = STATE(761), + [sym_groovy_doc] = STATE(761), + [sym_parameter_list] = STATE(651), + [sym_identifier] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1706), + [anon_sym_STAR_COLON] = ACTIONS(1708), + [anon_sym_import] = ACTIONS(1706), + [anon_sym_package] = ACTIONS(1706), + [anon_sym_AT] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_EQ] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1708), + [anon_sym_DASH_DASH] = ACTIONS(1708), + [anon_sym_SLASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_true] = ACTIONS(1706), + [anon_sym_false] = ACTIONS(1706), + [anon_sym_ATinterface] = ACTIONS(1708), + [anon_sym_interface] = ACTIONS(1706), + [anon_sym_class] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(1708), + [anon_sym_RBRACE] = ACTIONS(1708), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1706), + [anon_sym_null] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_do] = ACTIONS(1706), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_else] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1708), + [aux_sym_number_literal_token1] = ACTIONS(1706), + [aux_sym_number_literal_token2] = ACTIONS(1708), + [aux_sym_number_literal_token3] = ACTIONS(1708), + [aux_sym_number_literal_token4] = ACTIONS(1706), + [aux_sym_number_literal_token5] = ACTIONS(1708), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_SQUOTE] = ACTIONS(1706), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1706), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1708), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_try] = ACTIONS(1706), + [anon_sym_catch] = ACTIONS(1706), + [anon_sym_finally] = ACTIONS(1706), + [anon_sym_int] = ACTIONS(1706), + [anon_sym_boolean] = ACTIONS(1706), + [anon_sym_char] = ACTIONS(1706), + [anon_sym_short] = ACTIONS(1706), + [anon_sym_long] = ACTIONS(1706), + [anon_sym_float] = ACTIONS(1706), + [anon_sym_double] = ACTIONS(1706), + [anon_sym_void] = ACTIONS(1706), + [anon_sym_public] = ACTIONS(1706), + [anon_sym_protected] = ACTIONS(1706), + [anon_sym_private] = ACTIONS(1706), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_final] = ACTIONS(1706), + [anon_sym_synchronized] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1708), + [anon_sym_BANG] = ACTIONS(1708), + [anon_sym_new] = ACTIONS(1706), + }, + [762] = { + [sym_comment] = STATE(762), + [sym_groovy_doc] = STATE(762), + [aux_sym__juxt_argument_list_repeat1] = STATE(748), + [sym_identifier] = ACTIONS(287), + [anon_sym_break] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(287), + [anon_sym_STAR_COLON] = ACTIONS(289), + [anon_sym_import] = ACTIONS(287), + [anon_sym_package] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_assert] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(289), + [anon_sym_DASH_DASH] = ACTIONS(289), + [anon_sym_SLASH] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_true] = ACTIONS(287), + [anon_sym_false] = ACTIONS(287), + [anon_sym_ATinterface] = ACTIONS(289), + [anon_sym_interface] = ACTIONS(287), + [anon_sym_class] = ACTIONS(287), + [anon_sym_COMMA] = ACTIONS(325), + [anon_sym_LBRACE] = ACTIONS(289), + [anon_sym_RBRACE] = ACTIONS(289), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(287), + [anon_sym_this] = ACTIONS(287), + [anon_sym_null] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(289), + [anon_sym_do] = ACTIONS(287), + [anon_sym_while] = ACTIONS(287), + [anon_sym_for] = ACTIONS(287), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(289), + [aux_sym_number_literal_token1] = ACTIONS(287), + [aux_sym_number_literal_token2] = ACTIONS(289), + [aux_sym_number_literal_token3] = ACTIONS(289), + [aux_sym_number_literal_token4] = ACTIONS(287), + [aux_sym_number_literal_token5] = ACTIONS(289), + [anon_sym_return] = ACTIONS(287), + [anon_sym_SQUOTE] = ACTIONS(287), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR_SLASH] = ACTIONS(289), + [anon_sym_switch] = ACTIONS(287), + [anon_sym_try] = ACTIONS(287), + [anon_sym_catch] = ACTIONS(287), + [anon_sym_finally] = ACTIONS(287), + [anon_sym_int] = ACTIONS(287), + [anon_sym_boolean] = ACTIONS(287), + [anon_sym_char] = ACTIONS(287), + [anon_sym_short] = ACTIONS(287), + [anon_sym_long] = ACTIONS(287), + [anon_sym_float] = ACTIONS(287), + [anon_sym_double] = ACTIONS(287), + [anon_sym_void] = ACTIONS(287), + [anon_sym_public] = ACTIONS(287), + [anon_sym_protected] = ACTIONS(287), + [anon_sym_private] = ACTIONS(287), + [anon_sym_static] = ACTIONS(287), + [anon_sym_final] = ACTIONS(287), + [anon_sym_synchronized] = ACTIONS(287), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_new] = ACTIONS(287), + }, + [763] = { + [sym_comment] = STATE(763), + [sym_groovy_doc] = STATE(763), + [sym_parameter_list] = STATE(651), + [sym_identifier] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_continue] = ACTIONS(1712), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_STAR] = ACTIONS(1712), + [anon_sym_STAR_COLON] = ACTIONS(1714), + [anon_sym_import] = ACTIONS(1712), + [anon_sym_package] = ACTIONS(1712), + [anon_sym_AT] = ACTIONS(1712), + [anon_sym_assert] = ACTIONS(1712), + [anon_sym_EQ] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1714), + [anon_sym_DASH_DASH] = ACTIONS(1714), + [anon_sym_SLASH] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_true] = ACTIONS(1712), + [anon_sym_false] = ACTIONS(1712), + [anon_sym_ATinterface] = ACTIONS(1714), + [anon_sym_interface] = ACTIONS(1712), + [anon_sym_class] = ACTIONS(1712), + [anon_sym_LBRACE] = ACTIONS(1714), + [anon_sym_RBRACE] = ACTIONS(1714), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1712), + [anon_sym_this] = ACTIONS(1712), + [anon_sym_null] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_do] = ACTIONS(1712), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_else] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1714), + [aux_sym_number_literal_token1] = ACTIONS(1712), + [aux_sym_number_literal_token2] = ACTIONS(1714), + [aux_sym_number_literal_token3] = ACTIONS(1714), + [aux_sym_number_literal_token4] = ACTIONS(1712), + [aux_sym_number_literal_token5] = ACTIONS(1714), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_SQUOTE] = ACTIONS(1712), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1714), + [anon_sym_DQUOTE] = ACTIONS(1712), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1714), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1714), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_try] = ACTIONS(1712), + [anon_sym_catch] = ACTIONS(1712), + [anon_sym_finally] = ACTIONS(1712), + [anon_sym_int] = ACTIONS(1712), + [anon_sym_boolean] = ACTIONS(1712), + [anon_sym_char] = ACTIONS(1712), + [anon_sym_short] = ACTIONS(1712), + [anon_sym_long] = ACTIONS(1712), + [anon_sym_float] = ACTIONS(1712), + [anon_sym_double] = ACTIONS(1712), + [anon_sym_void] = ACTIONS(1712), + [anon_sym_public] = ACTIONS(1712), + [anon_sym_protected] = ACTIONS(1712), + [anon_sym_private] = ACTIONS(1712), + [anon_sym_static] = ACTIONS(1712), + [anon_sym_final] = ACTIONS(1712), + [anon_sym_synchronized] = ACTIONS(1712), + [anon_sym_TILDE] = ACTIONS(1714), + [anon_sym_BANG] = ACTIONS(1714), + [anon_sym_new] = ACTIONS(1712), + }, + [764] = { + [sym_comment] = STATE(764), + [sym_groovy_doc] = STATE(764), + [ts_builtin_sym_end] = ACTIONS(1603), + [sym_identifier] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_STAR_COLON] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(1605), + [anon_sym_package] = ACTIONS(1605), + [anon_sym_AT] = ACTIONS(1605), + [anon_sym_assert] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1605), + [anon_sym_false] = ACTIONS(1605), + [anon_sym_ATinterface] = ACTIONS(1603), + [anon_sym_interface] = ACTIONS(1605), + [anon_sym_class] = ACTIONS(1605), + [anon_sym_COMMA] = ACTIONS(1603), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_RBRACE] = ACTIONS(1603), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1605), + [anon_sym_this] = ACTIONS(1605), + [anon_sym_null] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_RPAREN] = ACTIONS(1603), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_else] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(1603), + [aux_sym_number_literal_token1] = ACTIONS(1605), + [aux_sym_number_literal_token2] = ACTIONS(1603), + [aux_sym_number_literal_token3] = ACTIONS(1603), + [aux_sym_number_literal_token4] = ACTIONS(1605), + [aux_sym_number_literal_token5] = ACTIONS(1603), + [anon_sym_pipeline] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1605), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1603), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1603), + [anon_sym_switch] = ACTIONS(1605), + [anon_sym_try] = ACTIONS(1605), + [anon_sym_int] = ACTIONS(1605), + [anon_sym_boolean] = ACTIONS(1605), + [anon_sym_char] = ACTIONS(1605), + [anon_sym_short] = ACTIONS(1605), + [anon_sym_long] = ACTIONS(1605), + [anon_sym_float] = ACTIONS(1605), + [anon_sym_double] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_public] = ACTIONS(1605), + [anon_sym_protected] = ACTIONS(1605), + [anon_sym_private] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1605), + [anon_sym_final] = ACTIONS(1605), + [anon_sym_synchronized] = ACTIONS(1605), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1605), + }, + [765] = { + [sym_comment] = STATE(765), + [sym_groovy_doc] = STATE(765), + [ts_builtin_sym_end] = ACTIONS(377), + [sym_identifier] = ACTIONS(375), + [anon_sym_break] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(375), + [anon_sym_STAR_COLON] = ACTIONS(377), + [anon_sym_import] = ACTIONS(375), + [anon_sym_package] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(375), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_PLUS_PLUS] = ACTIONS(377), + [anon_sym_DASH_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_ATinterface] = ACTIONS(377), + [anon_sym_interface] = ACTIONS(375), + [anon_sym_class] = ACTIONS(375), + [anon_sym_COMMA] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_RBRACE] = ACTIONS(377), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(375), + [anon_sym_this] = ACTIONS(375), + [anon_sym_null] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_RPAREN] = ACTIONS(377), + [anon_sym_do] = ACTIONS(375), + [anon_sym_while] = ACTIONS(375), + [anon_sym_for] = ACTIONS(375), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(377), + [aux_sym_number_literal_token1] = ACTIONS(375), + [aux_sym_number_literal_token2] = ACTIONS(377), + [aux_sym_number_literal_token3] = ACTIONS(377), + [aux_sym_number_literal_token4] = ACTIONS(375), + [aux_sym_number_literal_token5] = ACTIONS(377), + [anon_sym_pipeline] = ACTIONS(375), + [anon_sym_return] = ACTIONS(375), + [anon_sym_SQUOTE] = ACTIONS(375), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_DOLLAR_SLASH] = ACTIONS(377), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_try] = ACTIONS(375), + [anon_sym_int] = ACTIONS(375), + [anon_sym_boolean] = ACTIONS(375), + [anon_sym_char] = ACTIONS(375), + [anon_sym_short] = ACTIONS(375), + [anon_sym_long] = ACTIONS(375), + [anon_sym_float] = ACTIONS(375), + [anon_sym_double] = ACTIONS(375), + [anon_sym_void] = ACTIONS(375), + [anon_sym_public] = ACTIONS(375), + [anon_sym_protected] = ACTIONS(375), + [anon_sym_private] = ACTIONS(375), + [anon_sym_static] = ACTIONS(375), + [anon_sym_final] = ACTIONS(375), + [anon_sym_synchronized] = ACTIONS(375), + [anon_sym_TILDE] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_new] = ACTIONS(375), + }, + [766] = { + [sym_comment] = STATE(766), + [sym_groovy_doc] = STATE(766), + [sym_parameter_list] = STATE(648), + [sym_identifier] = ACTIONS(1718), + [anon_sym_break] = ACTIONS(1718), + [anon_sym_continue] = ACTIONS(1718), + [anon_sym_SEMI] = ACTIONS(1720), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_STAR_COLON] = ACTIONS(1720), + [anon_sym_import] = ACTIONS(1718), + [anon_sym_package] = ACTIONS(1718), + [anon_sym_AT] = ACTIONS(1718), + [anon_sym_assert] = ACTIONS(1718), + [anon_sym_EQ] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_true] = ACTIONS(1718), + [anon_sym_false] = ACTIONS(1718), + [anon_sym_ATinterface] = ACTIONS(1720), + [anon_sym_interface] = ACTIONS(1718), + [anon_sym_class] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1720), + [anon_sym_RBRACE] = ACTIONS(1720), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1718), + [anon_sym_this] = ACTIONS(1718), + [anon_sym_null] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_do] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1718), + [anon_sym_for] = ACTIONS(1718), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_else] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1720), + [aux_sym_number_literal_token1] = ACTIONS(1718), + [aux_sym_number_literal_token2] = ACTIONS(1720), + [aux_sym_number_literal_token3] = ACTIONS(1720), + [aux_sym_number_literal_token4] = ACTIONS(1718), + [aux_sym_number_literal_token5] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(1718), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1720), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1720), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1720), + [anon_sym_switch] = ACTIONS(1718), + [anon_sym_try] = ACTIONS(1718), + [anon_sym_catch] = ACTIONS(1718), + [anon_sym_finally] = ACTIONS(1718), + [anon_sym_int] = ACTIONS(1718), + [anon_sym_boolean] = ACTIONS(1718), + [anon_sym_char] = ACTIONS(1718), + [anon_sym_short] = ACTIONS(1718), + [anon_sym_long] = ACTIONS(1718), + [anon_sym_float] = ACTIONS(1718), + [anon_sym_double] = ACTIONS(1718), + [anon_sym_void] = ACTIONS(1718), + [anon_sym_public] = ACTIONS(1718), + [anon_sym_protected] = ACTIONS(1718), + [anon_sym_private] = ACTIONS(1718), + [anon_sym_static] = ACTIONS(1718), + [anon_sym_final] = ACTIONS(1718), + [anon_sym_synchronized] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1720), + [anon_sym_BANG] = ACTIONS(1720), + [anon_sym_new] = ACTIONS(1718), + }, + [767] = { + [sym_comment] = STATE(767), + [sym_groovy_doc] = STATE(767), + [ts_builtin_sym_end] = ACTIONS(95), + [sym_identifier] = ACTIONS(89), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_STAR_COLON] = ACTIONS(95), + [anon_sym_import] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [anon_sym_ATinterface] = ACTIONS(95), + [anon_sym_interface] = ACTIONS(89), + [anon_sym_class] = ACTIONS(89), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_null] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_RPAREN] = ACTIONS(95), + [anon_sym_do] = ACTIONS(89), + [anon_sym_while] = ACTIONS(89), + [anon_sym_for] = ACTIONS(89), + [anon_sym_if] = ACTIONS(89), + [anon_sym_else] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(95), + [aux_sym_number_literal_token1] = ACTIONS(89), + [aux_sym_number_literal_token2] = ACTIONS(95), + [aux_sym_number_literal_token3] = ACTIONS(95), + [aux_sym_number_literal_token4] = ACTIONS(89), + [aux_sym_number_literal_token5] = ACTIONS(95), + [anon_sym_pipeline] = ACTIONS(89), + [anon_sym_return] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SLASH] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(89), + [anon_sym_try] = ACTIONS(89), + [anon_sym_int] = ACTIONS(89), + [anon_sym_boolean] = ACTIONS(89), + [anon_sym_char] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_float] = ACTIONS(89), + [anon_sym_double] = ACTIONS(89), + [anon_sym_void] = ACTIONS(89), + [anon_sym_public] = ACTIONS(89), + [anon_sym_protected] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_static] = ACTIONS(89), + [anon_sym_final] = ACTIONS(89), + [anon_sym_synchronized] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_new] = ACTIONS(89), + }, + [768] = { + [sym_comment] = STATE(768), + [sym_groovy_doc] = STATE(768), + [ts_builtin_sym_end] = ACTIONS(1587), + [sym_identifier] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_STAR_COLON] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1589), + [anon_sym_package] = ACTIONS(1589), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_assert] = ACTIONS(1589), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_SLASH] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_ATinterface] = ACTIONS(1587), + [anon_sym_interface] = ACTIONS(1589), + [anon_sym_class] = ACTIONS(1589), + [anon_sym_COMMA] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_RPAREN] = ACTIONS(1587), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1587), + [aux_sym_number_literal_token1] = ACTIONS(1589), + [aux_sym_number_literal_token2] = ACTIONS(1587), + [aux_sym_number_literal_token3] = ACTIONS(1587), + [aux_sym_number_literal_token4] = ACTIONS(1589), + [aux_sym_number_literal_token5] = ACTIONS(1587), + [anon_sym_pipeline] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1587), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1587), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_int] = ACTIONS(1589), + [anon_sym_boolean] = ACTIONS(1589), + [anon_sym_char] = ACTIONS(1589), + [anon_sym_short] = ACTIONS(1589), + [anon_sym_long] = ACTIONS(1589), + [anon_sym_float] = ACTIONS(1589), + [anon_sym_double] = ACTIONS(1589), + [anon_sym_void] = ACTIONS(1589), + [anon_sym_public] = ACTIONS(1589), + [anon_sym_protected] = ACTIONS(1589), + [anon_sym_private] = ACTIONS(1589), + [anon_sym_static] = ACTIONS(1589), + [anon_sym_final] = ACTIONS(1589), + [anon_sym_synchronized] = ACTIONS(1589), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_new] = ACTIONS(1589), + }, + [769] = { + [sym_comment] = STATE(769), + [sym_groovy_doc] = STATE(769), + [ts_builtin_sym_end] = ACTIONS(1571), + [sym_identifier] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_STAR_COLON] = ACTIONS(1571), + [anon_sym_import] = ACTIONS(1573), + [anon_sym_package] = ACTIONS(1573), + [anon_sym_AT] = ACTIONS(1573), + [anon_sym_assert] = ACTIONS(1573), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1573), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [anon_sym_ATinterface] = ACTIONS(1571), + [anon_sym_interface] = ACTIONS(1573), + [anon_sym_class] = ACTIONS(1573), + [anon_sym_COMMA] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_RBRACE] = ACTIONS(1571), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1573), + [anon_sym_this] = ACTIONS(1573), + [anon_sym_null] = ACTIONS(1573), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_RPAREN] = ACTIONS(1571), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_else] = ACTIONS(1573), + [anon_sym_LBRACK] = ACTIONS(1571), + [aux_sym_number_literal_token1] = ACTIONS(1573), + [aux_sym_number_literal_token2] = ACTIONS(1571), + [aux_sym_number_literal_token3] = ACTIONS(1571), + [aux_sym_number_literal_token4] = ACTIONS(1573), + [aux_sym_number_literal_token5] = ACTIONS(1571), + [anon_sym_pipeline] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1571), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1571), + [anon_sym_switch] = ACTIONS(1573), + [anon_sym_try] = ACTIONS(1573), + [anon_sym_int] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_char] = ACTIONS(1573), + [anon_sym_short] = ACTIONS(1573), + [anon_sym_long] = ACTIONS(1573), + [anon_sym_float] = ACTIONS(1573), + [anon_sym_double] = ACTIONS(1573), + [anon_sym_void] = ACTIONS(1573), + [anon_sym_public] = ACTIONS(1573), + [anon_sym_protected] = ACTIONS(1573), + [anon_sym_private] = ACTIONS(1573), + [anon_sym_static] = ACTIONS(1573), + [anon_sym_final] = ACTIONS(1573), + [anon_sym_synchronized] = ACTIONS(1573), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_new] = ACTIONS(1573), + }, + [770] = { + [sym_comment] = STATE(770), + [sym_groovy_doc] = STATE(770), + [ts_builtin_sym_end] = ACTIONS(1523), + [sym_identifier] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_STAR_COLON] = ACTIONS(1523), + [anon_sym_import] = ACTIONS(1525), + [anon_sym_package] = ACTIONS(1525), + [anon_sym_AT] = ACTIONS(1525), + [anon_sym_assert] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_SLASH] = ACTIONS(1525), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [anon_sym_ATinterface] = ACTIONS(1523), + [anon_sym_interface] = ACTIONS(1525), + [anon_sym_class] = ACTIONS(1525), + [anon_sym_COMMA] = ACTIONS(1523), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_RBRACE] = ACTIONS(1523), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1525), + [anon_sym_null] = ACTIONS(1525), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_RPAREN] = ACTIONS(1523), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_else] = ACTIONS(1525), + [anon_sym_LBRACK] = ACTIONS(1523), + [aux_sym_number_literal_token1] = ACTIONS(1525), + [aux_sym_number_literal_token2] = ACTIONS(1523), + [aux_sym_number_literal_token3] = ACTIONS(1523), + [aux_sym_number_literal_token4] = ACTIONS(1525), + [aux_sym_number_literal_token5] = ACTIONS(1523), + [anon_sym_pipeline] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_SQUOTE] = ACTIONS(1525), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1525), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1523), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1523), + [anon_sym_switch] = ACTIONS(1525), + [anon_sym_try] = ACTIONS(1525), + [anon_sym_int] = ACTIONS(1525), + [anon_sym_boolean] = ACTIONS(1525), + [anon_sym_char] = ACTIONS(1525), + [anon_sym_short] = ACTIONS(1525), + [anon_sym_long] = ACTIONS(1525), + [anon_sym_float] = ACTIONS(1525), + [anon_sym_double] = ACTIONS(1525), + [anon_sym_void] = ACTIONS(1525), + [anon_sym_public] = ACTIONS(1525), + [anon_sym_protected] = ACTIONS(1525), + [anon_sym_private] = ACTIONS(1525), + [anon_sym_static] = ACTIONS(1525), + [anon_sym_final] = ACTIONS(1525), + [anon_sym_synchronized] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1523), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_new] = ACTIONS(1525), + }, + [771] = { + [sym_comment] = STATE(771), + [sym_groovy_doc] = STATE(771), + [ts_builtin_sym_end] = ACTIONS(1519), + [sym_identifier] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_STAR] = ACTIONS(1521), + [anon_sym_STAR_COLON] = ACTIONS(1519), + [anon_sym_import] = ACTIONS(1521), + [anon_sym_package] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_assert] = ACTIONS(1521), + [anon_sym_PLUS_PLUS] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_SLASH] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_ATinterface] = ACTIONS(1519), + [anon_sym_interface] = ACTIONS(1521), + [anon_sym_class] = ACTIONS(1521), + [anon_sym_COMMA] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1519), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1521), + [anon_sym_this] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(1519), + [anon_sym_do] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_else] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1519), + [aux_sym_number_literal_token1] = ACTIONS(1521), + [aux_sym_number_literal_token2] = ACTIONS(1519), + [aux_sym_number_literal_token3] = ACTIONS(1519), + [aux_sym_number_literal_token4] = ACTIONS(1521), + [aux_sym_number_literal_token5] = ACTIONS(1519), + [anon_sym_pipeline] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_SQUOTE] = ACTIONS(1521), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1521), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1519), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1519), + [anon_sym_switch] = ACTIONS(1521), + [anon_sym_try] = ACTIONS(1521), + [anon_sym_int] = ACTIONS(1521), + [anon_sym_boolean] = ACTIONS(1521), + [anon_sym_char] = ACTIONS(1521), + [anon_sym_short] = ACTIONS(1521), + [anon_sym_long] = ACTIONS(1521), + [anon_sym_float] = ACTIONS(1521), + [anon_sym_double] = ACTIONS(1521), + [anon_sym_void] = ACTIONS(1521), + [anon_sym_public] = ACTIONS(1521), + [anon_sym_protected] = ACTIONS(1521), + [anon_sym_private] = ACTIONS(1521), + [anon_sym_static] = ACTIONS(1521), + [anon_sym_final] = ACTIONS(1521), + [anon_sym_synchronized] = ACTIONS(1521), + [anon_sym_TILDE] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_new] = ACTIONS(1521), + }, + [772] = { + [sym_comment] = STATE(772), + [sym_groovy_doc] = STATE(772), + [ts_builtin_sym_end] = ACTIONS(1479), + [sym_identifier] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1481), + [anon_sym_continue] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_STAR_COLON] = ACTIONS(1479), + [anon_sym_import] = ACTIONS(1481), + [anon_sym_package] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_assert] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1479), + [anon_sym_DASH_DASH] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [anon_sym_ATinterface] = ACTIONS(1479), + [anon_sym_interface] = ACTIONS(1481), + [anon_sym_class] = ACTIONS(1481), + [anon_sym_COMMA] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1479), + [anon_sym_RBRACE] = ACTIONS(1479), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1481), + [anon_sym_this] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_RPAREN] = ACTIONS(1479), + [anon_sym_do] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1481), + [anon_sym_for] = ACTIONS(1481), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_else] = ACTIONS(1481), + [anon_sym_LBRACK] = ACTIONS(1479), + [aux_sym_number_literal_token1] = ACTIONS(1481), + [aux_sym_number_literal_token2] = ACTIONS(1479), + [aux_sym_number_literal_token3] = ACTIONS(1479), + [aux_sym_number_literal_token4] = ACTIONS(1481), + [aux_sym_number_literal_token5] = ACTIONS(1479), + [anon_sym_pipeline] = ACTIONS(1481), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_SQUOTE] = ACTIONS(1481), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1481), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1479), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1479), + [anon_sym_switch] = ACTIONS(1481), + [anon_sym_try] = ACTIONS(1481), + [anon_sym_int] = ACTIONS(1481), + [anon_sym_boolean] = ACTIONS(1481), + [anon_sym_char] = ACTIONS(1481), + [anon_sym_short] = ACTIONS(1481), + [anon_sym_long] = ACTIONS(1481), + [anon_sym_float] = ACTIONS(1481), + [anon_sym_double] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_public] = ACTIONS(1481), + [anon_sym_protected] = ACTIONS(1481), + [anon_sym_private] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1481), + [anon_sym_final] = ACTIONS(1481), + [anon_sym_synchronized] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_new] = ACTIONS(1481), + }, + [773] = { + [sym_comment] = STATE(773), + [sym_groovy_doc] = STATE(773), + [ts_builtin_sym_end] = ACTIONS(1483), + [sym_identifier] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(1485), + [anon_sym_STAR_COLON] = ACTIONS(1483), + [anon_sym_import] = ACTIONS(1485), + [anon_sym_package] = ACTIONS(1485), + [anon_sym_AT] = ACTIONS(1485), + [anon_sym_assert] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [anon_sym_ATinterface] = ACTIONS(1483), + [anon_sym_interface] = ACTIONS(1485), + [anon_sym_class] = ACTIONS(1485), + [anon_sym_COMMA] = ACTIONS(1483), + [anon_sym_LBRACE] = ACTIONS(1483), + [anon_sym_RBRACE] = ACTIONS(1483), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1485), + [anon_sym_null] = ACTIONS(1485), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_RPAREN] = ACTIONS(1483), + [anon_sym_do] = ACTIONS(1485), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_else] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1483), + [aux_sym_number_literal_token1] = ACTIONS(1485), + [aux_sym_number_literal_token2] = ACTIONS(1483), + [aux_sym_number_literal_token3] = ACTIONS(1483), + [aux_sym_number_literal_token4] = ACTIONS(1485), + [aux_sym_number_literal_token5] = ACTIONS(1483), + [anon_sym_pipeline] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_SQUOTE] = ACTIONS(1485), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1485), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1483), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1483), + [anon_sym_switch] = ACTIONS(1485), + [anon_sym_try] = ACTIONS(1485), + [anon_sym_int] = ACTIONS(1485), + [anon_sym_boolean] = ACTIONS(1485), + [anon_sym_char] = ACTIONS(1485), + [anon_sym_short] = ACTIONS(1485), + [anon_sym_long] = ACTIONS(1485), + [anon_sym_float] = ACTIONS(1485), + [anon_sym_double] = ACTIONS(1485), + [anon_sym_void] = ACTIONS(1485), + [anon_sym_public] = ACTIONS(1485), + [anon_sym_protected] = ACTIONS(1485), + [anon_sym_private] = ACTIONS(1485), + [anon_sym_static] = ACTIONS(1485), + [anon_sym_final] = ACTIONS(1485), + [anon_sym_synchronized] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1483), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_new] = ACTIONS(1485), + }, + [774] = { + [sym_comment] = STATE(774), + [sym_groovy_doc] = STATE(774), + [ts_builtin_sym_end] = ACTIONS(1487), + [sym_identifier] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_STAR] = ACTIONS(1489), + [anon_sym_STAR_COLON] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(1489), + [anon_sym_package] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(1489), + [anon_sym_assert] = ACTIONS(1489), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_ATinterface] = ACTIONS(1487), + [anon_sym_interface] = ACTIONS(1489), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_COMMA] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1487), + [anon_sym_RBRACE] = ACTIONS(1487), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1489), + [anon_sym_this] = ACTIONS(1489), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_RPAREN] = ACTIONS(1487), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_else] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1487), + [aux_sym_number_literal_token1] = ACTIONS(1489), + [aux_sym_number_literal_token2] = ACTIONS(1487), + [aux_sym_number_literal_token3] = ACTIONS(1487), + [aux_sym_number_literal_token4] = ACTIONS(1489), + [aux_sym_number_literal_token5] = ACTIONS(1487), + [anon_sym_pipeline] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_SQUOTE] = ACTIONS(1489), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1489), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1487), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1487), + [anon_sym_switch] = ACTIONS(1489), + [anon_sym_try] = ACTIONS(1489), + [anon_sym_int] = ACTIONS(1489), + [anon_sym_boolean] = ACTIONS(1489), + [anon_sym_char] = ACTIONS(1489), + [anon_sym_short] = ACTIONS(1489), + [anon_sym_long] = ACTIONS(1489), + [anon_sym_float] = ACTIONS(1489), + [anon_sym_double] = ACTIONS(1489), + [anon_sym_void] = ACTIONS(1489), + [anon_sym_public] = ACTIONS(1489), + [anon_sym_protected] = ACTIONS(1489), + [anon_sym_private] = ACTIONS(1489), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_final] = ACTIONS(1489), + [anon_sym_synchronized] = ACTIONS(1489), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_new] = ACTIONS(1489), + }, + [775] = { + [sym_comment] = STATE(775), + [sym_groovy_doc] = STATE(775), + [ts_builtin_sym_end] = ACTIONS(1527), + [sym_identifier] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_STAR_COLON] = ACTIONS(1527), + [anon_sym_import] = ACTIONS(1529), + [anon_sym_package] = ACTIONS(1529), + [anon_sym_AT] = ACTIONS(1529), + [anon_sym_assert] = ACTIONS(1529), + [anon_sym_PLUS_PLUS] = ACTIONS(1527), + [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_SLASH] = ACTIONS(1529), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_ATinterface] = ACTIONS(1527), + [anon_sym_interface] = ACTIONS(1529), + [anon_sym_class] = ACTIONS(1529), + [anon_sym_COMMA] = ACTIONS(1527), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1527), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1529), + [anon_sym_this] = ACTIONS(1529), + [anon_sym_null] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(1527), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_else] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1527), + [aux_sym_number_literal_token1] = ACTIONS(1529), + [aux_sym_number_literal_token2] = ACTIONS(1527), + [aux_sym_number_literal_token3] = ACTIONS(1527), + [aux_sym_number_literal_token4] = ACTIONS(1529), + [aux_sym_number_literal_token5] = ACTIONS(1527), + [anon_sym_pipeline] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1529), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1527), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1527), + [anon_sym_switch] = ACTIONS(1529), + [anon_sym_try] = ACTIONS(1529), + [anon_sym_int] = ACTIONS(1529), + [anon_sym_boolean] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_short] = ACTIONS(1529), + [anon_sym_long] = ACTIONS(1529), + [anon_sym_float] = ACTIONS(1529), + [anon_sym_double] = ACTIONS(1529), + [anon_sym_void] = ACTIONS(1529), + [anon_sym_public] = ACTIONS(1529), + [anon_sym_protected] = ACTIONS(1529), + [anon_sym_private] = ACTIONS(1529), + [anon_sym_static] = ACTIONS(1529), + [anon_sym_final] = ACTIONS(1529), + [anon_sym_synchronized] = ACTIONS(1529), + [anon_sym_TILDE] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_new] = ACTIONS(1529), + }, + [776] = { + [sym_comment] = STATE(776), + [sym_groovy_doc] = STATE(776), + [ts_builtin_sym_end] = ACTIONS(95), + [sym_identifier] = ACTIONS(89), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_STAR_COLON] = ACTIONS(95), + [anon_sym_import] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [anon_sym_ATinterface] = ACTIONS(95), + [anon_sym_interface] = ACTIONS(89), + [anon_sym_class] = ACTIONS(89), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_null] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_RPAREN] = ACTIONS(95), + [anon_sym_do] = ACTIONS(89), + [anon_sym_while] = ACTIONS(89), + [anon_sym_for] = ACTIONS(89), + [anon_sym_if] = ACTIONS(89), + [anon_sym_else] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(95), + [aux_sym_number_literal_token1] = ACTIONS(89), + [aux_sym_number_literal_token2] = ACTIONS(95), + [aux_sym_number_literal_token3] = ACTIONS(95), + [aux_sym_number_literal_token4] = ACTIONS(89), + [aux_sym_number_literal_token5] = ACTIONS(95), + [anon_sym_pipeline] = ACTIONS(89), + [anon_sym_return] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SLASH] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(89), + [anon_sym_try] = ACTIONS(89), + [anon_sym_int] = ACTIONS(89), + [anon_sym_boolean] = ACTIONS(89), + [anon_sym_char] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_float] = ACTIONS(89), + [anon_sym_double] = ACTIONS(89), + [anon_sym_void] = ACTIONS(89), + [anon_sym_public] = ACTIONS(89), + [anon_sym_protected] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_static] = ACTIONS(89), + [anon_sym_final] = ACTIONS(89), + [anon_sym_synchronized] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_new] = ACTIONS(89), + }, + [777] = { + [sym_comment] = STATE(777), + [sym_groovy_doc] = STATE(777), + [ts_builtin_sym_end] = ACTIONS(95), + [sym_identifier] = ACTIONS(89), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_STAR_COLON] = ACTIONS(95), + [anon_sym_import] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [anon_sym_ATinterface] = ACTIONS(95), + [anon_sym_interface] = ACTIONS(89), + [anon_sym_class] = ACTIONS(89), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_null] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_RPAREN] = ACTIONS(95), + [anon_sym_do] = ACTIONS(89), + [anon_sym_while] = ACTIONS(89), + [anon_sym_for] = ACTIONS(89), + [anon_sym_if] = ACTIONS(89), + [anon_sym_else] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(95), + [aux_sym_number_literal_token1] = ACTIONS(89), + [aux_sym_number_literal_token2] = ACTIONS(95), + [aux_sym_number_literal_token3] = ACTIONS(95), + [aux_sym_number_literal_token4] = ACTIONS(89), + [aux_sym_number_literal_token5] = ACTIONS(95), + [anon_sym_pipeline] = ACTIONS(89), + [anon_sym_return] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SLASH] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(89), + [anon_sym_try] = ACTIONS(89), + [anon_sym_int] = ACTIONS(89), + [anon_sym_boolean] = ACTIONS(89), + [anon_sym_char] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_float] = ACTIONS(89), + [anon_sym_double] = ACTIONS(89), + [anon_sym_void] = ACTIONS(89), + [anon_sym_public] = ACTIONS(89), + [anon_sym_protected] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_static] = ACTIONS(89), + [anon_sym_final] = ACTIONS(89), + [anon_sym_synchronized] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_new] = ACTIONS(89), + }, + [778] = { + [sym_comment] = STATE(778), + [sym_groovy_doc] = STATE(778), + [sym_identifier] = ACTIONS(343), + [anon_sym_break] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_STAR] = ACTIONS(343), + [anon_sym_STAR_COLON] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_import] = ACTIONS(343), + [anon_sym_package] = ACTIONS(343), + [anon_sym_AT] = ACTIONS(343), + [anon_sym_assert] = ACTIONS(343), + [anon_sym_PLUS_PLUS] = ACTIONS(345), + [anon_sym_DASH_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(343), + [anon_sym_DASH] = ACTIONS(343), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_ATinterface] = ACTIONS(345), + [anon_sym_interface] = ACTIONS(343), + [anon_sym_class] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(345), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(343), + [anon_sym_this] = ACTIONS(343), + [anon_sym_null] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_do] = ACTIONS(343), + [anon_sym_while] = ACTIONS(343), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(343), + [anon_sym_else] = ACTIONS(343), + [anon_sym_LBRACK] = ACTIONS(345), + [aux_sym_number_literal_token1] = ACTIONS(343), + [aux_sym_number_literal_token2] = ACTIONS(345), + [aux_sym_number_literal_token3] = ACTIONS(345), + [aux_sym_number_literal_token4] = ACTIONS(343), + [aux_sym_number_literal_token5] = ACTIONS(345), + [anon_sym_return] = ACTIONS(343), + [anon_sym_SQUOTE] = ACTIONS(343), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_SLASH] = ACTIONS(345), + [anon_sym_switch] = ACTIONS(343), + [anon_sym_try] = ACTIONS(343), + [anon_sym_catch] = ACTIONS(343), + [anon_sym_finally] = ACTIONS(343), + [anon_sym_int] = ACTIONS(343), + [anon_sym_boolean] = ACTIONS(343), + [anon_sym_char] = ACTIONS(343), + [anon_sym_short] = ACTIONS(343), + [anon_sym_long] = ACTIONS(343), + [anon_sym_float] = ACTIONS(343), + [anon_sym_double] = ACTIONS(343), + [anon_sym_void] = ACTIONS(343), + [anon_sym_public] = ACTIONS(343), + [anon_sym_protected] = ACTIONS(343), + [anon_sym_private] = ACTIONS(343), + [anon_sym_static] = ACTIONS(343), + [anon_sym_final] = ACTIONS(343), + [anon_sym_synchronized] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(345), + [anon_sym_new] = ACTIONS(343), + }, + [779] = { + [sym_comment] = STATE(779), + [sym_groovy_doc] = STATE(779), + [sym_identifier] = ACTIONS(275), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_STAR] = ACTIONS(275), + [anon_sym_STAR_COLON] = ACTIONS(277), + [anon_sym_DOT] = ACTIONS(277), + [anon_sym_import] = ACTIONS(275), + [anon_sym_package] = ACTIONS(275), + [anon_sym_AT] = ACTIONS(275), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_PLUS_PLUS] = ACTIONS(277), + [anon_sym_DASH_DASH] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_PLUS] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_true] = ACTIONS(275), + [anon_sym_false] = ACTIONS(275), + [anon_sym_ATinterface] = ACTIONS(277), + [anon_sym_interface] = ACTIONS(275), + [anon_sym_class] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(277), + [anon_sym_RBRACE] = ACTIONS(277), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(275), + [anon_sym_this] = ACTIONS(275), + [anon_sym_null] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(277), + [anon_sym_do] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(275), + [anon_sym_else] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [aux_sym_number_literal_token1] = ACTIONS(275), + [aux_sym_number_literal_token2] = ACTIONS(277), + [aux_sym_number_literal_token3] = ACTIONS(277), + [aux_sym_number_literal_token4] = ACTIONS(275), + [aux_sym_number_literal_token5] = ACTIONS(277), + [anon_sym_return] = ACTIONS(275), + [anon_sym_SQUOTE] = ACTIONS(275), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(277), + [anon_sym_DQUOTE] = ACTIONS(275), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(277), + [anon_sym_DOLLAR_SLASH] = ACTIONS(277), + [anon_sym_switch] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_int] = ACTIONS(275), + [anon_sym_boolean] = ACTIONS(275), + [anon_sym_char] = ACTIONS(275), + [anon_sym_short] = ACTIONS(275), + [anon_sym_long] = ACTIONS(275), + [anon_sym_float] = ACTIONS(275), + [anon_sym_double] = ACTIONS(275), + [anon_sym_void] = ACTIONS(275), + [anon_sym_public] = ACTIONS(275), + [anon_sym_protected] = ACTIONS(275), + [anon_sym_private] = ACTIONS(275), + [anon_sym_static] = ACTIONS(275), + [anon_sym_final] = ACTIONS(275), + [anon_sym_synchronized] = ACTIONS(275), + [anon_sym_TILDE] = ACTIONS(277), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_new] = ACTIONS(275), + }, + [780] = { + [sym_comment] = STATE(780), + [sym_groovy_doc] = STATE(780), + [sym_identifier] = ACTIONS(73), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(73), + [anon_sym_STAR_COLON] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(75), + [anon_sym_import] = ACTIONS(73), + [anon_sym_package] = ACTIONS(73), + [anon_sym_AT] = ACTIONS(73), + [anon_sym_assert] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ATinterface] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_class] = ACTIONS(73), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_RBRACE] = ACTIONS(75), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(73), + [anon_sym_this] = ACTIONS(73), + [anon_sym_null] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_do] = ACTIONS(73), + [anon_sym_while] = ACTIONS(73), + [anon_sym_for] = ACTIONS(73), + [anon_sym_if] = ACTIONS(73), + [anon_sym_else] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(75), + [aux_sym_number_literal_token1] = ACTIONS(73), + [aux_sym_number_literal_token2] = ACTIONS(75), + [aux_sym_number_literal_token3] = ACTIONS(75), + [aux_sym_number_literal_token4] = ACTIONS(73), + [aux_sym_number_literal_token5] = ACTIONS(75), + [anon_sym_return] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(75), + [anon_sym_DOLLAR_SLASH] = ACTIONS(75), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_try] = ACTIONS(73), + [anon_sym_catch] = ACTIONS(73), + [anon_sym_finally] = ACTIONS(73), + [anon_sym_int] = ACTIONS(73), + [anon_sym_boolean] = ACTIONS(73), + [anon_sym_char] = ACTIONS(73), + [anon_sym_short] = ACTIONS(73), + [anon_sym_long] = ACTIONS(73), + [anon_sym_float] = ACTIONS(73), + [anon_sym_double] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_public] = ACTIONS(73), + [anon_sym_protected] = ACTIONS(73), + [anon_sym_private] = ACTIONS(73), + [anon_sym_static] = ACTIONS(73), + [anon_sym_final] = ACTIONS(73), + [anon_sym_synchronized] = ACTIONS(73), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_new] = ACTIONS(73), + }, + [781] = { + [sym_comment] = STATE(781), + [sym_groovy_doc] = STATE(781), + [sym_identifier] = ACTIONS(271), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_SEMI] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_COLON] = ACTIONS(273), + [anon_sym_DOT] = ACTIONS(273), + [anon_sym_import] = ACTIONS(271), + [anon_sym_package] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_assert] = ACTIONS(271), + [anon_sym_PLUS_PLUS] = ACTIONS(273), + [anon_sym_DASH_DASH] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_true] = ACTIONS(271), + [anon_sym_false] = ACTIONS(271), + [anon_sym_ATinterface] = ACTIONS(273), + [anon_sym_interface] = ACTIONS(271), + [anon_sym_class] = ACTIONS(271), + [anon_sym_LBRACE] = ACTIONS(273), + [anon_sym_RBRACE] = ACTIONS(273), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(271), + [anon_sym_this] = ACTIONS(271), + [anon_sym_null] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(273), + [anon_sym_do] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [aux_sym_number_literal_token1] = ACTIONS(271), + [aux_sym_number_literal_token2] = ACTIONS(273), + [aux_sym_number_literal_token3] = ACTIONS(273), + [aux_sym_number_literal_token4] = ACTIONS(271), + [aux_sym_number_literal_token5] = ACTIONS(273), + [anon_sym_return] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(273), + [anon_sym_DQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(273), + [anon_sym_DOLLAR_SLASH] = ACTIONS(273), + [anon_sym_switch] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), + [anon_sym_int] = ACTIONS(271), + [anon_sym_boolean] = ACTIONS(271), + [anon_sym_char] = ACTIONS(271), + [anon_sym_short] = ACTIONS(271), + [anon_sym_long] = ACTIONS(271), + [anon_sym_float] = ACTIONS(271), + [anon_sym_double] = ACTIONS(271), + [anon_sym_void] = ACTIONS(271), + [anon_sym_public] = ACTIONS(271), + [anon_sym_protected] = ACTIONS(271), + [anon_sym_private] = ACTIONS(271), + [anon_sym_static] = ACTIONS(271), + [anon_sym_final] = ACTIONS(271), + [anon_sym_synchronized] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(273), + [anon_sym_new] = ACTIONS(271), + }, + [782] = { + [sym_comment] = STATE(782), + [sym_groovy_doc] = STATE(782), + [sym_identifier] = ACTIONS(77), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(77), + [anon_sym_STAR_COLON] = ACTIONS(79), + [anon_sym_DOT] = ACTIONS(79), + [anon_sym_import] = ACTIONS(77), + [anon_sym_package] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_assert] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_class] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_RBRACE] = ACTIONS(79), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(77), + [anon_sym_this] = ACTIONS(77), + [anon_sym_null] = ACTIONS(77), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_do] = ACTIONS(77), + [anon_sym_while] = ACTIONS(77), + [anon_sym_for] = ACTIONS(77), + [anon_sym_if] = ACTIONS(77), + [anon_sym_else] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(79), + [aux_sym_number_literal_token1] = ACTIONS(77), + [aux_sym_number_literal_token2] = ACTIONS(79), + [aux_sym_number_literal_token3] = ACTIONS(79), + [aux_sym_number_literal_token4] = ACTIONS(77), + [aux_sym_number_literal_token5] = ACTIONS(79), + [anon_sym_return] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(77), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR_SLASH] = ACTIONS(79), + [anon_sym_switch] = ACTIONS(77), + [anon_sym_try] = ACTIONS(77), + [anon_sym_catch] = ACTIONS(77), + [anon_sym_finally] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_boolean] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [anon_sym_void] = ACTIONS(77), + [anon_sym_public] = ACTIONS(77), + [anon_sym_protected] = ACTIONS(77), + [anon_sym_private] = ACTIONS(77), + [anon_sym_static] = ACTIONS(77), + [anon_sym_final] = ACTIONS(77), + [anon_sym_synchronized] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_new] = ACTIONS(77), + }, + [783] = { + [sym_comment] = STATE(783), + [sym_groovy_doc] = STATE(783), + [sym_identifier] = ACTIONS(81), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_STAR_COLON] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(83), + [anon_sym_import] = ACTIONS(81), + [anon_sym_package] = ACTIONS(81), + [anon_sym_AT] = ACTIONS(81), + [anon_sym_assert] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_ATinterface] = ACTIONS(83), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_RBRACE] = ACTIONS(83), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(81), + [anon_sym_this] = ACTIONS(81), + [anon_sym_null] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_do] = ACTIONS(81), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(81), + [anon_sym_if] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), + [aux_sym_number_literal_token1] = ACTIONS(81), + [aux_sym_number_literal_token2] = ACTIONS(83), + [aux_sym_number_literal_token3] = ACTIONS(83), + [aux_sym_number_literal_token4] = ACTIONS(81), + [aux_sym_number_literal_token5] = ACTIONS(83), + [anon_sym_return] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_SLASH] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_try] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_finally] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_boolean] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_float] = ACTIONS(81), + [anon_sym_double] = ACTIONS(81), + [anon_sym_void] = ACTIONS(81), + [anon_sym_public] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_static] = ACTIONS(81), + [anon_sym_final] = ACTIONS(81), + [anon_sym_synchronized] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(83), + [anon_sym_new] = ACTIONS(81), + }, + [784] = { + [sym_comment] = STATE(784), + [sym_groovy_doc] = STATE(784), + [ts_builtin_sym_end] = ACTIONS(1639), + [sym_identifier] = ACTIONS(1641), + [anon_sym_break] = ACTIONS(1641), + [anon_sym_continue] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_STAR_COLON] = ACTIONS(1639), + [anon_sym_import] = ACTIONS(1641), + [anon_sym_as] = ACTIONS(1724), + [anon_sym_package] = ACTIONS(1641), + [anon_sym_AT] = ACTIONS(1641), + [anon_sym_assert] = ACTIONS(1641), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_SLASH] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_true] = ACTIONS(1641), + [anon_sym_false] = ACTIONS(1641), + [anon_sym_ATinterface] = ACTIONS(1639), + [anon_sym_interface] = ACTIONS(1641), + [anon_sym_class] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_RBRACE] = ACTIONS(1639), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1641), + [anon_sym_this] = ACTIONS(1641), + [anon_sym_null] = ACTIONS(1641), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_do] = ACTIONS(1641), + [anon_sym_while] = ACTIONS(1641), + [anon_sym_for] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1641), + [anon_sym_else] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(1639), + [aux_sym_number_literal_token1] = ACTIONS(1641), + [aux_sym_number_literal_token2] = ACTIONS(1639), + [aux_sym_number_literal_token3] = ACTIONS(1639), + [aux_sym_number_literal_token4] = ACTIONS(1641), + [aux_sym_number_literal_token5] = ACTIONS(1639), + [anon_sym_pipeline] = ACTIONS(1641), + [anon_sym_return] = ACTIONS(1641), + [anon_sym_SQUOTE] = ACTIONS(1641), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1641), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1639), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1639), + [anon_sym_switch] = ACTIONS(1641), + [anon_sym_try] = ACTIONS(1641), + [anon_sym_int] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_char] = ACTIONS(1641), + [anon_sym_short] = ACTIONS(1641), + [anon_sym_long] = ACTIONS(1641), + [anon_sym_float] = ACTIONS(1641), + [anon_sym_double] = ACTIONS(1641), + [anon_sym_void] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_final] = ACTIONS(1641), + [anon_sym_synchronized] = ACTIONS(1641), + [anon_sym_TILDE] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_new] = ACTIONS(1641), + }, + [785] = { + [sym_comment] = STATE(785), + [sym_groovy_doc] = STATE(785), + [sym_identifier] = ACTIONS(85), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_STAR_COLON] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(87), + [anon_sym_import] = ACTIONS(85), + [anon_sym_package] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_assert] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(85), + [anon_sym_true] = ACTIONS(85), + [anon_sym_false] = ACTIONS(85), + [anon_sym_ATinterface] = ACTIONS(87), + [anon_sym_interface] = ACTIONS(85), + [anon_sym_class] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_RBRACE] = ACTIONS(87), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(85), + [anon_sym_this] = ACTIONS(85), + [anon_sym_null] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_do] = ACTIONS(85), + [anon_sym_while] = ACTIONS(85), + [anon_sym_for] = ACTIONS(85), + [anon_sym_if] = ACTIONS(85), + [anon_sym_else] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [aux_sym_number_literal_token1] = ACTIONS(85), + [aux_sym_number_literal_token2] = ACTIONS(87), + [aux_sym_number_literal_token3] = ACTIONS(87), + [aux_sym_number_literal_token4] = ACTIONS(85), + [aux_sym_number_literal_token5] = ACTIONS(87), + [anon_sym_return] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_DOLLAR_SLASH] = ACTIONS(87), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_try] = ACTIONS(85), + [anon_sym_catch] = ACTIONS(85), + [anon_sym_finally] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_boolean] = ACTIONS(85), + [anon_sym_char] = ACTIONS(85), + [anon_sym_short] = ACTIONS(85), + [anon_sym_long] = ACTIONS(85), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [anon_sym_void] = ACTIONS(85), + [anon_sym_public] = ACTIONS(85), + [anon_sym_protected] = ACTIONS(85), + [anon_sym_private] = ACTIONS(85), + [anon_sym_static] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_synchronized] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_new] = ACTIONS(85), + }, + [786] = { + [sym_comment] = STATE(786), + [sym_groovy_doc] = STATE(786), + [sym_identifier] = ACTIONS(69), + [anon_sym_break] = ACTIONS(69), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_SEMI] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(69), + [anon_sym_STAR_COLON] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(71), + [anon_sym_import] = ACTIONS(69), + [anon_sym_package] = ACTIONS(69), + [anon_sym_AT] = ACTIONS(69), + [anon_sym_assert] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(69), + [anon_sym_class] = ACTIONS(69), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(71), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(69), + [anon_sym_this] = ACTIONS(69), + [anon_sym_null] = ACTIONS(69), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_do] = ACTIONS(69), + [anon_sym_while] = ACTIONS(69), + [anon_sym_for] = ACTIONS(69), + [anon_sym_if] = ACTIONS(69), + [anon_sym_else] = ACTIONS(69), + [anon_sym_LBRACK] = ACTIONS(71), + [aux_sym_number_literal_token1] = ACTIONS(69), + [aux_sym_number_literal_token2] = ACTIONS(71), + [aux_sym_number_literal_token3] = ACTIONS(71), + [aux_sym_number_literal_token4] = ACTIONS(69), + [aux_sym_number_literal_token5] = ACTIONS(71), + [anon_sym_return] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_SLASH] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_try] = ACTIONS(69), + [anon_sym_catch] = ACTIONS(69), + [anon_sym_finally] = ACTIONS(69), + [anon_sym_int] = ACTIONS(69), + [anon_sym_boolean] = ACTIONS(69), + [anon_sym_char] = ACTIONS(69), + [anon_sym_short] = ACTIONS(69), + [anon_sym_long] = ACTIONS(69), + [anon_sym_float] = ACTIONS(69), + [anon_sym_double] = ACTIONS(69), + [anon_sym_void] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_protected] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_final] = ACTIONS(69), + [anon_sym_synchronized] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_new] = ACTIONS(69), + }, + [787] = { + [sym_comment] = STATE(787), + [sym_groovy_doc] = STATE(787), + [sym_identifier] = ACTIONS(335), + [anon_sym_break] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(335), + [anon_sym_SEMI] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(335), + [anon_sym_STAR_COLON] = ACTIONS(337), + [anon_sym_DOT] = ACTIONS(337), + [anon_sym_import] = ACTIONS(335), + [anon_sym_package] = ACTIONS(335), + [anon_sym_AT] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(337), + [anon_sym_DASH_DASH] = ACTIONS(337), + [anon_sym_SLASH] = ACTIONS(335), + [anon_sym_PLUS] = ACTIONS(335), + [anon_sym_DASH] = ACTIONS(335), + [anon_sym_true] = ACTIONS(335), + [anon_sym_false] = ACTIONS(335), + [anon_sym_ATinterface] = ACTIONS(337), + [anon_sym_interface] = ACTIONS(335), + [anon_sym_class] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(337), + [anon_sym_RBRACE] = ACTIONS(337), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(335), + [anon_sym_this] = ACTIONS(335), + [anon_sym_null] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_do] = ACTIONS(335), + [anon_sym_while] = ACTIONS(335), + [anon_sym_for] = ACTIONS(335), + [anon_sym_if] = ACTIONS(335), + [anon_sym_else] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [aux_sym_number_literal_token1] = ACTIONS(335), + [aux_sym_number_literal_token2] = ACTIONS(337), + [aux_sym_number_literal_token3] = ACTIONS(337), + [aux_sym_number_literal_token4] = ACTIONS(335), + [aux_sym_number_literal_token5] = ACTIONS(337), + [anon_sym_return] = ACTIONS(335), + [anon_sym_SQUOTE] = ACTIONS(335), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(337), + [anon_sym_DQUOTE] = ACTIONS(335), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(337), + [anon_sym_DOLLAR_SLASH] = ACTIONS(337), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_try] = ACTIONS(335), + [anon_sym_catch] = ACTIONS(335), + [anon_sym_finally] = ACTIONS(335), + [anon_sym_int] = ACTIONS(335), + [anon_sym_boolean] = ACTIONS(335), + [anon_sym_char] = ACTIONS(335), + [anon_sym_short] = ACTIONS(335), + [anon_sym_long] = ACTIONS(335), + [anon_sym_float] = ACTIONS(335), + [anon_sym_double] = ACTIONS(335), + [anon_sym_void] = ACTIONS(335), + [anon_sym_public] = ACTIONS(335), + [anon_sym_protected] = ACTIONS(335), + [anon_sym_private] = ACTIONS(335), + [anon_sym_static] = ACTIONS(335), + [anon_sym_final] = ACTIONS(335), + [anon_sym_synchronized] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(337), + [anon_sym_BANG] = ACTIONS(337), + [anon_sym_new] = ACTIONS(335), + }, + [788] = { + [sym_comment] = STATE(788), + [sym_groovy_doc] = STATE(788), + [sym_identifier] = ACTIONS(339), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(341), + [anon_sym_STAR] = ACTIONS(339), + [anon_sym_STAR_COLON] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(341), + [anon_sym_import] = ACTIONS(339), + [anon_sym_package] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(339), + [anon_sym_assert] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_SLASH] = ACTIONS(339), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_true] = ACTIONS(339), + [anon_sym_false] = ACTIONS(339), + [anon_sym_ATinterface] = ACTIONS(341), + [anon_sym_interface] = ACTIONS(339), + [anon_sym_class] = ACTIONS(339), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(341), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(339), + [anon_sym_this] = ACTIONS(339), + [anon_sym_null] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_do] = ACTIONS(339), + [anon_sym_while] = ACTIONS(339), + [anon_sym_for] = ACTIONS(339), + [anon_sym_if] = ACTIONS(339), + [anon_sym_else] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(341), + [aux_sym_number_literal_token1] = ACTIONS(339), + [aux_sym_number_literal_token2] = ACTIONS(341), + [aux_sym_number_literal_token3] = ACTIONS(341), + [aux_sym_number_literal_token4] = ACTIONS(339), + [aux_sym_number_literal_token5] = ACTIONS(341), + [anon_sym_return] = ACTIONS(339), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(341), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(341), + [anon_sym_DOLLAR_SLASH] = ACTIONS(341), + [anon_sym_switch] = ACTIONS(339), + [anon_sym_try] = ACTIONS(339), + [anon_sym_catch] = ACTIONS(339), + [anon_sym_finally] = ACTIONS(339), + [anon_sym_int] = ACTIONS(339), + [anon_sym_boolean] = ACTIONS(339), + [anon_sym_char] = ACTIONS(339), + [anon_sym_short] = ACTIONS(339), + [anon_sym_long] = ACTIONS(339), + [anon_sym_float] = ACTIONS(339), + [anon_sym_double] = ACTIONS(339), + [anon_sym_void] = ACTIONS(339), + [anon_sym_public] = ACTIONS(339), + [anon_sym_protected] = ACTIONS(339), + [anon_sym_private] = ACTIONS(339), + [anon_sym_static] = ACTIONS(339), + [anon_sym_final] = ACTIONS(339), + [anon_sym_synchronized] = ACTIONS(339), + [anon_sym_TILDE] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_new] = ACTIONS(339), + }, + [789] = { + [sym_comment] = STATE(789), + [sym_groovy_doc] = STATE(789), + [sym_identifier] = ACTIONS(283), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(283), + [anon_sym_STAR_COLON] = ACTIONS(285), + [anon_sym_DOT] = ACTIONS(283), + [anon_sym_import] = ACTIONS(283), + [anon_sym_DOT_STAR] = ACTIONS(285), + [anon_sym_as] = ACTIONS(283), + [anon_sym_package] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [anon_sym_assert] = ACTIONS(283), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(283), + [anon_sym_DASH] = ACTIONS(283), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_ATinterface] = ACTIONS(285), + [anon_sym_interface] = ACTIONS(283), + [anon_sym_class] = ACTIONS(283), + [anon_sym_LBRACE] = ACTIONS(285), + [anon_sym_RBRACE] = ACTIONS(285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(283), + [anon_sym_this] = ACTIONS(283), + [anon_sym_null] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_do] = ACTIONS(283), + [anon_sym_while] = ACTIONS(283), + [anon_sym_for] = ACTIONS(283), + [anon_sym_if] = ACTIONS(283), + [anon_sym_else] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [aux_sym_number_literal_token1] = ACTIONS(283), + [aux_sym_number_literal_token2] = ACTIONS(285), + [aux_sym_number_literal_token3] = ACTIONS(285), + [aux_sym_number_literal_token4] = ACTIONS(283), + [aux_sym_number_literal_token5] = ACTIONS(285), + [anon_sym_return] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(283), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_SLASH] = ACTIONS(285), + [anon_sym_switch] = ACTIONS(283), + [anon_sym_try] = ACTIONS(283), + [anon_sym_int] = ACTIONS(283), + [anon_sym_boolean] = ACTIONS(283), + [anon_sym_char] = ACTIONS(283), + [anon_sym_short] = ACTIONS(283), + [anon_sym_long] = ACTIONS(283), + [anon_sym_float] = ACTIONS(283), + [anon_sym_double] = ACTIONS(283), + [anon_sym_void] = ACTIONS(283), + [anon_sym_public] = ACTIONS(283), + [anon_sym_protected] = ACTIONS(283), + [anon_sym_private] = ACTIONS(283), + [anon_sym_static] = ACTIONS(283), + [anon_sym_final] = ACTIONS(283), + [anon_sym_synchronized] = ACTIONS(283), + [anon_sym_TILDE] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_new] = ACTIONS(283), + }, + [790] = { + [sym_comment] = STATE(790), + [sym_groovy_doc] = STATE(790), + [ts_builtin_sym_end] = ACTIONS(95), + [sym_identifier] = ACTIONS(89), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_STAR_COLON] = ACTIONS(95), + [anon_sym_import] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [anon_sym_ATinterface] = ACTIONS(95), + [anon_sym_interface] = ACTIONS(89), + [anon_sym_class] = ACTIONS(89), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_null] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_RPAREN] = ACTIONS(95), + [anon_sym_do] = ACTIONS(89), + [anon_sym_while] = ACTIONS(89), + [anon_sym_for] = ACTIONS(89), + [anon_sym_if] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(95), + [aux_sym_number_literal_token1] = ACTIONS(89), + [aux_sym_number_literal_token2] = ACTIONS(95), + [aux_sym_number_literal_token3] = ACTIONS(95), + [aux_sym_number_literal_token4] = ACTIONS(89), + [aux_sym_number_literal_token5] = ACTIONS(95), + [anon_sym_pipeline] = ACTIONS(89), + [anon_sym_return] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SLASH] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(89), + [anon_sym_try] = ACTIONS(89), + [anon_sym_int] = ACTIONS(89), + [anon_sym_boolean] = ACTIONS(89), + [anon_sym_char] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_float] = ACTIONS(89), + [anon_sym_double] = ACTIONS(89), + [anon_sym_void] = ACTIONS(89), + [anon_sym_public] = ACTIONS(89), + [anon_sym_protected] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_static] = ACTIONS(89), + [anon_sym_final] = ACTIONS(89), + [anon_sym_synchronized] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_new] = ACTIONS(89), + }, + [791] = { + [sym_comment] = STATE(791), + [sym_groovy_doc] = STATE(791), + [sym_parameter_list] = STATE(817), + [sym_identifier] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1706), + [anon_sym_STAR_COLON] = ACTIONS(1708), + [anon_sym_import] = ACTIONS(1706), + [anon_sym_package] = ACTIONS(1706), + [anon_sym_AT] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_EQ] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1708), + [anon_sym_DASH_DASH] = ACTIONS(1708), + [anon_sym_SLASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_true] = ACTIONS(1706), + [anon_sym_false] = ACTIONS(1706), + [anon_sym_ATinterface] = ACTIONS(1708), + [anon_sym_interface] = ACTIONS(1706), + [anon_sym_class] = ACTIONS(1706), + [anon_sym_COMMA] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1708), + [anon_sym_DASH_GT] = ACTIONS(1728), + [anon_sym_RBRACE] = ACTIONS(1708), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1706), + [anon_sym_null] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_do] = ACTIONS(1706), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1708), + [aux_sym_number_literal_token1] = ACTIONS(1706), + [aux_sym_number_literal_token2] = ACTIONS(1708), + [aux_sym_number_literal_token3] = ACTIONS(1708), + [aux_sym_number_literal_token4] = ACTIONS(1706), + [aux_sym_number_literal_token5] = ACTIONS(1708), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_SQUOTE] = ACTIONS(1706), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1706), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1708), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_try] = ACTIONS(1706), + [anon_sym_int] = ACTIONS(1706), + [anon_sym_boolean] = ACTIONS(1706), + [anon_sym_char] = ACTIONS(1706), + [anon_sym_short] = ACTIONS(1706), + [anon_sym_long] = ACTIONS(1706), + [anon_sym_float] = ACTIONS(1706), + [anon_sym_double] = ACTIONS(1706), + [anon_sym_void] = ACTIONS(1706), + [anon_sym_public] = ACTIONS(1706), + [anon_sym_protected] = ACTIONS(1706), + [anon_sym_private] = ACTIONS(1706), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_final] = ACTIONS(1706), + [anon_sym_synchronized] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1708), + [anon_sym_BANG] = ACTIONS(1708), + [anon_sym_new] = ACTIONS(1706), + }, + [792] = { + [sym_comment] = STATE(792), + [sym_groovy_doc] = STATE(792), + [sym_identifier] = ACTIONS(279), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(281), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_STAR_COLON] = ACTIONS(281), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_import] = ACTIONS(279), + [anon_sym_package] = ACTIONS(279), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(279), + [anon_sym_PLUS_PLUS] = ACTIONS(281), + [anon_sym_DASH_DASH] = ACTIONS(281), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_ATinterface] = ACTIONS(281), + [anon_sym_interface] = ACTIONS(279), + [anon_sym_class] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(281), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(279), + [anon_sym_this] = ACTIONS(279), + [anon_sym_null] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(281), + [anon_sym_do] = ACTIONS(279), + [anon_sym_while] = ACTIONS(279), + [anon_sym_for] = ACTIONS(279), + [anon_sym_if] = ACTIONS(279), + [anon_sym_else] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(281), + [aux_sym_number_literal_token1] = ACTIONS(279), + [aux_sym_number_literal_token2] = ACTIONS(281), + [aux_sym_number_literal_token3] = ACTIONS(281), + [aux_sym_number_literal_token4] = ACTIONS(279), + [aux_sym_number_literal_token5] = ACTIONS(281), + [anon_sym_return] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(279), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(281), + [anon_sym_DQUOTE] = ACTIONS(279), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [anon_sym_DOLLAR_SLASH] = ACTIONS(281), + [anon_sym_switch] = ACTIONS(279), + [anon_sym_try] = ACTIONS(279), + [anon_sym_catch] = ACTIONS(279), + [anon_sym_finally] = ACTIONS(279), + [anon_sym_int] = ACTIONS(279), + [anon_sym_boolean] = ACTIONS(279), + [anon_sym_char] = ACTIONS(279), + [anon_sym_short] = ACTIONS(279), + [anon_sym_long] = ACTIONS(279), + [anon_sym_float] = ACTIONS(279), + [anon_sym_double] = ACTIONS(279), + [anon_sym_void] = ACTIONS(279), + [anon_sym_public] = ACTIONS(279), + [anon_sym_protected] = ACTIONS(279), + [anon_sym_private] = ACTIONS(279), + [anon_sym_static] = ACTIONS(279), + [anon_sym_final] = ACTIONS(279), + [anon_sym_synchronized] = ACTIONS(279), + [anon_sym_TILDE] = ACTIONS(281), + [anon_sym_BANG] = ACTIONS(281), + [anon_sym_new] = ACTIONS(279), + }, + [793] = { + [sym_comment] = STATE(793), + [sym_groovy_doc] = STATE(793), + [ts_builtin_sym_end] = ACTIONS(1645), + [sym_identifier] = ACTIONS(1647), + [anon_sym_break] = ACTIONS(1647), + [anon_sym_continue] = ACTIONS(1647), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_STAR_COLON] = ACTIONS(1645), + [anon_sym_import] = ACTIONS(1647), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_package] = ACTIONS(1647), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_assert] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_SLASH] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_true] = ACTIONS(1647), + [anon_sym_false] = ACTIONS(1647), + [anon_sym_ATinterface] = ACTIONS(1645), + [anon_sym_interface] = ACTIONS(1647), + [anon_sym_class] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1645), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1647), + [anon_sym_this] = ACTIONS(1647), + [anon_sym_null] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1645), + [anon_sym_do] = ACTIONS(1647), + [anon_sym_while] = ACTIONS(1647), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_else] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(1645), + [aux_sym_number_literal_token1] = ACTIONS(1647), + [aux_sym_number_literal_token2] = ACTIONS(1645), + [aux_sym_number_literal_token3] = ACTIONS(1645), + [aux_sym_number_literal_token4] = ACTIONS(1647), + [aux_sym_number_literal_token5] = ACTIONS(1645), + [anon_sym_pipeline] = ACTIONS(1647), + [anon_sym_return] = ACTIONS(1647), + [anon_sym_SQUOTE] = ACTIONS(1647), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1647), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1645), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1645), + [anon_sym_switch] = ACTIONS(1647), + [anon_sym_try] = ACTIONS(1647), + [anon_sym_int] = ACTIONS(1647), + [anon_sym_boolean] = ACTIONS(1647), + [anon_sym_char] = ACTIONS(1647), + [anon_sym_short] = ACTIONS(1647), + [anon_sym_long] = ACTIONS(1647), + [anon_sym_float] = ACTIONS(1647), + [anon_sym_double] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_public] = ACTIONS(1647), + [anon_sym_protected] = ACTIONS(1647), + [anon_sym_private] = ACTIONS(1647), + [anon_sym_static] = ACTIONS(1647), + [anon_sym_final] = ACTIONS(1647), + [anon_sym_synchronized] = ACTIONS(1647), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_new] = ACTIONS(1647), + }, + [794] = { + [sym_comment] = STATE(794), + [sym_groovy_doc] = STATE(794), + [aux_sym__juxt_argument_list_repeat1] = STATE(801), + [sym_identifier] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1687), + [anon_sym_continue] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_STAR] = ACTIONS(1687), + [anon_sym_STAR_COLON] = ACTIONS(1689), + [anon_sym_import] = ACTIONS(1687), + [anon_sym_package] = ACTIONS(1687), + [anon_sym_AT] = ACTIONS(1687), + [anon_sym_assert] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1689), + [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_SLASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_true] = ACTIONS(1687), + [anon_sym_false] = ACTIONS(1687), + [anon_sym_ATinterface] = ACTIONS(1689), + [anon_sym_interface] = ACTIONS(1687), + [anon_sym_class] = ACTIONS(1687), + [anon_sym_COMMA] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(1689), + [anon_sym_RBRACE] = ACTIONS(1689), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1687), + [anon_sym_this] = ACTIONS(1687), + [anon_sym_null] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_do] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_for] = ACTIONS(1687), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_else] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1689), + [aux_sym_number_literal_token1] = ACTIONS(1687), + [aux_sym_number_literal_token2] = ACTIONS(1689), + [aux_sym_number_literal_token3] = ACTIONS(1689), + [aux_sym_number_literal_token4] = ACTIONS(1687), + [aux_sym_number_literal_token5] = ACTIONS(1689), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_SQUOTE] = ACTIONS(1687), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1689), + [anon_sym_DQUOTE] = ACTIONS(1687), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1689), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1689), + [anon_sym_switch] = ACTIONS(1687), + [anon_sym_try] = ACTIONS(1687), + [anon_sym_int] = ACTIONS(1687), + [anon_sym_boolean] = ACTIONS(1687), + [anon_sym_char] = ACTIONS(1687), + [anon_sym_short] = ACTIONS(1687), + [anon_sym_long] = ACTIONS(1687), + [anon_sym_float] = ACTIONS(1687), + [anon_sym_double] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_public] = ACTIONS(1687), + [anon_sym_protected] = ACTIONS(1687), + [anon_sym_private] = ACTIONS(1687), + [anon_sym_static] = ACTIONS(1687), + [anon_sym_final] = ACTIONS(1687), + [anon_sym_synchronized] = ACTIONS(1687), + [anon_sym_TILDE] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1687), + }, + [795] = { + [sym_comment] = STATE(795), + [sym_groovy_doc] = STATE(795), + [sym_parameter_list] = STATE(817), + [sym_identifier] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1706), + [anon_sym_STAR_COLON] = ACTIONS(1708), + [anon_sym_import] = ACTIONS(1706), + [anon_sym_package] = ACTIONS(1706), + [anon_sym_AT] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1708), + [anon_sym_DASH_DASH] = ACTIONS(1708), + [anon_sym_SLASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_true] = ACTIONS(1706), + [anon_sym_false] = ACTIONS(1706), + [anon_sym_ATinterface] = ACTIONS(1708), + [anon_sym_interface] = ACTIONS(1706), + [anon_sym_class] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(1708), + [anon_sym_RBRACE] = ACTIONS(1708), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1706), + [anon_sym_null] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_do] = ACTIONS(1706), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_else] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1708), + [aux_sym_number_literal_token1] = ACTIONS(1706), + [aux_sym_number_literal_token2] = ACTIONS(1708), + [aux_sym_number_literal_token3] = ACTIONS(1708), + [aux_sym_number_literal_token4] = ACTIONS(1706), + [aux_sym_number_literal_token5] = ACTIONS(1708), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_SQUOTE] = ACTIONS(1706), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1706), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1708), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_try] = ACTIONS(1706), + [anon_sym_int] = ACTIONS(1706), + [anon_sym_boolean] = ACTIONS(1706), + [anon_sym_char] = ACTIONS(1706), + [anon_sym_short] = ACTIONS(1706), + [anon_sym_long] = ACTIONS(1706), + [anon_sym_float] = ACTIONS(1706), + [anon_sym_double] = ACTIONS(1706), + [anon_sym_void] = ACTIONS(1706), + [anon_sym_public] = ACTIONS(1706), + [anon_sym_protected] = ACTIONS(1706), + [anon_sym_private] = ACTIONS(1706), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_final] = ACTIONS(1706), + [anon_sym_synchronized] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1708), + [anon_sym_BANG] = ACTIONS(1708), + [anon_sym_new] = ACTIONS(1706), + }, + [796] = { + [sym_comment] = STATE(796), + [sym_groovy_doc] = STATE(796), + [sym_parameter_list] = STATE(817), + [sym_identifier] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_continue] = ACTIONS(1712), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_STAR] = ACTIONS(1712), + [anon_sym_STAR_COLON] = ACTIONS(1714), + [anon_sym_import] = ACTIONS(1712), + [anon_sym_package] = ACTIONS(1712), + [anon_sym_AT] = ACTIONS(1712), + [anon_sym_assert] = ACTIONS(1712), + [anon_sym_EQ] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1714), + [anon_sym_DASH_DASH] = ACTIONS(1714), + [anon_sym_SLASH] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_true] = ACTIONS(1712), + [anon_sym_false] = ACTIONS(1712), + [anon_sym_ATinterface] = ACTIONS(1714), + [anon_sym_interface] = ACTIONS(1712), + [anon_sym_class] = ACTIONS(1712), + [anon_sym_LBRACE] = ACTIONS(1714), + [anon_sym_RBRACE] = ACTIONS(1714), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1712), + [anon_sym_this] = ACTIONS(1712), + [anon_sym_null] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_do] = ACTIONS(1712), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_else] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1714), + [aux_sym_number_literal_token1] = ACTIONS(1712), + [aux_sym_number_literal_token2] = ACTIONS(1714), + [aux_sym_number_literal_token3] = ACTIONS(1714), + [aux_sym_number_literal_token4] = ACTIONS(1712), + [aux_sym_number_literal_token5] = ACTIONS(1714), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_SQUOTE] = ACTIONS(1712), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1714), + [anon_sym_DQUOTE] = ACTIONS(1712), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1714), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1714), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_try] = ACTIONS(1712), + [anon_sym_int] = ACTIONS(1712), + [anon_sym_boolean] = ACTIONS(1712), + [anon_sym_char] = ACTIONS(1712), + [anon_sym_short] = ACTIONS(1712), + [anon_sym_long] = ACTIONS(1712), + [anon_sym_float] = ACTIONS(1712), + [anon_sym_double] = ACTIONS(1712), + [anon_sym_void] = ACTIONS(1712), + [anon_sym_public] = ACTIONS(1712), + [anon_sym_protected] = ACTIONS(1712), + [anon_sym_private] = ACTIONS(1712), + [anon_sym_static] = ACTIONS(1712), + [anon_sym_final] = ACTIONS(1712), + [anon_sym_synchronized] = ACTIONS(1712), + [anon_sym_TILDE] = ACTIONS(1714), + [anon_sym_BANG] = ACTIONS(1714), + [anon_sym_new] = ACTIONS(1712), + }, + [797] = { + [sym_comment] = STATE(797), + [sym_groovy_doc] = STATE(797), + [sym_parameter_list] = STATE(822), + [sym_identifier] = ACTIONS(1691), + [anon_sym_break] = ACTIONS(1691), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym_STAR] = ACTIONS(1691), + [anon_sym_STAR_COLON] = ACTIONS(1693), + [anon_sym_import] = ACTIONS(1691), + [anon_sym_package] = ACTIONS(1691), + [anon_sym_AT] = ACTIONS(1691), + [anon_sym_assert] = ACTIONS(1691), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_PLUS_PLUS] = ACTIONS(1693), + [anon_sym_DASH_DASH] = ACTIONS(1693), + [anon_sym_SLASH] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1691), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1691), + [anon_sym_false] = ACTIONS(1691), + [anon_sym_ATinterface] = ACTIONS(1693), + [anon_sym_interface] = ACTIONS(1691), + [anon_sym_class] = ACTIONS(1691), + [anon_sym_LBRACE] = ACTIONS(1693), + [anon_sym_RBRACE] = ACTIONS(1693), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1691), + [anon_sym_this] = ACTIONS(1691), + [anon_sym_null] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_do] = ACTIONS(1691), + [anon_sym_while] = ACTIONS(1691), + [anon_sym_for] = ACTIONS(1691), + [anon_sym_if] = ACTIONS(1691), + [anon_sym_else] = ACTIONS(1691), + [anon_sym_LBRACK] = ACTIONS(1693), + [aux_sym_number_literal_token1] = ACTIONS(1691), + [aux_sym_number_literal_token2] = ACTIONS(1693), + [aux_sym_number_literal_token3] = ACTIONS(1693), + [aux_sym_number_literal_token4] = ACTIONS(1691), + [aux_sym_number_literal_token5] = ACTIONS(1693), + [anon_sym_return] = ACTIONS(1691), + [anon_sym_SQUOTE] = ACTIONS(1691), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1693), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1693), + [anon_sym_switch] = ACTIONS(1691), + [anon_sym_try] = ACTIONS(1691), + [anon_sym_int] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_char] = ACTIONS(1691), + [anon_sym_short] = ACTIONS(1691), + [anon_sym_long] = ACTIONS(1691), + [anon_sym_float] = ACTIONS(1691), + [anon_sym_double] = ACTIONS(1691), + [anon_sym_void] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_final] = ACTIONS(1691), + [anon_sym_synchronized] = ACTIONS(1691), + [anon_sym_TILDE] = ACTIONS(1693), + [anon_sym_BANG] = ACTIONS(1693), + [anon_sym_new] = ACTIONS(1691), + }, + [798] = { + [sym_comment] = STATE(798), + [sym_groovy_doc] = STATE(798), + [sym_parameter_list] = STATE(825), + [sym_identifier] = ACTIONS(1718), + [anon_sym_break] = ACTIONS(1718), + [anon_sym_continue] = ACTIONS(1718), + [anon_sym_SEMI] = ACTIONS(1720), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_STAR_COLON] = ACTIONS(1720), + [anon_sym_import] = ACTIONS(1718), + [anon_sym_package] = ACTIONS(1718), + [anon_sym_AT] = ACTIONS(1718), + [anon_sym_assert] = ACTIONS(1718), + [anon_sym_EQ] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_true] = ACTIONS(1718), + [anon_sym_false] = ACTIONS(1718), + [anon_sym_ATinterface] = ACTIONS(1720), + [anon_sym_interface] = ACTIONS(1718), + [anon_sym_class] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1720), + [anon_sym_RBRACE] = ACTIONS(1720), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1718), + [anon_sym_this] = ACTIONS(1718), + [anon_sym_null] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_do] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1718), + [anon_sym_for] = ACTIONS(1718), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_else] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1720), + [aux_sym_number_literal_token1] = ACTIONS(1718), + [aux_sym_number_literal_token2] = ACTIONS(1720), + [aux_sym_number_literal_token3] = ACTIONS(1720), + [aux_sym_number_literal_token4] = ACTIONS(1718), + [aux_sym_number_literal_token5] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(1718), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1720), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1720), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1720), + [anon_sym_switch] = ACTIONS(1718), + [anon_sym_try] = ACTIONS(1718), + [anon_sym_int] = ACTIONS(1718), + [anon_sym_boolean] = ACTIONS(1718), + [anon_sym_char] = ACTIONS(1718), + [anon_sym_short] = ACTIONS(1718), + [anon_sym_long] = ACTIONS(1718), + [anon_sym_float] = ACTIONS(1718), + [anon_sym_double] = ACTIONS(1718), + [anon_sym_void] = ACTIONS(1718), + [anon_sym_public] = ACTIONS(1718), + [anon_sym_protected] = ACTIONS(1718), + [anon_sym_private] = ACTIONS(1718), + [anon_sym_static] = ACTIONS(1718), + [anon_sym_final] = ACTIONS(1718), + [anon_sym_synchronized] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1720), + [anon_sym_BANG] = ACTIONS(1720), + [anon_sym_new] = ACTIONS(1718), + }, + [799] = { + [sym_comment] = STATE(799), + [sym_groovy_doc] = STATE(799), + [sym_parameter_list] = STATE(818), + [sym_identifier] = ACTIONS(1681), + [anon_sym_break] = ACTIONS(1681), + [anon_sym_continue] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_STAR_COLON] = ACTIONS(1683), + [anon_sym_import] = ACTIONS(1681), + [anon_sym_package] = ACTIONS(1681), + [anon_sym_AT] = ACTIONS(1681), + [anon_sym_assert] = ACTIONS(1681), + [anon_sym_EQ] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(1681), + [anon_sym_false] = ACTIONS(1681), + [anon_sym_ATinterface] = ACTIONS(1683), + [anon_sym_interface] = ACTIONS(1681), + [anon_sym_class] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_RBRACE] = ACTIONS(1683), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1681), + [anon_sym_this] = ACTIONS(1681), + [anon_sym_null] = ACTIONS(1681), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_do] = ACTIONS(1681), + [anon_sym_while] = ACTIONS(1681), + [anon_sym_for] = ACTIONS(1681), + [anon_sym_if] = ACTIONS(1681), + [anon_sym_else] = ACTIONS(1681), + [anon_sym_LBRACK] = ACTIONS(1683), + [aux_sym_number_literal_token1] = ACTIONS(1681), + [aux_sym_number_literal_token2] = ACTIONS(1683), + [aux_sym_number_literal_token3] = ACTIONS(1683), + [aux_sym_number_literal_token4] = ACTIONS(1681), + [aux_sym_number_literal_token5] = ACTIONS(1683), + [anon_sym_return] = ACTIONS(1681), + [anon_sym_SQUOTE] = ACTIONS(1681), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1683), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1683), + [anon_sym_switch] = ACTIONS(1681), + [anon_sym_try] = ACTIONS(1681), + [anon_sym_int] = ACTIONS(1681), + [anon_sym_boolean] = ACTIONS(1681), + [anon_sym_char] = ACTIONS(1681), + [anon_sym_short] = ACTIONS(1681), + [anon_sym_long] = ACTIONS(1681), + [anon_sym_float] = ACTIONS(1681), + [anon_sym_double] = ACTIONS(1681), + [anon_sym_void] = ACTIONS(1681), + [anon_sym_public] = ACTIONS(1681), + [anon_sym_protected] = ACTIONS(1681), + [anon_sym_private] = ACTIONS(1681), + [anon_sym_static] = ACTIONS(1681), + [anon_sym_final] = ACTIONS(1681), + [anon_sym_synchronized] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_new] = ACTIONS(1681), + }, + [800] = { + [sym_comment] = STATE(800), + [sym_groovy_doc] = STATE(800), + [sym_identifier] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_STAR_COLON] = ACTIONS(1471), + [anon_sym_import] = ACTIONS(1473), + [anon_sym_package] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_assert] = ACTIONS(1473), + [anon_sym_PLUS_PLUS] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_ATinterface] = ACTIONS(1471), + [anon_sym_interface] = ACTIONS(1473), + [anon_sym_class] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1471), + [anon_sym_RBRACE] = ACTIONS(1471), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1473), + [anon_sym_this] = ACTIONS(1473), + [anon_sym_null] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1471), + [aux_sym_number_literal_token1] = ACTIONS(1473), + [aux_sym_number_literal_token2] = ACTIONS(1471), + [aux_sym_number_literal_token3] = ACTIONS(1471), + [aux_sym_number_literal_token4] = ACTIONS(1473), + [aux_sym_number_literal_token5] = ACTIONS(1471), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_SQUOTE] = ACTIONS(1473), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1473), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1471), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1473), + [anon_sym_try] = ACTIONS(1473), + [anon_sym_catch] = ACTIONS(1473), + [anon_sym_finally] = ACTIONS(1473), + [anon_sym_int] = ACTIONS(1473), + [anon_sym_boolean] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_float] = ACTIONS(1473), + [anon_sym_double] = ACTIONS(1473), + [anon_sym_void] = ACTIONS(1473), + [anon_sym_public] = ACTIONS(1473), + [anon_sym_protected] = ACTIONS(1473), + [anon_sym_private] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_final] = ACTIONS(1473), + [anon_sym_synchronized] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_new] = ACTIONS(1473), + }, + [801] = { + [sym_comment] = STATE(801), + [sym_groovy_doc] = STATE(801), + [aux_sym__juxt_argument_list_repeat1] = STATE(801), + [sym_identifier] = ACTIONS(375), + [anon_sym_break] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(375), + [anon_sym_STAR_COLON] = ACTIONS(377), + [anon_sym_import] = ACTIONS(375), + [anon_sym_package] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(375), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_PLUS_PLUS] = ACTIONS(377), + [anon_sym_DASH_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_ATinterface] = ACTIONS(377), + [anon_sym_interface] = ACTIONS(375), + [anon_sym_class] = ACTIONS(375), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_RBRACE] = ACTIONS(377), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(375), + [anon_sym_this] = ACTIONS(375), + [anon_sym_null] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_do] = ACTIONS(375), + [anon_sym_while] = ACTIONS(375), + [anon_sym_for] = ACTIONS(375), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(377), + [aux_sym_number_literal_token1] = ACTIONS(375), + [aux_sym_number_literal_token2] = ACTIONS(377), + [aux_sym_number_literal_token3] = ACTIONS(377), + [aux_sym_number_literal_token4] = ACTIONS(375), + [aux_sym_number_literal_token5] = ACTIONS(377), + [anon_sym_return] = ACTIONS(375), + [anon_sym_SQUOTE] = ACTIONS(375), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_DOLLAR_SLASH] = ACTIONS(377), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_try] = ACTIONS(375), + [anon_sym_int] = ACTIONS(375), + [anon_sym_boolean] = ACTIONS(375), + [anon_sym_char] = ACTIONS(375), + [anon_sym_short] = ACTIONS(375), + [anon_sym_long] = ACTIONS(375), + [anon_sym_float] = ACTIONS(375), + [anon_sym_double] = ACTIONS(375), + [anon_sym_void] = ACTIONS(375), + [anon_sym_public] = ACTIONS(375), + [anon_sym_protected] = ACTIONS(375), + [anon_sym_private] = ACTIONS(375), + [anon_sym_static] = ACTIONS(375), + [anon_sym_final] = ACTIONS(375), + [anon_sym_synchronized] = ACTIONS(375), + [anon_sym_TILDE] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_new] = ACTIONS(375), + }, + [802] = { + [sym_comment] = STATE(802), + [sym_groovy_doc] = STATE(802), + [sym_argument_list] = STATE(816), + [sym_identifier] = ACTIONS(259), + [anon_sym_break] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(259), + [anon_sym_SEMI] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(259), + [anon_sym_STAR_COLON] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(1749), + [anon_sym_import] = ACTIONS(259), + [anon_sym_package] = ACTIONS(259), + [anon_sym_AT] = ACTIONS(259), + [anon_sym_assert] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_true] = ACTIONS(259), + [anon_sym_false] = ACTIONS(259), + [anon_sym_ATinterface] = ACTIONS(261), + [anon_sym_interface] = ACTIONS(259), + [anon_sym_class] = ACTIONS(259), + [anon_sym_LBRACE] = ACTIONS(261), + [anon_sym_RBRACE] = ACTIONS(261), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(259), + [anon_sym_this] = ACTIONS(259), + [anon_sym_null] = ACTIONS(259), + [anon_sym_LPAREN] = ACTIONS(261), + [anon_sym_do] = ACTIONS(259), + [anon_sym_while] = ACTIONS(259), + [anon_sym_for] = ACTIONS(259), + [anon_sym_if] = ACTIONS(259), + [anon_sym_else] = ACTIONS(259), + [anon_sym_LBRACK] = ACTIONS(1751), + [aux_sym_number_literal_token1] = ACTIONS(259), + [aux_sym_number_literal_token2] = ACTIONS(261), + [aux_sym_number_literal_token3] = ACTIONS(261), + [aux_sym_number_literal_token4] = ACTIONS(259), + [aux_sym_number_literal_token5] = ACTIONS(261), + [anon_sym_return] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(261), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_SLASH] = ACTIONS(261), + [anon_sym_switch] = ACTIONS(259), + [anon_sym_try] = ACTIONS(259), + [anon_sym_int] = ACTIONS(259), + [anon_sym_boolean] = ACTIONS(259), + [anon_sym_char] = ACTIONS(259), + [anon_sym_short] = ACTIONS(259), + [anon_sym_long] = ACTIONS(259), + [anon_sym_float] = ACTIONS(259), + [anon_sym_double] = ACTIONS(259), + [anon_sym_void] = ACTIONS(259), + [anon_sym_public] = ACTIONS(259), + [anon_sym_protected] = ACTIONS(259), + [anon_sym_private] = ACTIONS(259), + [anon_sym_static] = ACTIONS(259), + [anon_sym_final] = ACTIONS(259), + [anon_sym_synchronized] = ACTIONS(259), + [anon_sym_TILDE] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_new] = ACTIONS(259), + }, + [803] = { + [sym_comment] = STATE(803), + [sym_groovy_doc] = STATE(803), + [aux_sym__juxt_argument_list_repeat1] = STATE(794), + [sym_identifier] = ACTIONS(287), + [anon_sym_break] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(287), + [anon_sym_STAR_COLON] = ACTIONS(289), + [anon_sym_import] = ACTIONS(287), + [anon_sym_package] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_assert] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(289), + [anon_sym_DASH_DASH] = ACTIONS(289), + [anon_sym_SLASH] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_true] = ACTIONS(287), + [anon_sym_false] = ACTIONS(287), + [anon_sym_ATinterface] = ACTIONS(289), + [anon_sym_interface] = ACTIONS(287), + [anon_sym_class] = ACTIONS(287), + [anon_sym_COMMA] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(289), + [anon_sym_RBRACE] = ACTIONS(289), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(287), + [anon_sym_this] = ACTIONS(287), + [anon_sym_null] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(289), + [anon_sym_do] = ACTIONS(287), + [anon_sym_while] = ACTIONS(287), + [anon_sym_for] = ACTIONS(287), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(289), + [aux_sym_number_literal_token1] = ACTIONS(287), + [aux_sym_number_literal_token2] = ACTIONS(289), + [aux_sym_number_literal_token3] = ACTIONS(289), + [aux_sym_number_literal_token4] = ACTIONS(287), + [aux_sym_number_literal_token5] = ACTIONS(289), + [anon_sym_return] = ACTIONS(287), + [anon_sym_SQUOTE] = ACTIONS(287), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR_SLASH] = ACTIONS(289), + [anon_sym_switch] = ACTIONS(287), + [anon_sym_try] = ACTIONS(287), + [anon_sym_int] = ACTIONS(287), + [anon_sym_boolean] = ACTIONS(287), + [anon_sym_char] = ACTIONS(287), + [anon_sym_short] = ACTIONS(287), + [anon_sym_long] = ACTIONS(287), + [anon_sym_float] = ACTIONS(287), + [anon_sym_double] = ACTIONS(287), + [anon_sym_void] = ACTIONS(287), + [anon_sym_public] = ACTIONS(287), + [anon_sym_protected] = ACTIONS(287), + [anon_sym_private] = ACTIONS(287), + [anon_sym_static] = ACTIONS(287), + [anon_sym_final] = ACTIONS(287), + [anon_sym_synchronized] = ACTIONS(287), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_new] = ACTIONS(287), + }, + [804] = { + [sym_comment] = STATE(804), + [sym_groovy_doc] = STATE(804), + [ts_builtin_sym_end] = ACTIONS(95), + [sym_identifier] = ACTIONS(89), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_STAR_COLON] = ACTIONS(95), + [anon_sym_import] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [anon_sym_ATinterface] = ACTIONS(95), + [anon_sym_interface] = ACTIONS(89), + [anon_sym_class] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_null] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_do] = ACTIONS(89), + [anon_sym_while] = ACTIONS(89), + [anon_sym_for] = ACTIONS(89), + [anon_sym_if] = ACTIONS(89), + [anon_sym_else] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(95), + [aux_sym_number_literal_token1] = ACTIONS(89), + [aux_sym_number_literal_token2] = ACTIONS(95), + [aux_sym_number_literal_token3] = ACTIONS(95), + [aux_sym_number_literal_token4] = ACTIONS(89), + [aux_sym_number_literal_token5] = ACTIONS(95), + [anon_sym_pipeline] = ACTIONS(89), + [anon_sym_return] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SLASH] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(89), + [anon_sym_try] = ACTIONS(89), + [anon_sym_int] = ACTIONS(89), + [anon_sym_boolean] = ACTIONS(89), + [anon_sym_char] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_float] = ACTIONS(89), + [anon_sym_double] = ACTIONS(89), + [anon_sym_void] = ACTIONS(89), + [anon_sym_public] = ACTIONS(89), + [anon_sym_protected] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_static] = ACTIONS(89), + [anon_sym_final] = ACTIONS(89), + [anon_sym_synchronized] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_new] = ACTIONS(89), + }, + [805] = { + [sym_comment] = STATE(805), + [sym_groovy_doc] = STATE(805), + [sym_parameter_list] = STATE(825), + [sym_identifier] = ACTIONS(1663), + [anon_sym_break] = ACTIONS(1663), + [anon_sym_continue] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_STAR_COLON] = ACTIONS(1665), + [anon_sym_import] = ACTIONS(1663), + [anon_sym_package] = ACTIONS(1663), + [anon_sym_AT] = ACTIONS(1663), + [anon_sym_assert] = ACTIONS(1663), + [anon_sym_EQ] = ACTIONS(1753), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_true] = ACTIONS(1663), + [anon_sym_false] = ACTIONS(1663), + [anon_sym_ATinterface] = ACTIONS(1665), + [anon_sym_interface] = ACTIONS(1663), + [anon_sym_class] = ACTIONS(1663), + [anon_sym_LBRACE] = ACTIONS(1665), + [anon_sym_RBRACE] = ACTIONS(1665), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1663), + [anon_sym_this] = ACTIONS(1663), + [anon_sym_null] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_do] = ACTIONS(1663), + [anon_sym_while] = ACTIONS(1663), + [anon_sym_for] = ACTIONS(1663), + [anon_sym_if] = ACTIONS(1663), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), + [aux_sym_number_literal_token1] = ACTIONS(1663), + [aux_sym_number_literal_token2] = ACTIONS(1665), + [aux_sym_number_literal_token3] = ACTIONS(1665), + [aux_sym_number_literal_token4] = ACTIONS(1663), + [aux_sym_number_literal_token5] = ACTIONS(1665), + [anon_sym_return] = ACTIONS(1663), + [anon_sym_SQUOTE] = ACTIONS(1663), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1665), + [anon_sym_DQUOTE] = ACTIONS(1663), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1665), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1665), + [anon_sym_switch] = ACTIONS(1663), + [anon_sym_try] = ACTIONS(1663), + [anon_sym_int] = ACTIONS(1663), + [anon_sym_boolean] = ACTIONS(1663), + [anon_sym_char] = ACTIONS(1663), + [anon_sym_short] = ACTIONS(1663), + [anon_sym_long] = ACTIONS(1663), + [anon_sym_float] = ACTIONS(1663), + [anon_sym_double] = ACTIONS(1663), + [anon_sym_void] = ACTIONS(1663), + [anon_sym_public] = ACTIONS(1663), + [anon_sym_protected] = ACTIONS(1663), + [anon_sym_private] = ACTIONS(1663), + [anon_sym_static] = ACTIONS(1663), + [anon_sym_final] = ACTIONS(1663), + [anon_sym_synchronized] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_new] = ACTIONS(1663), + }, + [806] = { + [sym_comment] = STATE(806), + [sym_groovy_doc] = STATE(806), + [sym_identifier] = ACTIONS(1537), + [anon_sym_break] = ACTIONS(1537), + [anon_sym_continue] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(1537), + [anon_sym_STAR_COLON] = ACTIONS(1535), + [anon_sym_import] = ACTIONS(1537), + [anon_sym_package] = ACTIONS(1537), + [anon_sym_AT] = ACTIONS(1537), + [anon_sym_assert] = ACTIONS(1537), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_SLASH] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_ATinterface] = ACTIONS(1535), + [anon_sym_interface] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1535), + [anon_sym_RBRACE] = ACTIONS(1535), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1537), + [anon_sym_this] = ACTIONS(1537), + [anon_sym_null] = ACTIONS(1537), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_do] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_for] = ACTIONS(1537), + [anon_sym_if] = ACTIONS(1537), + [anon_sym_else] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1535), + [aux_sym_number_literal_token1] = ACTIONS(1537), + [aux_sym_number_literal_token2] = ACTIONS(1535), + [aux_sym_number_literal_token3] = ACTIONS(1535), + [aux_sym_number_literal_token4] = ACTIONS(1537), + [aux_sym_number_literal_token5] = ACTIONS(1535), + [anon_sym_return] = ACTIONS(1537), + [anon_sym_SQUOTE] = ACTIONS(1537), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1537), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1535), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1535), + [anon_sym_switch] = ACTIONS(1537), + [anon_sym_try] = ACTIONS(1537), + [anon_sym_catch] = ACTIONS(1755), + [anon_sym_finally] = ACTIONS(1757), + [anon_sym_int] = ACTIONS(1537), + [anon_sym_boolean] = ACTIONS(1537), + [anon_sym_char] = ACTIONS(1537), + [anon_sym_short] = ACTIONS(1537), + [anon_sym_long] = ACTIONS(1537), + [anon_sym_float] = ACTIONS(1537), + [anon_sym_double] = ACTIONS(1537), + [anon_sym_void] = ACTIONS(1537), + [anon_sym_public] = ACTIONS(1537), + [anon_sym_protected] = ACTIONS(1537), + [anon_sym_private] = ACTIONS(1537), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_final] = ACTIONS(1537), + [anon_sym_synchronized] = ACTIONS(1537), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_new] = ACTIONS(1537), + }, + [807] = { + [sym_comment] = STATE(807), + [sym_groovy_doc] = STATE(807), + [sym_parameter_list] = STATE(818), + [sym_identifier] = ACTIONS(1675), + [anon_sym_break] = ACTIONS(1675), + [anon_sym_continue] = ACTIONS(1675), + [anon_sym_SEMI] = ACTIONS(1677), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_STAR_COLON] = ACTIONS(1677), + [anon_sym_import] = ACTIONS(1675), + [anon_sym_package] = ACTIONS(1675), + [anon_sym_AT] = ACTIONS(1675), + [anon_sym_assert] = ACTIONS(1675), + [anon_sym_EQ] = ACTIONS(1759), + [anon_sym_PLUS_PLUS] = ACTIONS(1677), + [anon_sym_DASH_DASH] = ACTIONS(1677), + [anon_sym_SLASH] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1675), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1675), + [anon_sym_false] = ACTIONS(1675), + [anon_sym_ATinterface] = ACTIONS(1677), + [anon_sym_interface] = ACTIONS(1675), + [anon_sym_class] = ACTIONS(1675), + [anon_sym_LBRACE] = ACTIONS(1677), + [anon_sym_RBRACE] = ACTIONS(1677), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1675), + [anon_sym_this] = ACTIONS(1675), + [anon_sym_null] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_do] = ACTIONS(1675), + [anon_sym_while] = ACTIONS(1675), + [anon_sym_for] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1675), + [anon_sym_else] = ACTIONS(1675), + [anon_sym_LBRACK] = ACTIONS(1677), + [aux_sym_number_literal_token1] = ACTIONS(1675), + [aux_sym_number_literal_token2] = ACTIONS(1677), + [aux_sym_number_literal_token3] = ACTIONS(1677), + [aux_sym_number_literal_token4] = ACTIONS(1675), + [aux_sym_number_literal_token5] = ACTIONS(1677), + [anon_sym_return] = ACTIONS(1675), + [anon_sym_SQUOTE] = ACTIONS(1675), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1677), + [anon_sym_DQUOTE] = ACTIONS(1675), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1677), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1677), + [anon_sym_switch] = ACTIONS(1675), + [anon_sym_try] = ACTIONS(1675), + [anon_sym_int] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_char] = ACTIONS(1675), + [anon_sym_short] = ACTIONS(1675), + [anon_sym_long] = ACTIONS(1675), + [anon_sym_float] = ACTIONS(1675), + [anon_sym_double] = ACTIONS(1675), + [anon_sym_void] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_final] = ACTIONS(1675), + [anon_sym_synchronized] = ACTIONS(1675), + [anon_sym_TILDE] = ACTIONS(1677), + [anon_sym_BANG] = ACTIONS(1677), + [anon_sym_new] = ACTIONS(1675), + }, + [808] = { + [sym_comment] = STATE(808), + [sym_groovy_doc] = STATE(808), + [sym_parameter_list] = STATE(822), + [sym_identifier] = ACTIONS(1697), + [anon_sym_break] = ACTIONS(1697), + [anon_sym_continue] = ACTIONS(1697), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_STAR] = ACTIONS(1697), + [anon_sym_STAR_COLON] = ACTIONS(1699), + [anon_sym_import] = ACTIONS(1697), + [anon_sym_package] = ACTIONS(1697), + [anon_sym_AT] = ACTIONS(1697), + [anon_sym_assert] = ACTIONS(1697), + [anon_sym_EQ] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_true] = ACTIONS(1697), + [anon_sym_false] = ACTIONS(1697), + [anon_sym_ATinterface] = ACTIONS(1699), + [anon_sym_interface] = ACTIONS(1697), + [anon_sym_class] = ACTIONS(1697), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_RBRACE] = ACTIONS(1699), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1697), + [anon_sym_this] = ACTIONS(1697), + [anon_sym_null] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_do] = ACTIONS(1697), + [anon_sym_while] = ACTIONS(1697), + [anon_sym_for] = ACTIONS(1697), + [anon_sym_if] = ACTIONS(1697), + [anon_sym_else] = ACTIONS(1697), + [anon_sym_LBRACK] = ACTIONS(1699), + [aux_sym_number_literal_token1] = ACTIONS(1697), + [aux_sym_number_literal_token2] = ACTIONS(1699), + [aux_sym_number_literal_token3] = ACTIONS(1699), + [aux_sym_number_literal_token4] = ACTIONS(1697), + [aux_sym_number_literal_token5] = ACTIONS(1699), + [anon_sym_return] = ACTIONS(1697), + [anon_sym_SQUOTE] = ACTIONS(1697), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1699), + [anon_sym_DQUOTE] = ACTIONS(1697), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1699), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1699), + [anon_sym_switch] = ACTIONS(1697), + [anon_sym_try] = ACTIONS(1697), + [anon_sym_int] = ACTIONS(1697), + [anon_sym_boolean] = ACTIONS(1697), + [anon_sym_char] = ACTIONS(1697), + [anon_sym_short] = ACTIONS(1697), + [anon_sym_long] = ACTIONS(1697), + [anon_sym_float] = ACTIONS(1697), + [anon_sym_double] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_public] = ACTIONS(1697), + [anon_sym_protected] = ACTIONS(1697), + [anon_sym_private] = ACTIONS(1697), + [anon_sym_static] = ACTIONS(1697), + [anon_sym_final] = ACTIONS(1697), + [anon_sym_synchronized] = ACTIONS(1697), + [anon_sym_TILDE] = ACTIONS(1699), + [anon_sym_BANG] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1697), + }, + [809] = { + [sym_comment] = STATE(809), + [sym_groovy_doc] = STATE(809), + [sym_identifier] = ACTIONS(271), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_SEMI] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_COLON] = ACTIONS(273), + [anon_sym_DOT] = ACTIONS(273), + [anon_sym_import] = ACTIONS(271), + [anon_sym_package] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_assert] = ACTIONS(271), + [anon_sym_PLUS_PLUS] = ACTIONS(273), + [anon_sym_DASH_DASH] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_true] = ACTIONS(271), + [anon_sym_false] = ACTIONS(271), + [anon_sym_ATinterface] = ACTIONS(273), + [anon_sym_interface] = ACTIONS(271), + [anon_sym_class] = ACTIONS(271), + [anon_sym_LBRACE] = ACTIONS(273), + [anon_sym_RBRACE] = ACTIONS(273), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(271), + [anon_sym_this] = ACTIONS(271), + [anon_sym_null] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(273), + [anon_sym_do] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [aux_sym_number_literal_token1] = ACTIONS(271), + [aux_sym_number_literal_token2] = ACTIONS(273), + [aux_sym_number_literal_token3] = ACTIONS(273), + [aux_sym_number_literal_token4] = ACTIONS(271), + [aux_sym_number_literal_token5] = ACTIONS(273), + [anon_sym_return] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(273), + [anon_sym_DQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(273), + [anon_sym_DOLLAR_SLASH] = ACTIONS(273), + [anon_sym_switch] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_int] = ACTIONS(271), + [anon_sym_boolean] = ACTIONS(271), + [anon_sym_char] = ACTIONS(271), + [anon_sym_short] = ACTIONS(271), + [anon_sym_long] = ACTIONS(271), + [anon_sym_float] = ACTIONS(271), + [anon_sym_double] = ACTIONS(271), + [anon_sym_void] = ACTIONS(271), + [anon_sym_public] = ACTIONS(271), + [anon_sym_protected] = ACTIONS(271), + [anon_sym_private] = ACTIONS(271), + [anon_sym_static] = ACTIONS(271), + [anon_sym_final] = ACTIONS(271), + [anon_sym_synchronized] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(273), + [anon_sym_new] = ACTIONS(271), + }, + [810] = { + [sym_comment] = STATE(810), + [sym_groovy_doc] = STATE(810), + [sym_identifier] = ACTIONS(343), + [anon_sym_break] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_STAR] = ACTIONS(343), + [anon_sym_STAR_COLON] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_import] = ACTIONS(343), + [anon_sym_package] = ACTIONS(343), + [anon_sym_AT] = ACTIONS(343), + [anon_sym_assert] = ACTIONS(343), + [anon_sym_PLUS_PLUS] = ACTIONS(345), + [anon_sym_DASH_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(343), + [anon_sym_DASH] = ACTIONS(343), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_ATinterface] = ACTIONS(345), + [anon_sym_interface] = ACTIONS(343), + [anon_sym_class] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(345), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(343), + [anon_sym_this] = ACTIONS(343), + [anon_sym_null] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_do] = ACTIONS(343), + [anon_sym_while] = ACTIONS(343), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(343), + [anon_sym_else] = ACTIONS(343), + [anon_sym_LBRACK] = ACTIONS(345), + [aux_sym_number_literal_token1] = ACTIONS(343), + [aux_sym_number_literal_token2] = ACTIONS(345), + [aux_sym_number_literal_token3] = ACTIONS(345), + [aux_sym_number_literal_token4] = ACTIONS(343), + [aux_sym_number_literal_token5] = ACTIONS(345), + [anon_sym_return] = ACTIONS(343), + [anon_sym_SQUOTE] = ACTIONS(343), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_SLASH] = ACTIONS(345), + [anon_sym_switch] = ACTIONS(343), + [anon_sym_try] = ACTIONS(343), + [anon_sym_int] = ACTIONS(343), + [anon_sym_boolean] = ACTIONS(343), + [anon_sym_char] = ACTIONS(343), + [anon_sym_short] = ACTIONS(343), + [anon_sym_long] = ACTIONS(343), + [anon_sym_float] = ACTIONS(343), + [anon_sym_double] = ACTIONS(343), + [anon_sym_void] = ACTIONS(343), + [anon_sym_public] = ACTIONS(343), + [anon_sym_protected] = ACTIONS(343), + [anon_sym_private] = ACTIONS(343), + [anon_sym_static] = ACTIONS(343), + [anon_sym_final] = ACTIONS(343), + [anon_sym_synchronized] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(345), + [anon_sym_new] = ACTIONS(343), + }, + [811] = { + [sym_comment] = STATE(811), + [sym_groovy_doc] = STATE(811), + [sym_identifier] = ACTIONS(335), + [anon_sym_break] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(335), + [anon_sym_SEMI] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(335), + [anon_sym_STAR_COLON] = ACTIONS(337), + [anon_sym_DOT] = ACTIONS(337), + [anon_sym_import] = ACTIONS(335), + [anon_sym_package] = ACTIONS(335), + [anon_sym_AT] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(337), + [anon_sym_DASH_DASH] = ACTIONS(337), + [anon_sym_SLASH] = ACTIONS(335), + [anon_sym_PLUS] = ACTIONS(335), + [anon_sym_DASH] = ACTIONS(335), + [anon_sym_true] = ACTIONS(335), + [anon_sym_false] = ACTIONS(335), + [anon_sym_ATinterface] = ACTIONS(337), + [anon_sym_interface] = ACTIONS(335), + [anon_sym_class] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(337), + [anon_sym_RBRACE] = ACTIONS(337), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(335), + [anon_sym_this] = ACTIONS(335), + [anon_sym_null] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_do] = ACTIONS(335), + [anon_sym_while] = ACTIONS(335), + [anon_sym_for] = ACTIONS(335), + [anon_sym_if] = ACTIONS(335), + [anon_sym_else] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [aux_sym_number_literal_token1] = ACTIONS(335), + [aux_sym_number_literal_token2] = ACTIONS(337), + [aux_sym_number_literal_token3] = ACTIONS(337), + [aux_sym_number_literal_token4] = ACTIONS(335), + [aux_sym_number_literal_token5] = ACTIONS(337), + [anon_sym_return] = ACTIONS(335), + [anon_sym_SQUOTE] = ACTIONS(335), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(337), + [anon_sym_DQUOTE] = ACTIONS(335), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(337), + [anon_sym_DOLLAR_SLASH] = ACTIONS(337), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_try] = ACTIONS(335), + [anon_sym_int] = ACTIONS(335), + [anon_sym_boolean] = ACTIONS(335), + [anon_sym_char] = ACTIONS(335), + [anon_sym_short] = ACTIONS(335), + [anon_sym_long] = ACTIONS(335), + [anon_sym_float] = ACTIONS(335), + [anon_sym_double] = ACTIONS(335), + [anon_sym_void] = ACTIONS(335), + [anon_sym_public] = ACTIONS(335), + [anon_sym_protected] = ACTIONS(335), + [anon_sym_private] = ACTIONS(335), + [anon_sym_static] = ACTIONS(335), + [anon_sym_final] = ACTIONS(335), + [anon_sym_synchronized] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(337), + [anon_sym_BANG] = ACTIONS(337), + [anon_sym_new] = ACTIONS(335), + }, + [812] = { + [sym_comment] = STATE(812), + [sym_groovy_doc] = STATE(812), + [sym_identifier] = ACTIONS(77), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(77), + [anon_sym_STAR_COLON] = ACTIONS(79), + [anon_sym_DOT] = ACTIONS(79), + [anon_sym_import] = ACTIONS(77), + [anon_sym_package] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(77), + [anon_sym_assert] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_class] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_RBRACE] = ACTIONS(79), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(77), + [anon_sym_this] = ACTIONS(77), + [anon_sym_null] = ACTIONS(77), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_do] = ACTIONS(77), + [anon_sym_while] = ACTIONS(77), + [anon_sym_for] = ACTIONS(77), + [anon_sym_if] = ACTIONS(77), + [anon_sym_else] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(79), + [aux_sym_number_literal_token1] = ACTIONS(77), + [aux_sym_number_literal_token2] = ACTIONS(79), + [aux_sym_number_literal_token3] = ACTIONS(79), + [aux_sym_number_literal_token4] = ACTIONS(77), + [aux_sym_number_literal_token5] = ACTIONS(79), + [anon_sym_return] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(77), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR_SLASH] = ACTIONS(79), + [anon_sym_switch] = ACTIONS(77), + [anon_sym_try] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_boolean] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [anon_sym_void] = ACTIONS(77), + [anon_sym_public] = ACTIONS(77), + [anon_sym_protected] = ACTIONS(77), + [anon_sym_private] = ACTIONS(77), + [anon_sym_static] = ACTIONS(77), + [anon_sym_final] = ACTIONS(77), + [anon_sym_synchronized] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_new] = ACTIONS(77), + }, + [813] = { + [sym_comment] = STATE(813), + [sym_groovy_doc] = STATE(813), + [sym_identifier] = ACTIONS(339), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(341), + [anon_sym_STAR] = ACTIONS(339), + [anon_sym_STAR_COLON] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(341), + [anon_sym_import] = ACTIONS(339), + [anon_sym_package] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(339), + [anon_sym_assert] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_SLASH] = ACTIONS(339), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_true] = ACTIONS(339), + [anon_sym_false] = ACTIONS(339), + [anon_sym_ATinterface] = ACTIONS(341), + [anon_sym_interface] = ACTIONS(339), + [anon_sym_class] = ACTIONS(339), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(341), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(339), + [anon_sym_this] = ACTIONS(339), + [anon_sym_null] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_do] = ACTIONS(339), + [anon_sym_while] = ACTIONS(339), + [anon_sym_for] = ACTIONS(339), + [anon_sym_if] = ACTIONS(339), + [anon_sym_else] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(341), + [aux_sym_number_literal_token1] = ACTIONS(339), + [aux_sym_number_literal_token2] = ACTIONS(341), + [aux_sym_number_literal_token3] = ACTIONS(341), + [aux_sym_number_literal_token4] = ACTIONS(339), + [aux_sym_number_literal_token5] = ACTIONS(341), + [anon_sym_return] = ACTIONS(339), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(341), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(341), + [anon_sym_DOLLAR_SLASH] = ACTIONS(341), + [anon_sym_switch] = ACTIONS(339), + [anon_sym_try] = ACTIONS(339), + [anon_sym_int] = ACTIONS(339), + [anon_sym_boolean] = ACTIONS(339), + [anon_sym_char] = ACTIONS(339), + [anon_sym_short] = ACTIONS(339), + [anon_sym_long] = ACTIONS(339), + [anon_sym_float] = ACTIONS(339), + [anon_sym_double] = ACTIONS(339), + [anon_sym_void] = ACTIONS(339), + [anon_sym_public] = ACTIONS(339), + [anon_sym_protected] = ACTIONS(339), + [anon_sym_private] = ACTIONS(339), + [anon_sym_static] = ACTIONS(339), + [anon_sym_final] = ACTIONS(339), + [anon_sym_synchronized] = ACTIONS(339), + [anon_sym_TILDE] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_new] = ACTIONS(339), + }, + [814] = { + [sym_comment] = STATE(814), + [sym_groovy_doc] = STATE(814), + [sym_identifier] = ACTIONS(275), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_STAR] = ACTIONS(275), + [anon_sym_STAR_COLON] = ACTIONS(277), + [anon_sym_DOT] = ACTIONS(277), + [anon_sym_import] = ACTIONS(275), + [anon_sym_package] = ACTIONS(275), + [anon_sym_AT] = ACTIONS(275), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_PLUS_PLUS] = ACTIONS(277), + [anon_sym_DASH_DASH] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_PLUS] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_true] = ACTIONS(275), + [anon_sym_false] = ACTIONS(275), + [anon_sym_ATinterface] = ACTIONS(277), + [anon_sym_interface] = ACTIONS(275), + [anon_sym_class] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(277), + [anon_sym_RBRACE] = ACTIONS(277), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(275), + [anon_sym_this] = ACTIONS(275), + [anon_sym_null] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(277), + [anon_sym_do] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(275), + [anon_sym_else] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [aux_sym_number_literal_token1] = ACTIONS(275), + [aux_sym_number_literal_token2] = ACTIONS(277), + [aux_sym_number_literal_token3] = ACTIONS(277), + [aux_sym_number_literal_token4] = ACTIONS(275), + [aux_sym_number_literal_token5] = ACTIONS(277), + [anon_sym_return] = ACTIONS(275), + [anon_sym_SQUOTE] = ACTIONS(275), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(277), + [anon_sym_DQUOTE] = ACTIONS(275), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(277), + [anon_sym_DOLLAR_SLASH] = ACTIONS(277), + [anon_sym_switch] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_int] = ACTIONS(275), + [anon_sym_boolean] = ACTIONS(275), + [anon_sym_char] = ACTIONS(275), + [anon_sym_short] = ACTIONS(275), + [anon_sym_long] = ACTIONS(275), + [anon_sym_float] = ACTIONS(275), + [anon_sym_double] = ACTIONS(275), + [anon_sym_void] = ACTIONS(275), + [anon_sym_public] = ACTIONS(275), + [anon_sym_protected] = ACTIONS(275), + [anon_sym_private] = ACTIONS(275), + [anon_sym_static] = ACTIONS(275), + [anon_sym_final] = ACTIONS(275), + [anon_sym_synchronized] = ACTIONS(275), + [anon_sym_TILDE] = ACTIONS(277), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_new] = ACTIONS(275), + }, + [815] = { + [sym_comment] = STATE(815), + [sym_groovy_doc] = STATE(815), + [sym_identifier] = ACTIONS(69), + [anon_sym_break] = ACTIONS(69), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_SEMI] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(69), + [anon_sym_STAR_COLON] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(71), + [anon_sym_import] = ACTIONS(69), + [anon_sym_package] = ACTIONS(69), + [anon_sym_AT] = ACTIONS(69), + [anon_sym_assert] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(69), + [anon_sym_class] = ACTIONS(69), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(71), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(69), + [anon_sym_this] = ACTIONS(69), + [anon_sym_null] = ACTIONS(69), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_do] = ACTIONS(69), + [anon_sym_while] = ACTIONS(69), + [anon_sym_for] = ACTIONS(69), + [anon_sym_if] = ACTIONS(69), + [anon_sym_else] = ACTIONS(69), + [anon_sym_LBRACK] = ACTIONS(71), + [aux_sym_number_literal_token1] = ACTIONS(69), + [aux_sym_number_literal_token2] = ACTIONS(71), + [aux_sym_number_literal_token3] = ACTIONS(71), + [aux_sym_number_literal_token4] = ACTIONS(69), + [aux_sym_number_literal_token5] = ACTIONS(71), + [anon_sym_return] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_SLASH] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_try] = ACTIONS(69), + [anon_sym_int] = ACTIONS(69), + [anon_sym_boolean] = ACTIONS(69), + [anon_sym_char] = ACTIONS(69), + [anon_sym_short] = ACTIONS(69), + [anon_sym_long] = ACTIONS(69), + [anon_sym_float] = ACTIONS(69), + [anon_sym_double] = ACTIONS(69), + [anon_sym_void] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_protected] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_final] = ACTIONS(69), + [anon_sym_synchronized] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_new] = ACTIONS(69), + }, + [816] = { + [sym_comment] = STATE(816), + [sym_groovy_doc] = STATE(816), + [sym_identifier] = ACTIONS(73), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(73), + [anon_sym_STAR_COLON] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(75), + [anon_sym_import] = ACTIONS(73), + [anon_sym_package] = ACTIONS(73), + [anon_sym_AT] = ACTIONS(73), + [anon_sym_assert] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ATinterface] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_class] = ACTIONS(73), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_RBRACE] = ACTIONS(75), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(73), + [anon_sym_this] = ACTIONS(73), + [anon_sym_null] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_do] = ACTIONS(73), + [anon_sym_while] = ACTIONS(73), + [anon_sym_for] = ACTIONS(73), + [anon_sym_if] = ACTIONS(73), + [anon_sym_else] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(75), + [aux_sym_number_literal_token1] = ACTIONS(73), + [aux_sym_number_literal_token2] = ACTIONS(75), + [aux_sym_number_literal_token3] = ACTIONS(75), + [aux_sym_number_literal_token4] = ACTIONS(73), + [aux_sym_number_literal_token5] = ACTIONS(75), + [anon_sym_return] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(75), + [anon_sym_DOLLAR_SLASH] = ACTIONS(75), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_try] = ACTIONS(73), + [anon_sym_int] = ACTIONS(73), + [anon_sym_boolean] = ACTIONS(73), + [anon_sym_char] = ACTIONS(73), + [anon_sym_short] = ACTIONS(73), + [anon_sym_long] = ACTIONS(73), + [anon_sym_float] = ACTIONS(73), + [anon_sym_double] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_public] = ACTIONS(73), + [anon_sym_protected] = ACTIONS(73), + [anon_sym_private] = ACTIONS(73), + [anon_sym_static] = ACTIONS(73), + [anon_sym_final] = ACTIONS(73), + [anon_sym_synchronized] = ACTIONS(73), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_new] = ACTIONS(73), + }, + [817] = { + [sym_closure] = STATE(720), + [sym_comment] = STATE(817), + [sym_groovy_doc] = STATE(817), + [sym_identifier] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1461), + [anon_sym_STAR_COLON] = ACTIONS(1459), + [anon_sym_import] = ACTIONS(1461), + [anon_sym_package] = ACTIONS(1461), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_assert] = ACTIONS(1461), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [anon_sym_SLASH] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [anon_sym_ATinterface] = ACTIONS(1459), + [anon_sym_interface] = ACTIONS(1461), + [anon_sym_class] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1359), + [anon_sym_RBRACE] = ACTIONS(1459), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1461), + [anon_sym_this] = ACTIONS(1461), + [anon_sym_null] = ACTIONS(1461), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_else] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(1459), + [aux_sym_number_literal_token1] = ACTIONS(1461), + [aux_sym_number_literal_token2] = ACTIONS(1459), + [aux_sym_number_literal_token3] = ACTIONS(1459), + [aux_sym_number_literal_token4] = ACTIONS(1461), + [aux_sym_number_literal_token5] = ACTIONS(1459), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_SQUOTE] = ACTIONS(1461), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1461), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1459), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1459), + [anon_sym_switch] = ACTIONS(1461), + [anon_sym_try] = ACTIONS(1461), + [anon_sym_int] = ACTIONS(1461), + [anon_sym_boolean] = ACTIONS(1461), + [anon_sym_char] = ACTIONS(1461), + [anon_sym_short] = ACTIONS(1461), + [anon_sym_long] = ACTIONS(1461), + [anon_sym_float] = ACTIONS(1461), + [anon_sym_double] = ACTIONS(1461), + [anon_sym_void] = ACTIONS(1461), + [anon_sym_public] = ACTIONS(1461), + [anon_sym_protected] = ACTIONS(1461), + [anon_sym_private] = ACTIONS(1461), + [anon_sym_static] = ACTIONS(1461), + [anon_sym_final] = ACTIONS(1461), + [anon_sym_synchronized] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_new] = ACTIONS(1461), + }, + [818] = { + [sym_closure] = STATE(731), + [sym_comment] = STATE(818), + [sym_groovy_doc] = STATE(818), + [sym_identifier] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_STAR] = ACTIONS(1465), + [anon_sym_STAR_COLON] = ACTIONS(1463), + [anon_sym_import] = ACTIONS(1465), + [anon_sym_package] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(1465), + [anon_sym_assert] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1463), + [anon_sym_DASH_DASH] = ACTIONS(1463), + [anon_sym_SLASH] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(1465), + [anon_sym_false] = ACTIONS(1465), + [anon_sym_ATinterface] = ACTIONS(1463), + [anon_sym_interface] = ACTIONS(1465), + [anon_sym_class] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1359), + [anon_sym_RBRACE] = ACTIONS(1463), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1465), + [anon_sym_this] = ACTIONS(1465), + [anon_sym_null] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_do] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_else] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1463), + [aux_sym_number_literal_token1] = ACTIONS(1465), + [aux_sym_number_literal_token2] = ACTIONS(1463), + [aux_sym_number_literal_token3] = ACTIONS(1463), + [aux_sym_number_literal_token4] = ACTIONS(1465), + [aux_sym_number_literal_token5] = ACTIONS(1463), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_SQUOTE] = ACTIONS(1465), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1465), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1463), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1463), + [anon_sym_switch] = ACTIONS(1465), + [anon_sym_try] = ACTIONS(1465), + [anon_sym_int] = ACTIONS(1465), + [anon_sym_boolean] = ACTIONS(1465), + [anon_sym_char] = ACTIONS(1465), + [anon_sym_short] = ACTIONS(1465), + [anon_sym_long] = ACTIONS(1465), + [anon_sym_float] = ACTIONS(1465), + [anon_sym_double] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_public] = ACTIONS(1465), + [anon_sym_protected] = ACTIONS(1465), + [anon_sym_private] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1465), + [anon_sym_final] = ACTIONS(1465), + [anon_sym_synchronized] = ACTIONS(1465), + [anon_sym_TILDE] = ACTIONS(1463), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_new] = ACTIONS(1465), + }, + [819] = { + [sym_comment] = STATE(819), + [sym_groovy_doc] = STATE(819), + [sym_identifier] = ACTIONS(85), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_STAR_COLON] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(87), + [anon_sym_import] = ACTIONS(85), + [anon_sym_package] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_assert] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(85), + [anon_sym_true] = ACTIONS(85), + [anon_sym_false] = ACTIONS(85), + [anon_sym_ATinterface] = ACTIONS(87), + [anon_sym_interface] = ACTIONS(85), + [anon_sym_class] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_RBRACE] = ACTIONS(87), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(85), + [anon_sym_this] = ACTIONS(85), + [anon_sym_null] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_do] = ACTIONS(85), + [anon_sym_while] = ACTIONS(85), + [anon_sym_for] = ACTIONS(85), + [anon_sym_if] = ACTIONS(85), + [anon_sym_else] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [aux_sym_number_literal_token1] = ACTIONS(85), + [aux_sym_number_literal_token2] = ACTIONS(87), + [aux_sym_number_literal_token3] = ACTIONS(87), + [aux_sym_number_literal_token4] = ACTIONS(85), + [aux_sym_number_literal_token5] = ACTIONS(87), + [anon_sym_return] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_DOLLAR_SLASH] = ACTIONS(87), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_try] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_boolean] = ACTIONS(85), + [anon_sym_char] = ACTIONS(85), + [anon_sym_short] = ACTIONS(85), + [anon_sym_long] = ACTIONS(85), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [anon_sym_void] = ACTIONS(85), + [anon_sym_public] = ACTIONS(85), + [anon_sym_protected] = ACTIONS(85), + [anon_sym_private] = ACTIONS(85), + [anon_sym_static] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_synchronized] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_new] = ACTIONS(85), + }, + [820] = { + [sym_comment] = STATE(820), + [sym_groovy_doc] = STATE(820), + [sym_identifier] = ACTIONS(279), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(281), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_STAR_COLON] = ACTIONS(281), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_import] = ACTIONS(279), + [anon_sym_package] = ACTIONS(279), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(279), + [anon_sym_PLUS_PLUS] = ACTIONS(281), + [anon_sym_DASH_DASH] = ACTIONS(281), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_ATinterface] = ACTIONS(281), + [anon_sym_interface] = ACTIONS(279), + [anon_sym_class] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(281), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(279), + [anon_sym_this] = ACTIONS(279), + [anon_sym_null] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(281), + [anon_sym_do] = ACTIONS(279), + [anon_sym_while] = ACTIONS(279), + [anon_sym_for] = ACTIONS(279), + [anon_sym_if] = ACTIONS(279), + [anon_sym_else] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(281), + [aux_sym_number_literal_token1] = ACTIONS(279), + [aux_sym_number_literal_token2] = ACTIONS(281), + [aux_sym_number_literal_token3] = ACTIONS(281), + [aux_sym_number_literal_token4] = ACTIONS(279), + [aux_sym_number_literal_token5] = ACTIONS(281), + [anon_sym_return] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(279), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(281), + [anon_sym_DQUOTE] = ACTIONS(279), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [anon_sym_DOLLAR_SLASH] = ACTIONS(281), + [anon_sym_switch] = ACTIONS(279), + [anon_sym_try] = ACTIONS(279), + [anon_sym_int] = ACTIONS(279), + [anon_sym_boolean] = ACTIONS(279), + [anon_sym_char] = ACTIONS(279), + [anon_sym_short] = ACTIONS(279), + [anon_sym_long] = ACTIONS(279), + [anon_sym_float] = ACTIONS(279), + [anon_sym_double] = ACTIONS(279), + [anon_sym_void] = ACTIONS(279), + [anon_sym_public] = ACTIONS(279), + [anon_sym_protected] = ACTIONS(279), + [anon_sym_private] = ACTIONS(279), + [anon_sym_static] = ACTIONS(279), + [anon_sym_final] = ACTIONS(279), + [anon_sym_synchronized] = ACTIONS(279), + [anon_sym_TILDE] = ACTIONS(281), + [anon_sym_BANG] = ACTIONS(281), + [anon_sym_new] = ACTIONS(279), + }, + [821] = { + [sym_comment] = STATE(821), + [sym_groovy_doc] = STATE(821), + [sym_identifier] = ACTIONS(81), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_STAR_COLON] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(83), + [anon_sym_import] = ACTIONS(81), + [anon_sym_package] = ACTIONS(81), + [anon_sym_AT] = ACTIONS(81), + [anon_sym_assert] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_ATinterface] = ACTIONS(83), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_RBRACE] = ACTIONS(83), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(81), + [anon_sym_this] = ACTIONS(81), + [anon_sym_null] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_do] = ACTIONS(81), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(81), + [anon_sym_if] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), + [aux_sym_number_literal_token1] = ACTIONS(81), + [aux_sym_number_literal_token2] = ACTIONS(83), + [aux_sym_number_literal_token3] = ACTIONS(83), + [aux_sym_number_literal_token4] = ACTIONS(81), + [aux_sym_number_literal_token5] = ACTIONS(83), + [anon_sym_return] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_SLASH] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_try] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_boolean] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_float] = ACTIONS(81), + [anon_sym_double] = ACTIONS(81), + [anon_sym_void] = ACTIONS(81), + [anon_sym_public] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_static] = ACTIONS(81), + [anon_sym_final] = ACTIONS(81), + [anon_sym_synchronized] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(83), + [anon_sym_new] = ACTIONS(81), + }, + [822] = { + [sym_closure] = STATE(754), + [sym_comment] = STATE(822), + [sym_groovy_doc] = STATE(822), + [sym_identifier] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_STAR_COLON] = ACTIONS(1435), + [anon_sym_import] = ACTIONS(1437), + [anon_sym_package] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1437), + [anon_sym_assert] = ACTIONS(1437), + [anon_sym_PLUS_PLUS] = ACTIONS(1435), + [anon_sym_DASH_DASH] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [anon_sym_ATinterface] = ACTIONS(1435), + [anon_sym_interface] = ACTIONS(1437), + [anon_sym_class] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1359), + [anon_sym_RBRACE] = ACTIONS(1435), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1437), + [anon_sym_this] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_else] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1435), + [aux_sym_number_literal_token1] = ACTIONS(1437), + [aux_sym_number_literal_token2] = ACTIONS(1435), + [aux_sym_number_literal_token3] = ACTIONS(1435), + [aux_sym_number_literal_token4] = ACTIONS(1437), + [aux_sym_number_literal_token5] = ACTIONS(1435), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_SQUOTE] = ACTIONS(1437), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1435), + [anon_sym_DQUOTE] = ACTIONS(1437), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1435), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1435), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_try] = ACTIONS(1437), + [anon_sym_int] = ACTIONS(1437), + [anon_sym_boolean] = ACTIONS(1437), + [anon_sym_char] = ACTIONS(1437), + [anon_sym_short] = ACTIONS(1437), + [anon_sym_long] = ACTIONS(1437), + [anon_sym_float] = ACTIONS(1437), + [anon_sym_double] = ACTIONS(1437), + [anon_sym_void] = ACTIONS(1437), + [anon_sym_public] = ACTIONS(1437), + [anon_sym_protected] = ACTIONS(1437), + [anon_sym_private] = ACTIONS(1437), + [anon_sym_static] = ACTIONS(1437), + [anon_sym_final] = ACTIONS(1437), + [anon_sym_synchronized] = ACTIONS(1437), + [anon_sym_TILDE] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_new] = ACTIONS(1437), + }, + [823] = { + [sym_comment] = STATE(823), + [sym_groovy_doc] = STATE(823), + [sym_identifier] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1611), + [anon_sym_STAR] = ACTIONS(1613), + [anon_sym_STAR_COLON] = ACTIONS(1611), + [anon_sym_import] = ACTIONS(1613), + [anon_sym_package] = ACTIONS(1613), + [anon_sym_AT] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_SLASH] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_ATinterface] = ACTIONS(1611), + [anon_sym_interface] = ACTIONS(1613), + [anon_sym_class] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_RBRACE] = ACTIONS(1611), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1613), + [anon_sym_this] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_LPAREN] = ACTIONS(1611), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_else] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1611), + [aux_sym_number_literal_token1] = ACTIONS(1613), + [aux_sym_number_literal_token2] = ACTIONS(1611), + [aux_sym_number_literal_token3] = ACTIONS(1611), + [aux_sym_number_literal_token4] = ACTIONS(1613), + [aux_sym_number_literal_token5] = ACTIONS(1611), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_SQUOTE] = ACTIONS(1613), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1613), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1611), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1611), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_try] = ACTIONS(1613), + [anon_sym_finally] = ACTIONS(1763), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_boolean] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_public] = ACTIONS(1613), + [anon_sym_protected] = ACTIONS(1613), + [anon_sym_private] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_final] = ACTIONS(1613), + [anon_sym_synchronized] = ACTIONS(1613), + [anon_sym_TILDE] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1611), + [anon_sym_new] = ACTIONS(1613), + }, + [824] = { + [sym_comment] = STATE(824), + [sym_groovy_doc] = STATE(824), + [sym_identifier] = ACTIONS(97), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(101), + [anon_sym_STAR] = ACTIONS(97), + [anon_sym_STAR_COLON] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(101), + [anon_sym_import] = ACTIONS(97), + [anon_sym_package] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_assert] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(97), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_true] = ACTIONS(97), + [anon_sym_false] = ACTIONS(97), + [anon_sym_ATinterface] = ACTIONS(101), + [anon_sym_interface] = ACTIONS(97), + [anon_sym_class] = ACTIONS(97), + [anon_sym_LBRACE] = ACTIONS(101), + [anon_sym_RBRACE] = ACTIONS(101), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(97), + [anon_sym_this] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_do] = ACTIONS(97), + [anon_sym_while] = ACTIONS(97), + [anon_sym_for] = ACTIONS(97), + [anon_sym_if] = ACTIONS(97), + [anon_sym_else] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(101), + [aux_sym_number_literal_token1] = ACTIONS(97), + [aux_sym_number_literal_token2] = ACTIONS(101), + [aux_sym_number_literal_token3] = ACTIONS(101), + [aux_sym_number_literal_token4] = ACTIONS(97), + [aux_sym_number_literal_token5] = ACTIONS(101), + [anon_sym_return] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(101), + [anon_sym_DOLLAR_SLASH] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(97), + [anon_sym_try] = ACTIONS(97), + [anon_sym_int] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_char] = ACTIONS(97), + [anon_sym_short] = ACTIONS(97), + [anon_sym_long] = ACTIONS(97), + [anon_sym_float] = ACTIONS(97), + [anon_sym_double] = ACTIONS(97), + [anon_sym_void] = ACTIONS(97), + [anon_sym_public] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_static] = ACTIONS(97), + [anon_sym_final] = ACTIONS(97), + [anon_sym_synchronized] = ACTIONS(97), + [anon_sym_TILDE] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_new] = ACTIONS(97), + }, + [825] = { + [sym_closure] = STATE(746), + [sym_comment] = STATE(825), + [sym_groovy_doc] = STATE(825), + [sym_identifier] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_STAR_COLON] = ACTIONS(1439), + [anon_sym_import] = ACTIONS(1441), + [anon_sym_package] = ACTIONS(1441), + [anon_sym_AT] = ACTIONS(1441), + [anon_sym_assert] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_SLASH] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [anon_sym_ATinterface] = ACTIONS(1439), + [anon_sym_interface] = ACTIONS(1441), + [anon_sym_class] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1359), + [anon_sym_RBRACE] = ACTIONS(1439), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1441), + [anon_sym_this] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_else] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1439), + [aux_sym_number_literal_token1] = ACTIONS(1441), + [aux_sym_number_literal_token2] = ACTIONS(1439), + [aux_sym_number_literal_token3] = ACTIONS(1439), + [aux_sym_number_literal_token4] = ACTIONS(1441), + [aux_sym_number_literal_token5] = ACTIONS(1439), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_SQUOTE] = ACTIONS(1441), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1439), + [anon_sym_DQUOTE] = ACTIONS(1441), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1439), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1439), + [anon_sym_switch] = ACTIONS(1441), + [anon_sym_try] = ACTIONS(1441), + [anon_sym_int] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_char] = ACTIONS(1441), + [anon_sym_short] = ACTIONS(1441), + [anon_sym_long] = ACTIONS(1441), + [anon_sym_float] = ACTIONS(1441), + [anon_sym_double] = ACTIONS(1441), + [anon_sym_void] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_final] = ACTIONS(1441), + [anon_sym_synchronized] = ACTIONS(1441), + [anon_sym_TILDE] = ACTIONS(1439), + [anon_sym_BANG] = ACTIONS(1439), + [anon_sym_new] = ACTIONS(1441), + }, + [826] = { + [sym_comment] = STATE(826), + [sym_groovy_doc] = STATE(826), + [sym_identifier] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_STAR_COLON] = ACTIONS(1471), + [anon_sym_import] = ACTIONS(1473), + [anon_sym_package] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_assert] = ACTIONS(1473), + [anon_sym_PLUS_PLUS] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_ATinterface] = ACTIONS(1471), + [anon_sym_interface] = ACTIONS(1473), + [anon_sym_class] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1471), + [anon_sym_RBRACE] = ACTIONS(1471), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1473), + [anon_sym_this] = ACTIONS(1473), + [anon_sym_null] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1471), + [aux_sym_number_literal_token1] = ACTIONS(1473), + [aux_sym_number_literal_token2] = ACTIONS(1471), + [aux_sym_number_literal_token3] = ACTIONS(1471), + [aux_sym_number_literal_token4] = ACTIONS(1473), + [aux_sym_number_literal_token5] = ACTIONS(1471), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_SQUOTE] = ACTIONS(1473), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1473), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1471), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1473), + [anon_sym_try] = ACTIONS(1473), + [anon_sym_int] = ACTIONS(1473), + [anon_sym_boolean] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_float] = ACTIONS(1473), + [anon_sym_double] = ACTIONS(1473), + [anon_sym_void] = ACTIONS(1473), + [anon_sym_public] = ACTIONS(1473), + [anon_sym_protected] = ACTIONS(1473), + [anon_sym_private] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_final] = ACTIONS(1473), + [anon_sym_synchronized] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_new] = ACTIONS(1473), + }, + [827] = { + [sym_comment] = STATE(827), + [sym_groovy_doc] = STATE(827), + [sym_identifier] = ACTIONS(379), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(379), + [anon_sym_STAR_COLON] = ACTIONS(381), + [anon_sym_import] = ACTIONS(379), + [anon_sym_package] = ACTIONS(379), + [anon_sym_AT] = ACTIONS(379), + [anon_sym_assert] = ACTIONS(379), + [anon_sym_PLUS_PLUS] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(379), + [anon_sym_DASH] = ACTIONS(379), + [anon_sym_true] = ACTIONS(379), + [anon_sym_false] = ACTIONS(379), + [anon_sym_ATinterface] = ACTIONS(381), + [anon_sym_interface] = ACTIONS(379), + [anon_sym_class] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(381), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(379), + [anon_sym_this] = ACTIONS(379), + [anon_sym_null] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_do] = ACTIONS(379), + [anon_sym_while] = ACTIONS(379), + [anon_sym_for] = ACTIONS(379), + [anon_sym_if] = ACTIONS(379), + [anon_sym_else] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [aux_sym_number_literal_token1] = ACTIONS(379), + [aux_sym_number_literal_token2] = ACTIONS(381), + [aux_sym_number_literal_token3] = ACTIONS(381), + [aux_sym_number_literal_token4] = ACTIONS(379), + [aux_sym_number_literal_token5] = ACTIONS(381), + [anon_sym_return] = ACTIONS(379), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(381), + [anon_sym_DOLLAR_SLASH] = ACTIONS(381), + [anon_sym_switch] = ACTIONS(379), + [anon_sym_try] = ACTIONS(379), + [anon_sym_int] = ACTIONS(379), + [anon_sym_boolean] = ACTIONS(379), + [anon_sym_char] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [anon_sym_long] = ACTIONS(379), + [anon_sym_float] = ACTIONS(379), + [anon_sym_double] = ACTIONS(379), + [anon_sym_void] = ACTIONS(379), + [anon_sym_public] = ACTIONS(379), + [anon_sym_protected] = ACTIONS(379), + [anon_sym_private] = ACTIONS(379), + [anon_sym_static] = ACTIONS(379), + [anon_sym_final] = ACTIONS(379), + [anon_sym_synchronized] = ACTIONS(379), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_new] = ACTIONS(379), + }, + [828] = { + [sym_comment] = STATE(828), + [sym_groovy_doc] = STATE(828), + [sym_identifier] = ACTIONS(429), + [anon_sym_break] = ACTIONS(429), + [anon_sym_continue] = ACTIONS(429), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_STAR_COLON] = ACTIONS(431), + [anon_sym_import] = ACTIONS(429), + [anon_sym_package] = ACTIONS(429), + [anon_sym_AT] = ACTIONS(429), + [anon_sym_assert] = ACTIONS(429), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ATinterface] = ACTIONS(431), + [anon_sym_interface] = ACTIONS(429), + [anon_sym_class] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_RBRACE] = ACTIONS(431), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(429), + [anon_sym_this] = ACTIONS(429), + [anon_sym_null] = ACTIONS(429), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_do] = ACTIONS(429), + [anon_sym_while] = ACTIONS(429), + [anon_sym_for] = ACTIONS(429), + [anon_sym_if] = ACTIONS(429), + [anon_sym_else] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(431), + [aux_sym_number_literal_token1] = ACTIONS(429), + [aux_sym_number_literal_token2] = ACTIONS(431), + [aux_sym_number_literal_token3] = ACTIONS(431), + [aux_sym_number_literal_token4] = ACTIONS(429), + [aux_sym_number_literal_token5] = ACTIONS(431), + [anon_sym_return] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(429), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(429), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(431), + [anon_sym_DOLLAR_SLASH] = ACTIONS(431), + [anon_sym_switch] = ACTIONS(429), + [anon_sym_try] = ACTIONS(429), + [anon_sym_int] = ACTIONS(429), + [anon_sym_boolean] = ACTIONS(429), + [anon_sym_char] = ACTIONS(429), + [anon_sym_short] = ACTIONS(429), + [anon_sym_long] = ACTIONS(429), + [anon_sym_float] = ACTIONS(429), + [anon_sym_double] = ACTIONS(429), + [anon_sym_void] = ACTIONS(429), + [anon_sym_public] = ACTIONS(429), + [anon_sym_protected] = ACTIONS(429), + [anon_sym_private] = ACTIONS(429), + [anon_sym_static] = ACTIONS(429), + [anon_sym_final] = ACTIONS(429), + [anon_sym_synchronized] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_new] = ACTIONS(429), + }, + [829] = { + [sym_comment] = STATE(829), + [sym_groovy_doc] = STATE(829), + [sym_identifier] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(385), + [anon_sym_STAR_COLON] = ACTIONS(387), + [anon_sym_import] = ACTIONS(385), + [anon_sym_package] = ACTIONS(385), + [anon_sym_AT] = ACTIONS(385), + [anon_sym_assert] = ACTIONS(385), + [anon_sym_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_true] = ACTIONS(385), + [anon_sym_false] = ACTIONS(385), + [anon_sym_ATinterface] = ACTIONS(387), + [anon_sym_interface] = ACTIONS(385), + [anon_sym_class] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(387), + [anon_sym_RBRACE] = ACTIONS(387), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(385), + [anon_sym_this] = ACTIONS(385), + [anon_sym_null] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_do] = ACTIONS(385), + [anon_sym_while] = ACTIONS(385), + [anon_sym_for] = ACTIONS(385), + [anon_sym_if] = ACTIONS(385), + [anon_sym_else] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [aux_sym_number_literal_token1] = ACTIONS(385), + [aux_sym_number_literal_token2] = ACTIONS(387), + [aux_sym_number_literal_token3] = ACTIONS(387), + [aux_sym_number_literal_token4] = ACTIONS(385), + [aux_sym_number_literal_token5] = ACTIONS(387), + [anon_sym_return] = ACTIONS(385), + [anon_sym_SQUOTE] = ACTIONS(385), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(387), + [anon_sym_DQUOTE] = ACTIONS(385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_SLASH] = ACTIONS(387), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_try] = ACTIONS(385), + [anon_sym_int] = ACTIONS(385), + [anon_sym_boolean] = ACTIONS(385), + [anon_sym_char] = ACTIONS(385), + [anon_sym_short] = ACTIONS(385), + [anon_sym_long] = ACTIONS(385), + [anon_sym_float] = ACTIONS(385), + [anon_sym_double] = ACTIONS(385), + [anon_sym_void] = ACTIONS(385), + [anon_sym_public] = ACTIONS(385), + [anon_sym_protected] = ACTIONS(385), + [anon_sym_private] = ACTIONS(385), + [anon_sym_static] = ACTIONS(385), + [anon_sym_final] = ACTIONS(385), + [anon_sym_synchronized] = ACTIONS(385), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(387), + [anon_sym_new] = ACTIONS(385), + }, + [830] = { + [sym_comment] = STATE(830), + [sym_groovy_doc] = STATE(830), + [sym_identifier] = ACTIONS(417), + [anon_sym_break] = ACTIONS(417), + [anon_sym_continue] = ACTIONS(417), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_STAR] = ACTIONS(417), + [anon_sym_STAR_COLON] = ACTIONS(419), + [anon_sym_import] = ACTIONS(417), + [anon_sym_package] = ACTIONS(417), + [anon_sym_AT] = ACTIONS(417), + [anon_sym_assert] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(417), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(417), + [anon_sym_true] = ACTIONS(417), + [anon_sym_false] = ACTIONS(417), + [anon_sym_ATinterface] = ACTIONS(419), + [anon_sym_interface] = ACTIONS(417), + [anon_sym_class] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(419), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(417), + [anon_sym_this] = ACTIONS(417), + [anon_sym_null] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(419), + [anon_sym_do] = ACTIONS(417), + [anon_sym_while] = ACTIONS(417), + [anon_sym_for] = ACTIONS(417), + [anon_sym_if] = ACTIONS(417), + [anon_sym_else] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [aux_sym_number_literal_token1] = ACTIONS(417), + [aux_sym_number_literal_token2] = ACTIONS(419), + [aux_sym_number_literal_token3] = ACTIONS(419), + [aux_sym_number_literal_token4] = ACTIONS(417), + [aux_sym_number_literal_token5] = ACTIONS(419), + [anon_sym_return] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(419), + [anon_sym_DQUOTE] = ACTIONS(417), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(419), + [anon_sym_DOLLAR_SLASH] = ACTIONS(419), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_try] = ACTIONS(417), + [anon_sym_int] = ACTIONS(417), + [anon_sym_boolean] = ACTIONS(417), + [anon_sym_char] = ACTIONS(417), + [anon_sym_short] = ACTIONS(417), + [anon_sym_long] = ACTIONS(417), + [anon_sym_float] = ACTIONS(417), + [anon_sym_double] = ACTIONS(417), + [anon_sym_void] = ACTIONS(417), + [anon_sym_public] = ACTIONS(417), + [anon_sym_protected] = ACTIONS(417), + [anon_sym_private] = ACTIONS(417), + [anon_sym_static] = ACTIONS(417), + [anon_sym_final] = ACTIONS(417), + [anon_sym_synchronized] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(419), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_new] = ACTIONS(417), + }, + [831] = { + [sym_comment] = STATE(831), + [sym_groovy_doc] = STATE(831), + [sym_identifier] = ACTIONS(259), + [anon_sym_break] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(259), + [anon_sym_SEMI] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(259), + [anon_sym_STAR_COLON] = ACTIONS(261), + [anon_sym_import] = ACTIONS(259), + [anon_sym_package] = ACTIONS(259), + [anon_sym_AT] = ACTIONS(259), + [anon_sym_assert] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_true] = ACTIONS(259), + [anon_sym_false] = ACTIONS(259), + [anon_sym_ATinterface] = ACTIONS(261), + [anon_sym_interface] = ACTIONS(259), + [anon_sym_class] = ACTIONS(259), + [anon_sym_LBRACE] = ACTIONS(261), + [anon_sym_RBRACE] = ACTIONS(261), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(259), + [anon_sym_this] = ACTIONS(259), + [anon_sym_null] = ACTIONS(259), + [anon_sym_LPAREN] = ACTIONS(261), + [anon_sym_do] = ACTIONS(259), + [anon_sym_while] = ACTIONS(259), + [anon_sym_for] = ACTIONS(259), + [anon_sym_if] = ACTIONS(259), + [anon_sym_else] = ACTIONS(259), + [anon_sym_LBRACK] = ACTIONS(261), + [aux_sym_number_literal_token1] = ACTIONS(259), + [aux_sym_number_literal_token2] = ACTIONS(261), + [aux_sym_number_literal_token3] = ACTIONS(261), + [aux_sym_number_literal_token4] = ACTIONS(259), + [aux_sym_number_literal_token5] = ACTIONS(261), + [anon_sym_return] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(261), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_SLASH] = ACTIONS(261), + [anon_sym_switch] = ACTIONS(259), + [anon_sym_try] = ACTIONS(259), + [anon_sym_int] = ACTIONS(259), + [anon_sym_boolean] = ACTIONS(259), + [anon_sym_char] = ACTIONS(259), + [anon_sym_short] = ACTIONS(259), + [anon_sym_long] = ACTIONS(259), + [anon_sym_float] = ACTIONS(259), + [anon_sym_double] = ACTIONS(259), + [anon_sym_void] = ACTIONS(259), + [anon_sym_public] = ACTIONS(259), + [anon_sym_protected] = ACTIONS(259), + [anon_sym_private] = ACTIONS(259), + [anon_sym_static] = ACTIONS(259), + [anon_sym_final] = ACTIONS(259), + [anon_sym_synchronized] = ACTIONS(259), + [anon_sym_TILDE] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_new] = ACTIONS(259), + }, + [832] = { + [sym_comment] = STATE(832), + [sym_groovy_doc] = STATE(832), + [sym_identifier] = ACTIONS(363), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(365), + [anon_sym_STAR] = ACTIONS(363), + [anon_sym_STAR_COLON] = ACTIONS(365), + [anon_sym_import] = ACTIONS(363), + [anon_sym_package] = ACTIONS(363), + [anon_sym_AT] = ACTIONS(363), + [anon_sym_assert] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(365), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(363), + [anon_sym_DASH] = ACTIONS(363), + [anon_sym_true] = ACTIONS(363), + [anon_sym_false] = ACTIONS(363), + [anon_sym_ATinterface] = ACTIONS(365), + [anon_sym_interface] = ACTIONS(363), + [anon_sym_class] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_RBRACE] = ACTIONS(365), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(363), + [anon_sym_this] = ACTIONS(363), + [anon_sym_null] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(365), + [anon_sym_do] = ACTIONS(363), + [anon_sym_while] = ACTIONS(363), + [anon_sym_for] = ACTIONS(363), + [anon_sym_if] = ACTIONS(363), + [anon_sym_else] = ACTIONS(363), + [anon_sym_LBRACK] = ACTIONS(365), + [aux_sym_number_literal_token1] = ACTIONS(363), + [aux_sym_number_literal_token2] = ACTIONS(365), + [aux_sym_number_literal_token3] = ACTIONS(365), + [aux_sym_number_literal_token4] = ACTIONS(363), + [aux_sym_number_literal_token5] = ACTIONS(365), + [anon_sym_return] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(363), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(365), + [anon_sym_DQUOTE] = ACTIONS(363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(365), + [anon_sym_DOLLAR_SLASH] = ACTIONS(365), + [anon_sym_switch] = ACTIONS(363), + [anon_sym_try] = ACTIONS(363), + [anon_sym_int] = ACTIONS(363), + [anon_sym_boolean] = ACTIONS(363), + [anon_sym_char] = ACTIONS(363), + [anon_sym_short] = ACTIONS(363), + [anon_sym_long] = ACTIONS(363), + [anon_sym_float] = ACTIONS(363), + [anon_sym_double] = ACTIONS(363), + [anon_sym_void] = ACTIONS(363), + [anon_sym_public] = ACTIONS(363), + [anon_sym_protected] = ACTIONS(363), + [anon_sym_private] = ACTIONS(363), + [anon_sym_static] = ACTIONS(363), + [anon_sym_final] = ACTIONS(363), + [anon_sym_synchronized] = ACTIONS(363), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_new] = ACTIONS(363), + }, + [833] = { + [sym_comment] = STATE(833), + [sym_groovy_doc] = STATE(833), + [ts_builtin_sym_end] = ACTIONS(1767), + [sym_identifier] = ACTIONS(1769), + [anon_sym_break] = ACTIONS(1769), + [anon_sym_continue] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_STAR_COLON] = ACTIONS(1767), + [anon_sym_import] = ACTIONS(1769), + [anon_sym_package] = ACTIONS(1769), + [anon_sym_AT] = ACTIONS(1769), + [anon_sym_assert] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_true] = ACTIONS(1769), + [anon_sym_false] = ACTIONS(1769), + [anon_sym_ATinterface] = ACTIONS(1767), + [anon_sym_interface] = ACTIONS(1769), + [anon_sym_class] = ACTIONS(1769), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1767), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(7), + [anon_sym_def] = ACTIONS(1769), + [anon_sym_this] = ACTIONS(1769), + [anon_sym_null] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_do] = ACTIONS(1769), + [anon_sym_while] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(1767), + [aux_sym_number_literal_token1] = ACTIONS(1769), + [aux_sym_number_literal_token2] = ACTIONS(1767), + [aux_sym_number_literal_token3] = ACTIONS(1767), + [aux_sym_number_literal_token4] = ACTIONS(1769), + [aux_sym_number_literal_token5] = ACTIONS(1767), + [anon_sym_pipeline] = ACTIONS(1769), + [anon_sym_return] = ACTIONS(1769), + [anon_sym_SQUOTE] = ACTIONS(1769), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1769), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1767), + [anon_sym_DOLLAR_SLASH] = ACTIONS(1767), + [anon_sym_switch] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1769), + [anon_sym_int] = ACTIONS(1769), + [anon_sym_boolean] = ACTIONS(1769), + [anon_sym_char] = ACTIONS(1769), + [anon_sym_short] = ACTIONS(1769), + [anon_sym_long] = ACTIONS(1769), + [anon_sym_float] = ACTIONS(1769), + [anon_sym_double] = ACTIONS(1769), + [anon_sym_void] = ACTIONS(1769), + [anon_sym_public] = ACTIONS(1769), + [anon_sym_protected] = ACTIONS(1769), + [anon_sym_private] = ACTIONS(1769), + [anon_sym_static] = ACTIONS(1769), + [anon_sym_final] = ACTIONS(1769), + [anon_sym_synchronized] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1767), + [anon_sym_BANG] = ACTIONS(1767), + [anon_sym_new] = ACTIONS(1769), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(834), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(283), 18, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(285), 39, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_DOT_STAR, + anon_sym_as, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [75] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(835), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(343), 18, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(345), 38, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [149] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(836), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(85), 18, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(87), 38, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [223] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(837), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(77), 18, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(79), 38, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [297] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(838), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(69), 18, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(71), 38, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [371] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(97), 1, + anon_sym_DOT, + STATE(839), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(101), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(99), 17, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(93), 34, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [449] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(840), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(339), 18, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(341), 38, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [523] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(841), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(279), 18, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(281), 38, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [597] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(842), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(81), 18, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(83), 38, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [671] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(843), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(335), 18, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(337), 38, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [745] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(844), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(275), 18, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(277), 38, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [819] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(845), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(271), 18, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(273), 38, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [893] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(846), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(73), 18, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(75), 38, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [967] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1771), 1, + anon_sym_DOT, + ACTIONS(1773), 1, + anon_sym_LPAREN, + ACTIONS(1775), 1, + anon_sym_LBRACK, + STATE(849), 1, + sym_argument_list, + STATE(847), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(259), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(261), 35, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [1048] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(848), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(339), 17, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(341), 37, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [1120] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(849), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(73), 17, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(75), 37, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [1192] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(850), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(335), 17, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(337), 37, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [1264] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(851), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(275), 17, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(277), 37, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [1336] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(852), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(81), 17, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(83), 37, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [1408] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(853), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(343), 17, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(345), 37, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [1480] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(854), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(271), 17, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(273), 37, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [1552] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(855), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(283), 17, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(285), 37, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [1624] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(856), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(77), 17, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(79), 37, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [1696] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(857), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(69), 17, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(71), 37, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [1768] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(858), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(97), 17, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(101), 37, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [1840] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(859), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(279), 17, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(281), 37, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [1912] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(97), 1, + anon_sym_DOT, + ACTIONS(1777), 1, + anon_sym_COLON, + STATE(860), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(101), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(99), 17, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(93), 31, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_finally, + [1990] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(861), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(85), 17, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(87), 37, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [2062] = 31, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1101), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(862), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + ACTIONS(808), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(806), 4, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [2183] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(97), 1, + anon_sym_DOT, + ACTIONS(1793), 1, + anon_sym_DOT_STAR, + ACTIONS(1795), 1, + anon_sym_as, + ACTIONS(101), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + STATE(863), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1451), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1453), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [2262] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(97), 1, + anon_sym_DOT, + ACTIONS(1797), 1, + anon_sym_DOT_STAR, + ACTIONS(1799), 1, + anon_sym_as, + ACTIONS(101), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + STATE(864), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1443), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1445), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [2341] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(865), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(95), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(89), 4, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + ACTIONS(97), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + anon_sym_LBRACK, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(101), 29, + anon_sym_STAR_COLON, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_LBRACK_RBRACK, + anon_sym_TILDE, + anon_sym_BANG, + [2415] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1801), 1, + anon_sym_EQ, + ACTIONS(1803), 1, + anon_sym_LPAREN, + STATE(964), 1, + sym_parameter_list, + STATE(866), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1699), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1697), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [2490] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1803), 1, + anon_sym_LPAREN, + ACTIONS(1805), 1, + anon_sym_EQ, + STATE(954), 1, + sym_parameter_list, + STATE(867), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1720), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1718), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [2565] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(351), 1, + anon_sym_QMARK, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1815), 1, + anon_sym_PLUS, + ACTIONS(1817), 1, + anon_sym_DASH, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(868), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + ACTIONS(353), 13, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [2666] = 35, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + ACTIONS(1843), 1, + anon_sym_RBRACK, + ACTIONS(1845), 1, + anon_sym_COLON, + STATE(962), 1, + sym_number_literal, + STATE(1007), 1, + aux_sym_list_repeat1, + STATE(1569), 1, + sym__expression, + STATE(2017), 1, + aux_sym_map_repeat1, + STATE(2276), 1, + sym__prefix_expression, + STATE(2522), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(869), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [2793] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(351), 1, + anon_sym_QMARK, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1815), 1, + anon_sym_PLUS, + ACTIONS(1817), 1, + anon_sym_DASH, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(870), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + ACTIONS(353), 12, + anon_sym_SEMI, + anon_sym_QMARK_COLON, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [2896] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + STATE(871), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(351), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(353), 30, + anon_sym_SEMI, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [2969] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1815), 1, + anon_sym_PLUS, + ACTIONS(1817), 1, + anon_sym_DASH, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(351), 2, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(872), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + ACTIONS(353), 14, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [3066] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1815), 1, + anon_sym_PLUS, + ACTIONS(1817), 1, + anon_sym_DASH, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(351), 2, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(873), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + ACTIONS(353), 15, + anon_sym_SEMI, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [3161] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1815), 1, + anon_sym_PLUS, + ACTIONS(1817), 1, + anon_sym_DASH, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(874), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(351), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(353), 20, + anon_sym_SEMI, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [3250] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(875), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(429), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(431), 35, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [3319] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1815), 1, + anon_sym_PLUS, + ACTIONS(1817), 1, + anon_sym_DASH, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(876), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(351), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + ACTIONS(353), 15, + anon_sym_SEMI, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [3412] = 35, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + ACTIONS(1849), 1, + anon_sym_RBRACK, + ACTIONS(1851), 1, + anon_sym_COLON, + STATE(962), 1, + sym_number_literal, + STATE(977), 1, + aux_sym_list_repeat1, + STATE(1559), 1, + sym__expression, + STATE(2019), 1, + aux_sym_map_repeat1, + STATE(2276), 1, + sym__prefix_expression, + STATE(2500), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(877), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [3539] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1803), 1, + anon_sym_LPAREN, + ACTIONS(1853), 1, + anon_sym_EQ, + STATE(960), 1, + sym_parameter_list, + STATE(878), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1677), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1675), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [3614] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1803), 1, + anon_sym_LPAREN, + ACTIONS(1855), 1, + anon_sym_EQ, + STATE(960), 1, + sym_parameter_list, + STATE(879), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1683), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1681), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [3689] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(880), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(393), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(395), 35, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [3758] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(881), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(397), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(399), 35, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [3827] = 21, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(351), 1, + anon_sym_QMARK, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1815), 1, + anon_sym_PLUS, + ACTIONS(1817), 1, + anon_sym_DASH, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(882), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + ACTIONS(353), 14, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [3926] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1815), 1, + anon_sym_PLUS, + ACTIONS(1817), 1, + anon_sym_DASH, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(883), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(351), 13, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(353), 28, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [4007] = 35, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + ACTIONS(1857), 1, + anon_sym_RBRACK, + ACTIONS(1859), 1, + anon_sym_COLON, + STATE(962), 1, + sym_number_literal, + STATE(987), 1, + aux_sym_list_repeat1, + STATE(1556), 1, + sym__expression, + STATE(2018), 1, + aux_sym_map_repeat1, + STATE(2276), 1, + sym__prefix_expression, + STATE(2604), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(884), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [4134] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(885), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(351), 14, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(353), 29, + anon_sym_SEMI, + anon_sym_as, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [4211] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1815), 1, + anon_sym_PLUS, + ACTIONS(1817), 1, + anon_sym_DASH, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(886), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(351), 10, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(353), 24, + anon_sym_SEMI, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [4296] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + STATE(887), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(351), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(353), 30, + anon_sym_SEMI, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [4369] = 35, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + ACTIONS(1861), 1, + anon_sym_RBRACK, + ACTIONS(1863), 1, + anon_sym_COLON, + STATE(962), 1, + sym_number_literal, + STATE(1004), 1, + aux_sym_list_repeat1, + STATE(1542), 1, + sym__expression, + STATE(2022), 1, + aux_sym_map_repeat1, + STATE(2276), 1, + sym__prefix_expression, + STATE(2555), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(888), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [4496] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(889), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(401), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(403), 35, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [4565] = 35, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + ACTIONS(1865), 1, + anon_sym_RBRACK, + ACTIONS(1867), 1, + anon_sym_COLON, + STATE(962), 1, + sym_number_literal, + STATE(1084), 1, + aux_sym_list_repeat1, + STATE(1530), 1, + sym__expression, + STATE(2026), 1, + aux_sym_map_repeat1, + STATE(2276), 1, + sym__prefix_expression, + STATE(2541), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(890), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [4692] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(891), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(417), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(419), 35, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [4761] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1803), 1, + anon_sym_LPAREN, + ACTIONS(1869), 1, + anon_sym_EQ, + STATE(954), 1, + sym_parameter_list, + STATE(892), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1665), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1663), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [4836] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1803), 1, + anon_sym_LPAREN, + ACTIONS(1871), 1, + anon_sym_EQ, + STATE(930), 1, + sym_parameter_list, + STATE(893), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1708), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1706), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [4911] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(894), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(405), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(407), 35, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [4980] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(895), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(425), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(427), 35, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [5049] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(896), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(363), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(365), 35, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [5118] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(97), 1, + anon_sym_DOT, + ACTIONS(1873), 1, + anon_sym_DOT_STAR, + ACTIONS(1875), 1, + anon_sym_as, + ACTIONS(101), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + STATE(897), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1443), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1445), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [5195] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(898), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(101), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1467), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1469), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [5266] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1803), 1, + anon_sym_LPAREN, + ACTIONS(1877), 1, + anon_sym_EQ, + STATE(964), 1, + sym_parameter_list, + STATE(899), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1693), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1691), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [5341] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(900), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(259), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(261), 35, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [5410] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(901), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(409), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(411), 35, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [5479] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(902), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(329), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(331), 35, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [5548] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(903), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(379), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(381), 35, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [5617] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(904), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(385), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(387), 35, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [5686] = 35, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + ACTIONS(1879), 1, + anon_sym_RBRACK, + ACTIONS(1881), 1, + anon_sym_COLON, + STATE(962), 1, + sym_number_literal, + STATE(1082), 1, + aux_sym_list_repeat1, + STATE(1564), 1, + sym__expression, + STATE(2024), 1, + aux_sym_map_repeat1, + STATE(2276), 1, + sym__prefix_expression, + STATE(2537), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(905), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [5813] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1803), 1, + anon_sym_LPAREN, + ACTIONS(1883), 1, + anon_sym_EQ, + STATE(930), 1, + sym_parameter_list, + STATE(906), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1714), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1712), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [5888] = 35, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + ACTIONS(1885), 1, + anon_sym_RBRACK, + ACTIONS(1887), 1, + anon_sym_COLON, + STATE(962), 1, + sym_number_literal, + STATE(1022), 1, + aux_sym_list_repeat1, + STATE(1549), 1, + sym__expression, + STATE(2025), 1, + aux_sym_map_repeat1, + STATE(2276), 1, + sym__prefix_expression, + STATE(2606), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(907), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [6015] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(908), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(359), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(361), 35, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [6084] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(909), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(355), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(357), 35, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [6153] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1815), 1, + anon_sym_PLUS, + ACTIONS(1817), 1, + anon_sym_DASH, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(910), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + ACTIONS(391), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [6258] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(911), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(99), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(93), 35, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [6327] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(912), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(267), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(269), 35, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [6396] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(97), 1, + anon_sym_DOT, + ACTIONS(1893), 1, + anon_sym_DOT_STAR, + ACTIONS(1895), 1, + anon_sym_as, + ACTIONS(101), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + STATE(913), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1451), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1453), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [6473] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(914), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(433), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(435), 35, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [6542] = 31, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1101), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(806), 2, + anon_sym_while, + anon_sym_else, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(915), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + ACTIONS(808), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [6661] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(916), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(413), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(415), 35, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [6730] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(917), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(421), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(423), 35, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [6799] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + STATE(918), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(413), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(415), 30, + anon_sym_SEMI, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_catch, + anon_sym_finally, + [6872] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_LPAREN, + ACTIONS(1897), 1, + anon_sym_EQ, + STATE(648), 1, + sym_parameter_list, + STATE(919), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1720), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1718), 38, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [6946] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1899), 1, + anon_sym_COMMA, + STATE(920), 3, + sym_comment, + sym_groovy_doc, + aux_sym__juxt_argument_list_repeat1, + ACTIONS(377), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(375), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [7016] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_LPAREN, + ACTIONS(1902), 1, + anon_sym_EQ, + STATE(652), 1, + sym_parameter_list, + STATE(921), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1683), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1681), 38, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [7090] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_LPAREN, + ACTIONS(1904), 1, + anon_sym_EQ, + STATE(651), 1, + sym_parameter_list, + STATE(922), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1708), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1706), 38, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [7164] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_LPAREN, + ACTIONS(1906), 1, + anon_sym_EQ, + STATE(648), 1, + sym_parameter_list, + STATE(923), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1665), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1663), 38, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [7238] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_LPAREN, + ACTIONS(1908), 1, + anon_sym_EQ, + STATE(652), 1, + sym_parameter_list, + STATE(924), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1677), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1675), 38, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [7312] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(676), 1, + anon_sym_COMMA, + STATE(920), 1, + aux_sym__juxt_argument_list_repeat1, + STATE(925), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1689), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1687), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [7384] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(676), 1, + anon_sym_COMMA, + STATE(925), 1, + aux_sym__juxt_argument_list_repeat1, + STATE(926), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(289), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(287), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [7456] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_LPAREN, + ACTIONS(1910), 1, + anon_sym_EQ, + STATE(651), 1, + sym_parameter_list, + STATE(927), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1714), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1712), 38, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [7530] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_LPAREN, + ACTIONS(1912), 1, + anon_sym_EQ, + STATE(647), 1, + sym_parameter_list, + STATE(928), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1699), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1697), 38, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [7604] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_LPAREN, + ACTIONS(1914), 1, + anon_sym_EQ, + STATE(647), 1, + sym_parameter_list, + STATE(929), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1693), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1691), 38, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [7678] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(822), 1, + anon_sym_LBRACE, + STATE(983), 1, + sym_closure, + STATE(930), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1459), 8, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1461), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [7749] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + ACTIONS(1916), 1, + anon_sym_RPAREN, + STATE(962), 1, + sym_number_literal, + STATE(1033), 1, + aux_sym_argument_list_repeat1, + STATE(1553), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2504), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(931), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [7870] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + ACTIONS(1918), 1, + anon_sym_RPAREN, + STATE(962), 1, + sym_number_literal, + STATE(1026), 1, + aux_sym_argument_list_repeat1, + STATE(1540), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2580), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(932), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [7991] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + ACTIONS(1920), 1, + anon_sym_RPAREN, + STATE(962), 1, + sym_number_literal, + STATE(971), 1, + aux_sym_argument_list_repeat1, + STATE(1539), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2594), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(933), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [8112] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + ACTIONS(1922), 1, + anon_sym_RPAREN, + STATE(962), 1, + sym_number_literal, + STATE(1025), 1, + aux_sym_argument_list_repeat1, + STATE(1537), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2595), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(934), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [8233] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + ACTIONS(1924), 1, + anon_sym_RPAREN, + STATE(962), 1, + sym_number_literal, + STATE(1018), 1, + aux_sym_argument_list_repeat1, + STATE(1534), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2525), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(935), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [8354] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + ACTIONS(1926), 1, + anon_sym_RPAREN, + STATE(962), 1, + sym_number_literal, + STATE(1016), 1, + aux_sym_argument_list_repeat1, + STATE(1529), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2549), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(936), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [8475] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1928), 1, + anon_sym_EQ, + ACTIONS(1930), 1, + anon_sym_LPAREN, + STATE(1121), 1, + sym_parameter_list, + STATE(937), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1665), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1663), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [8548] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + ACTIONS(1932), 1, + anon_sym_RPAREN, + STATE(962), 1, + sym_number_literal, + STATE(1011), 1, + aux_sym_argument_list_repeat1, + STATE(1525), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2579), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(938), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [8669] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(89), 1, + anon_sym_while, + ACTIONS(91), 1, + anon_sym_SEMI, + ACTIONS(95), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(939), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(97), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + anon_sym_LBRACK, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(101), 29, + anon_sym_STAR_COLON, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_LBRACK_RBRACK, + anon_sym_TILDE, + anon_sym_BANG, + [8742] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + ACTIONS(1934), 1, + anon_sym_RPAREN, + STATE(962), 1, + sym_number_literal, + STATE(1081), 1, + aux_sym_argument_list_repeat1, + STATE(1521), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2557), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(940), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [8863] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(941), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(101), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1467), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1469), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [8932] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1930), 1, + anon_sym_LPAREN, + ACTIONS(1936), 1, + anon_sym_EQ, + STATE(1121), 1, + sym_parameter_list, + STATE(942), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1720), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1718), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [9005] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + ACTIONS(1938), 1, + anon_sym_RPAREN, + STATE(962), 1, + sym_number_literal, + STATE(1014), 1, + aux_sym_argument_list_repeat1, + STATE(1546), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2521), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(943), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [9126] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1940), 1, + anon_sym_as, + STATE(944), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1639), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1641), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [9195] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_RPAREN, + STATE(962), 1, + sym_number_literal, + STATE(1028), 1, + aux_sym_argument_list_repeat1, + STATE(1545), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2533), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(945), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [9316] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + ACTIONS(1944), 1, + anon_sym_RPAREN, + STATE(962), 1, + sym_number_literal, + STATE(1055), 1, + aux_sym_argument_list_repeat1, + STATE(1554), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2543), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(946), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [9437] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1930), 1, + anon_sym_LPAREN, + ACTIONS(1946), 1, + anon_sym_EQ, + STATE(1105), 1, + sym_parameter_list, + STATE(947), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1714), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1712), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [9510] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + ACTIONS(1948), 1, + anon_sym_RPAREN, + STATE(962), 1, + sym_number_literal, + STATE(995), 1, + aux_sym_argument_list_repeat1, + STATE(1543), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2501), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(948), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [9631] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1950), 1, + anon_sym_catch, + ACTIONS(1952), 1, + anon_sym_finally, + STATE(949), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1535), 11, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1537), 36, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [9702] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + ACTIONS(1954), 1, + anon_sym_RPAREN, + STATE(962), 1, + sym_number_literal, + STATE(1065), 1, + aux_sym_argument_list_repeat1, + STATE(1567), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2531), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(950), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [9823] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + ACTIONS(1956), 1, + anon_sym_RPAREN, + STATE(962), 1, + sym_number_literal, + STATE(1056), 1, + aux_sym_argument_list_repeat1, + STATE(1520), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2523), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(951), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [9944] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1930), 1, + anon_sym_LPAREN, + ACTIONS(1958), 1, + anon_sym_EQ, + STATE(1105), 1, + sym_parameter_list, + STATE(952), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1708), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1706), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [10017] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(720), 1, + anon_sym_COMMA, + STATE(963), 1, + aux_sym__juxt_argument_list_repeat1, + STATE(953), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1689), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1687), 38, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [10088] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(822), 1, + anon_sym_LBRACE, + STATE(1048), 1, + sym_closure, + STATE(954), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1439), 8, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1441), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [10159] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1930), 1, + anon_sym_LPAREN, + ACTIONS(1960), 1, + anon_sym_EQ, + STATE(1119), 1, + sym_parameter_list, + STATE(955), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1693), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1691), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [10232] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(720), 1, + anon_sym_COMMA, + STATE(953), 1, + aux_sym__juxt_argument_list_repeat1, + STATE(956), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(289), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(287), 38, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [10303] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1962), 1, + anon_sym_as, + STATE(957), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1645), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1647), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [10372] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(958), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(377), 10, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(375), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [10439] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + ACTIONS(1964), 1, + anon_sym_RPAREN, + STATE(962), 1, + sym_number_literal, + STATE(1058), 1, + aux_sym_argument_list_repeat1, + STATE(1538), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2576), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(959), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [10560] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(822), 1, + anon_sym_LBRACE, + STATE(1032), 1, + sym_closure, + STATE(960), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1463), 8, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1465), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [10631] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1930), 1, + anon_sym_LPAREN, + ACTIONS(1966), 1, + anon_sym_EQ, + STATE(1119), 1, + sym_parameter_list, + STATE(961), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1699), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1697), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [10704] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1777), 1, + anon_sym_COLON, + STATE(962), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(99), 15, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(93), 33, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_finally, + [10773] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1968), 1, + anon_sym_COMMA, + STATE(963), 3, + sym_comment, + sym_groovy_doc, + aux_sym__juxt_argument_list_repeat1, + ACTIONS(377), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(375), 38, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [10842] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(822), 1, + anon_sym_LBRACE, + STATE(1010), 1, + sym_closure, + STATE(964), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1435), 8, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1437), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [10913] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + ACTIONS(1971), 1, + anon_sym_RPAREN, + STATE(962), 1, + sym_number_literal, + STATE(1071), 1, + aux_sym_argument_list_repeat1, + STATE(1558), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2598), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(965), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [11034] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1973), 1, + anon_sym_COLON, + STATE(966), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(329), 15, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(331), 33, + anon_sym_SEMI, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_as, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_finally, + [11103] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + ACTIONS(1975), 1, + anon_sym_RPAREN, + STATE(962), 1, + sym_number_literal, + STATE(1063), 1, + aux_sym_argument_list_repeat1, + STATE(1557), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2538), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(967), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [11224] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1930), 1, + anon_sym_LPAREN, + ACTIONS(1977), 1, + anon_sym_EQ, + STATE(1097), 1, + sym_parameter_list, + STATE(968), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1677), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1675), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [11297] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1930), 1, + anon_sym_LPAREN, + ACTIONS(1979), 1, + anon_sym_EQ, + STATE(1097), 1, + sym_parameter_list, + STATE(969), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1683), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1681), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [11370] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1730), 1, + anon_sym_LPAREN, + ACTIONS(1981), 1, + anon_sym_EQ, + STATE(1059), 1, + sym_parameter_list, + STATE(970), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1683), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1681), 36, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [11442] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + STATE(962), 1, + sym_number_literal, + STATE(992), 1, + aux_sym_argument_list_repeat1, + STATE(1541), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2590), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(971), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [11560] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(972), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(271), 22, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_as, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_instanceof, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + sym_identifier, + anon_sym_LBRACK, + anon_sym_QMARK, + ACTIONS(273), 26, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK_RBRACK, + [11626] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(973), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(343), 22, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_as, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_instanceof, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + sym_identifier, + anon_sym_LBRACK, + anon_sym_QMARK, + ACTIONS(345), 26, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK_RBRACK, + [11692] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1983), 1, + anon_sym_COMMA, + STATE(974), 3, + sym_comment, + sym_groovy_doc, + aux_sym__juxt_argument_list_repeat1, + ACTIONS(377), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(375), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [11760] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + ACTIONS(1986), 1, + sym_identifier, + ACTIONS(1988), 1, + anon_sym_LPAREN, + STATE(69), 1, + sym_number_literal, + STATE(71), 1, + sym__expression, + STATE(662), 1, + sym__juxt_argument_list, + STATE(762), 1, + sym_map_item, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(975), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [11878] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + STATE(662), 1, + sym__juxt_argument_list, + STATE(962), 1, + sym_number_literal, + STATE(1111), 1, + sym__expression, + STATE(2113), 1, + sym_map_item, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(976), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [11996] = 31, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1990), 1, + anon_sym_RBRACK, + STATE(988), 1, + aux_sym_list_repeat1, + STATE(1555), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(977), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [12112] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(978), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(335), 22, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_as, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_instanceof, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + sym_identifier, + anon_sym_LBRACK, + anon_sym_QMARK, + ACTIONS(337), 26, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK_RBRACK, + [12178] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(979), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1627), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1629), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [12244] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(980), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(339), 22, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_as, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_instanceof, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + sym_identifier, + anon_sym_LBRACK, + anon_sym_QMARK, + ACTIONS(341), 26, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK_RBRACK, + [12310] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(981), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(275), 22, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_as, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_instanceof, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + sym_identifier, + anon_sym_LBRACK, + anon_sym_QMARK, + ACTIONS(277), 26, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK_RBRACK, + [12376] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(982), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1587), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1589), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [12442] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(983), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1583), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1585), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [12508] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + ACTIONS(1992), 1, + sym_identifier, + ACTIONS(1994), 1, + anon_sym_LPAREN, + STATE(404), 1, + sym__expression, + STATE(411), 1, + sym_number_literal, + STATE(737), 1, + sym__juxt_argument_list, + STATE(1098), 1, + sym_map_item, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(984), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [12626] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(985), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + ACTIONS(373), 8, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_finally, + [12726] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(986), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1635), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1637), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [12792] = 31, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1996), 1, + anon_sym_RBRACK, + STATE(988), 1, + aux_sym_list_repeat1, + STATE(1560), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(987), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [12908] = 30, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1998), 1, + sym_identifier, + ACTIONS(2001), 1, + anon_sym_STAR, + ACTIONS(2004), 1, + anon_sym_STAR_COLON, + ACTIONS(2010), 1, + anon_sym_SLASH, + ACTIONS(2019), 1, + anon_sym_LBRACE, + ACTIONS(2025), 1, + anon_sym_LPAREN, + ACTIONS(2028), 1, + anon_sym_LBRACK, + ACTIONS(2031), 1, + anon_sym_RBRACK, + ACTIONS(2039), 1, + anon_sym_SQUOTE, + ACTIONS(2042), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2045), 1, + anon_sym_DQUOTE, + ACTIONS(2048), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2051), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2057), 1, + anon_sym_new, + STATE(1741), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(2007), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2013), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2016), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2022), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(2033), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(2054), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(2036), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(988), 3, + sym_comment, + sym_groovy_doc, + aux_sym_list_repeat1, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [13022] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(989), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1591), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1593), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [13088] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(990), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(283), 22, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_as, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_instanceof, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + sym_identifier, + anon_sym_LBRACK, + anon_sym_QMARK, + ACTIONS(285), 26, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK_RBRACK, + [13154] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + ACTIONS(2060), 1, + sym_identifier, + ACTIONS(2062), 1, + anon_sym_LPAREN, + STATE(299), 1, + sym_number_literal, + STATE(300), 1, + sym__expression, + STATE(662), 1, + sym__juxt_argument_list, + STATE(956), 1, + sym_map_item, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(991), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [13272] = 31, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2064), 1, + sym_identifier, + ACTIONS(2067), 1, + anon_sym_STAR, + ACTIONS(2070), 1, + anon_sym_STAR_COLON, + ACTIONS(2076), 1, + anon_sym_SLASH, + ACTIONS(2085), 1, + anon_sym_LBRACE, + ACTIONS(2091), 1, + anon_sym_LPAREN, + ACTIONS(2094), 1, + anon_sym_LBRACK, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + ACTIONS(2106), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2109), 1, + anon_sym_DQUOTE, + ACTIONS(2112), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2115), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2121), 1, + anon_sym_new, + STATE(962), 1, + sym_number_literal, + STATE(1743), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2652), 1, + sym_map_item, + ACTIONS(2073), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2079), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2082), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2088), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(2097), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(2118), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(2100), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(992), 3, + sym_comment, + sym_groovy_doc, + aux_sym_argument_list_repeat1, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [13388] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(993), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1523), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1525), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [13454] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(994), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1519), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1521), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [13520] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + STATE(962), 1, + sym_number_literal, + STATE(992), 1, + aux_sym_argument_list_repeat1, + STATE(1526), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2550), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(995), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [13638] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + STATE(737), 1, + sym__juxt_argument_list, + STATE(962), 1, + sym_number_literal, + STATE(1510), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2342), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(996), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [13756] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + STATE(754), 1, + sym_closure, + STATE(997), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1435), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1437), 36, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [13826] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1730), 1, + anon_sym_LPAREN, + ACTIONS(2124), 1, + anon_sym_EQ, + STATE(997), 1, + sym_parameter_list, + STATE(998), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1693), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1691), 36, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [13898] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(999), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1479), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1481), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [13964] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1730), 1, + anon_sym_LPAREN, + ACTIONS(2126), 1, + anon_sym_EQ, + STATE(1059), 1, + sym_parameter_list, + STATE(1000), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1677), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1675), 36, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [14036] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1001), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1483), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1485), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [14102] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1002), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1487), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1489), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [14168] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1003), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(95), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(89), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [14234] = 31, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2128), 1, + anon_sym_RBRACK, + STATE(988), 1, + aux_sym_list_repeat1, + STATE(1535), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1004), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [14350] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1005), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(95), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(89), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [14416] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1006), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1495), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1497), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [14482] = 31, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2130), 1, + anon_sym_RBRACK, + STATE(988), 1, + aux_sym_list_repeat1, + STATE(1565), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1007), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [14598] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1008), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1499), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1501), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [14664] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + STATE(662), 1, + sym__juxt_argument_list, + STATE(962), 1, + sym_number_literal, + STATE(1093), 1, + sym__expression, + STATE(2091), 1, + sym_map_item, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1009), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [14782] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1010), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1507), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1509), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [14848] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + STATE(962), 1, + sym_number_literal, + STATE(992), 1, + aux_sym_argument_list_repeat1, + STATE(1524), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2575), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1011), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [14966] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1012), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1511), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1513), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [15032] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1730), 1, + anon_sym_LPAREN, + ACTIONS(2132), 1, + anon_sym_EQ, + STATE(997), 1, + sym_parameter_list, + STATE(1013), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1699), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1697), 36, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [15104] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + STATE(962), 1, + sym_number_literal, + STATE(992), 1, + aux_sym_argument_list_repeat1, + STATE(1544), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2585), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1014), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [15222] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1015), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(73), 22, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_as, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_instanceof, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + sym_identifier, + anon_sym_LBRACK, + anon_sym_QMARK, + ACTIONS(75), 26, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK_RBRACK, + [15288] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + STATE(962), 1, + sym_number_literal, + STATE(992), 1, + aux_sym_argument_list_repeat1, + STATE(1528), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2591), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1016), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [15406] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1017), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1531), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1533), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [15472] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + STATE(962), 1, + sym_number_literal, + STATE(992), 1, + aux_sym_argument_list_repeat1, + STATE(1533), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2571), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1018), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [15590] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1019), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(610), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(608), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [15656] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1730), 1, + anon_sym_LPAREN, + ACTIONS(2134), 1, + anon_sym_EQ, + STATE(1073), 1, + sym_parameter_list, + STATE(1020), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1714), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1712), 36, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [15728] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1021), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1539), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1541), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [15794] = 31, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2136), 1, + anon_sym_RBRACK, + STATE(988), 1, + aux_sym_list_repeat1, + STATE(1522), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1022), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [15910] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1023), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1543), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1545), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [15976] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1024), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1547), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1549), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [16042] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + STATE(962), 1, + sym_number_literal, + STATE(992), 1, + aux_sym_argument_list_repeat1, + STATE(1536), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2556), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1025), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [16160] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + STATE(962), 1, + sym_number_literal, + STATE(992), 1, + aux_sym_argument_list_repeat1, + STATE(1518), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2599), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1026), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [16278] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1027), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1555), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1557), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [16344] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + STATE(962), 1, + sym_number_literal, + STATE(992), 1, + aux_sym_argument_list_repeat1, + STATE(1519), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2540), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1028), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [16462] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1029), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1563), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1565), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [16528] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1030), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1567), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1569), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [16594] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + STATE(962), 1, + sym_number_literal, + STATE(992), 1, + aux_sym_argument_list_repeat1, + STATE(1547), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2509), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1031), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [16712] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1032), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1575), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1577), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [16778] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + STATE(962), 1, + sym_number_literal, + STATE(992), 1, + aux_sym_argument_list_repeat1, + STATE(1551), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2553), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1033), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [16896] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1034), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1579), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1581), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [16962] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1035), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1527), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1529), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [17028] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + STATE(962), 1, + sym_number_literal, + STATE(992), 1, + aux_sym_argument_list_repeat1, + STATE(1561), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2534), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1036), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [17146] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1037), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1595), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1597), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [17212] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1038), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1599), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1601), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [17278] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1039), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(95), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(89), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [17344] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1040), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1603), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1605), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [17410] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1041), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(95), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(89), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [17476] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1042), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1607), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1609), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [17542] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1043), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1611), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1613), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [17608] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1044), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1615), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1617), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [17674] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1045), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1619), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1621), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [17740] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1046), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1623), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1625), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [17806] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1047), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1471), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1473), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [17872] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1048), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1631), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1633), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [17938] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1049), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(279), 22, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_as, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_instanceof, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + sym_identifier, + anon_sym_LBRACK, + anon_sym_QMARK, + ACTIONS(281), 26, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK_RBRACK, + [18004] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1050), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1475), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1477), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [18070] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1051), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1551), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1553), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [18136] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1052), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1559), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1561), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [18202] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1053), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1571), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1573), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [18268] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1054), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(95), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(89), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [18334] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + STATE(962), 1, + sym_number_literal, + STATE(992), 1, + aux_sym_argument_list_repeat1, + STATE(1568), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2574), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1055), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [18452] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + STATE(962), 1, + sym_number_literal, + STATE(992), 1, + aux_sym_argument_list_repeat1, + STATE(1548), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2592), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1056), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [18570] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + ACTIONS(2138), 1, + sym_identifier, + ACTIONS(2140), 1, + anon_sym_LPAREN, + STATE(319), 1, + sym__expression, + STATE(356), 1, + sym_number_literal, + STATE(1089), 1, + sym_map_item, + STATE(1280), 1, + sym__juxt_argument_list, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1057), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [18688] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + STATE(962), 1, + sym_number_literal, + STATE(992), 1, + aux_sym_argument_list_repeat1, + STATE(1531), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2601), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1058), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [18806] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + STATE(731), 1, + sym_closure, + STATE(1059), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1463), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1465), 36, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [18876] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1730), 1, + anon_sym_LPAREN, + ACTIONS(2142), 1, + anon_sym_EQ, + STATE(1066), 1, + sym_parameter_list, + STATE(1060), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1665), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1663), 36, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [18948] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1730), 1, + anon_sym_LPAREN, + ACTIONS(2144), 1, + anon_sym_EQ, + STATE(1066), 1, + sym_parameter_list, + STATE(1061), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1720), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1718), 36, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [19020] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1062), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(77), 22, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_as, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_instanceof, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + sym_identifier, + anon_sym_LBRACK, + anon_sym_QMARK, + ACTIONS(79), 26, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK_RBRACK, + [19086] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + STATE(962), 1, + sym_number_literal, + STATE(992), 1, + aux_sym_argument_list_repeat1, + STATE(1552), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2503), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1063), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [19204] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1064), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(81), 22, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_as, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_instanceof, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + sym_identifier, + anon_sym_LBRACK, + anon_sym_QMARK, + ACTIONS(83), 26, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK_RBRACK, + [19270] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + STATE(962), 1, + sym_number_literal, + STATE(992), 1, + aux_sym_argument_list_repeat1, + STATE(1563), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2587), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1065), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [19388] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + STATE(746), 1, + sym_closure, + STATE(1066), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1439), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1441), 36, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [19458] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1067), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(69), 22, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_as, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_instanceof, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + sym_identifier, + anon_sym_LBRACK, + anon_sym_QMARK, + ACTIONS(71), 26, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK_RBRACK, + [19524] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1068), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(97), 4, + anon_sym_DOT, + anon_sym_LT, + sym_identifier, + anon_sym_LBRACK, + ACTIONS(101), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK_RBRACK, + ACTIONS(99), 18, + anon_sym_STAR, + anon_sym_as, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_instanceof, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(93), 22, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + [19594] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2146), 1, + anon_sym_catch, + ACTIONS(2148), 1, + anon_sym_finally, + STATE(1069), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1535), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1537), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [19664] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + STATE(737), 1, + sym__juxt_argument_list, + STATE(962), 1, + sym_number_literal, + STATE(1511), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2330), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1070), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [19782] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + STATE(962), 1, + sym_number_literal, + STATE(992), 1, + aux_sym_argument_list_repeat1, + STATE(1562), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2516), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1071), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [19900] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1072), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(85), 22, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_as, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + anon_sym_instanceof, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_PIPE, + sym_identifier, + anon_sym_LBRACK, + anon_sym_QMARK, + ACTIONS(87), 26, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + anon_sym_GT_EQ, + anon_sym_BANGinstanceof, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_STAR_STAR, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK_RBRACK, + [19966] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + STATE(720), 1, + sym_closure, + STATE(1073), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1459), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1461), 36, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [20036] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + ACTIONS(2150), 1, + sym_identifier, + ACTIONS(2152), 1, + anon_sym_LPAREN, + STATE(152), 1, + sym__expression, + STATE(177), 1, + sym_number_literal, + STATE(737), 1, + sym__juxt_argument_list, + STATE(803), 1, + sym_map_item, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1074), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [20154] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + ACTIONS(2154), 1, + sym_identifier, + ACTIONS(2156), 1, + anon_sym_LPAREN, + STATE(243), 1, + sym__expression, + STATE(246), 1, + sym_number_literal, + STATE(926), 1, + sym_map_item, + STATE(1087), 1, + sym__juxt_argument_list, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1075), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [20272] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1076), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(95), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(89), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [20338] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2158), 1, + anon_sym_finally, + STATE(1077), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1611), 11, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1613), 36, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [20406] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1078), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1515), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1517), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [20472] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2160), 1, + anon_sym_else, + STATE(1079), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1471), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1473), 38, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [20540] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1080), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1503), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1505), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [20606] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + STATE(962), 1, + sym_number_literal, + STATE(992), 1, + aux_sym_argument_list_repeat1, + STATE(1532), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + STATE(2603), 1, + sym_map_item, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1081), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [20724] = 31, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2162), 1, + anon_sym_RBRACK, + STATE(988), 1, + aux_sym_list_repeat1, + STATE(1527), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1082), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [20840] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1083), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1535), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1537), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [20906] = 31, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2164), 1, + anon_sym_RBRACK, + STATE(988), 1, + aux_sym_list_repeat1, + STATE(1523), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1084), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [21022] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1730), 1, + anon_sym_LPAREN, + ACTIONS(2166), 1, + anon_sym_EQ, + STATE(1073), 1, + sym_parameter_list, + STATE(1085), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1708), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1706), 36, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [21094] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1086), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(95), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(89), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [21160] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1087), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1491), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1493), 39, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [21226] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1088), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + ACTIONS(369), 8, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_finally, + [21326] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(760), 1, + anon_sym_COMMA, + STATE(1090), 1, + aux_sym__juxt_argument_list_repeat1, + STATE(1089), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(289), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(287), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [21396] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(760), 1, + anon_sym_COMMA, + STATE(974), 1, + aux_sym__juxt_argument_list_repeat1, + STATE(1090), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1689), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1687), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [21466] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1091), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + ACTIONS(507), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [21565] = 30, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2168), 1, + anon_sym_SEMI, + STATE(1731), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1092), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [21678] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + STATE(2143), 1, + aux_sym__juxt_argument_list_repeat1, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1093), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + ACTIONS(289), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [21779] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1094), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + ACTIONS(485), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [21878] = 31, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + STATE(685), 1, + sym_map_item, + STATE(962), 1, + sym_number_literal, + STATE(1125), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1095), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [21993] = 31, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + ACTIONS(2060), 1, + sym_identifier, + ACTIONS(2062), 1, + anon_sym_LPAREN, + STATE(299), 1, + sym_number_literal, + STATE(333), 1, + sym__expression, + STATE(685), 1, + sym_map_item, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1096), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [22108] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(944), 1, + anon_sym_LBRACE, + STATE(1144), 1, + sym_closure, + STATE(1097), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1463), 8, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1465), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [22177] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(798), 1, + anon_sym_COMMA, + STATE(1117), 1, + aux_sym__juxt_argument_list_repeat1, + STATE(1098), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(289), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(287), 36, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [22246] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1099), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + ACTIONS(497), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [22345] = 31, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + ACTIONS(2150), 1, + sym_identifier, + ACTIONS(2152), 1, + anon_sym_LPAREN, + STATE(177), 1, + sym_number_literal, + STATE(182), 1, + sym__expression, + STATE(765), 1, + sym_map_item, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1100), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [22460] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1101), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + ACTIONS(489), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [22559] = 30, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2170), 1, + anon_sym_SEMI, + STATE(1678), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1102), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [22672] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2172), 1, + anon_sym_as, + STATE(1103), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1645), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1647), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [22739] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2174), 1, + anon_sym_else, + STATE(1104), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1471), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1473), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [22806] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(944), 1, + anon_sym_LBRACE, + STATE(1435), 1, + sym_closure, + STATE(1105), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1459), 8, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1461), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [22875] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1106), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + ACTIONS(475), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [22974] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2176), 1, + anon_sym_COMMA, + STATE(1107), 3, + sym_comment, + sym_groovy_doc, + aux_sym__juxt_argument_list_repeat1, + ACTIONS(377), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(375), 36, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [23041] = 31, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + ACTIONS(1986), 1, + sym_identifier, + ACTIONS(1988), 1, + anon_sym_LPAREN, + STATE(69), 1, + sym_number_literal, + STATE(93), 1, + sym__expression, + STATE(685), 1, + sym_map_item, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1108), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [23156] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1109), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + ACTIONS(519), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [23255] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2179), 1, + anon_sym_as, + STATE(1110), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1639), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1641), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [23322] = 25, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2181), 1, + anon_sym_COMMA, + STATE(2140), 1, + aux_sym__juxt_argument_list_repeat1, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1111), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(289), 5, + anon_sym_SEMI, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [23425] = 31, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1839), 1, + sym_identifier, + ACTIONS(1841), 1, + anon_sym_LPAREN, + STATE(765), 1, + sym_map_item, + STATE(962), 1, + sym_number_literal, + STATE(1125), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1112), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [23540] = 30, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2183), 1, + anon_sym_SEMI, + STATE(1727), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1113), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [23653] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2185), 1, + anon_sym_finally, + STATE(1114), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1611), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1613), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [23720] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1115), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + ACTIONS(503), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [23819] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1116), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + ACTIONS(493), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [23918] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(798), 1, + anon_sym_COMMA, + STATE(1107), 1, + aux_sym__juxt_argument_list_repeat1, + STATE(1117), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1689), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1687), 36, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [23987] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1118), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + ACTIONS(511), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [24086] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(944), 1, + anon_sym_LBRACE, + STATE(1349), 1, + sym_closure, + STATE(1119), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1435), 8, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1437), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [24155] = 31, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + ACTIONS(1992), 1, + sym_identifier, + ACTIONS(1994), 1, + anon_sym_LPAREN, + STATE(411), 1, + sym_number_literal, + STATE(440), 1, + sym__expression, + STATE(765), 1, + sym_map_item, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1120), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [24270] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(944), 1, + anon_sym_LBRACE, + STATE(1332), 1, + sym_closure, + STATE(1121), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1439), 8, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1441), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [24339] = 31, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + ACTIONS(2154), 1, + sym_identifier, + ACTIONS(2156), 1, + anon_sym_LPAREN, + STATE(246), 1, + sym_number_literal, + STATE(297), 1, + sym__expression, + STATE(958), 1, + sym_map_item, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1122), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [24454] = 31, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + ACTIONS(2138), 1, + sym_identifier, + ACTIONS(2140), 1, + anon_sym_LPAREN, + STATE(356), 1, + sym_number_literal, + STATE(368), 1, + sym__expression, + STATE(1127), 1, + sym_map_item, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1123), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 9, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_ternary_op, + sym_unary_op, + [24569] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1124), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + ACTIONS(515), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [24668] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1125), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + ACTIONS(377), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [24767] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1126), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + ACTIONS(481), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [24866] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1127), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(377), 10, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(375), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [24931] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1128), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(279), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + anon_sym_LBRACK, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(281), 30, + anon_sym_STAR_COLON, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LPAREN, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_LBRACK_RBRACK, + anon_sym_TILDE, + anon_sym_BANG, + [24995] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(148), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1129), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [25105] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(192), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1130), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [25215] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + STATE(99), 1, + sym__expression, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1131), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [25325] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1132), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1499), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1501), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [25389] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2187), 1, + anon_sym_else, + STATE(1133), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1471), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1473), 36, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [25455] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1642), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1134), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [25565] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(195), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1135), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [25675] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(910), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1136), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [25785] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + STATE(87), 1, + sym__expression, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1137), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [25895] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1722), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1138), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [26005] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1139), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1567), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1569), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [26069] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(191), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1140), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [26179] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(190), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1141), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [26289] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1645), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1142), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [26399] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1088), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1143), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [26509] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1144), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1575), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1577), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [26573] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + STATE(123), 1, + sym__expression, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1145), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [26683] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1116), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1146), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [26793] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + STATE(91), 1, + sym__expression, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1147), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [26903] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1148), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(95), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(89), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [26967] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + STATE(127), 1, + sym__expression, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1149), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [27077] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(985), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1150), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [27187] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1151), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1579), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1581), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [27251] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(196), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1152), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [27361] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(189), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1153), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [27471] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2189), 1, + sym_identifier, + ACTIONS(2196), 1, + anon_sym_DOT, + ACTIONS(2202), 1, + anon_sym_LT, + ACTIONS(2204), 1, + anon_sym_LPAREN, + ACTIONS(2206), 1, + anon_sym_LBRACK, + ACTIONS(2208), 1, + anon_sym_LBRACK_RBRACK, + STATE(438), 1, + sym_argument_list, + ACTIONS(2200), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1154), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2194), 10, + anon_sym_STAR_COLON, + anon_sym_LBRACE, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(2192), 13, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2198), 14, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + [27553] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(871), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1155), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [27663] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + STATE(394), 1, + sym__expression, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1156), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [27773] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(870), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1157), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [27883] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(868), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1158), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [27993] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(882), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1159), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [28103] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(872), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1160), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [28213] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(873), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1161), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [28323] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(876), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1162), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [28433] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(874), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1163), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [28543] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(883), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1164), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [28653] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(885), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1165), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [28763] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1684), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1166), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [28873] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(886), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1167), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [28983] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(887), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1168), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [29093] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(889), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1169), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [29203] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(194), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1170), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [29313] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + STATE(102), 1, + sym__expression, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1171), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [29423] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + STATE(410), 1, + sym__expression, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1172), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [29533] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + STATE(400), 1, + sym__expression, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1173), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [29643] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + STATE(399), 1, + sym__expression, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1174), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [29753] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + STATE(398), 1, + sym__expression, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1175), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [29863] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + STATE(395), 1, + sym__expression, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1176), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [29973] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + STATE(390), 1, + sym__expression, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1177), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [30083] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + STATE(388), 1, + sym__expression, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1178), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [30193] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + STATE(387), 1, + sym__expression, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1179), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [30303] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + STATE(401), 1, + sym__expression, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1180), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [30413] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + STATE(361), 1, + sym__expression, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1181), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [30523] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + STATE(362), 1, + sym__expression, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1182), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [30633] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + STATE(363), 1, + sym__expression, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1183), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [30743] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + STATE(365), 1, + sym__expression, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1184), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [30853] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + STATE(133), 1, + sym__expression, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1185), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [30963] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + STATE(119), 1, + sym__expression, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1186), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [31073] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + STATE(165), 1, + sym__expression, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1187), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [31183] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + STATE(323), 1, + sym__expression, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1188), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [31293] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + STATE(169), 1, + sym__expression, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1189), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [31403] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(804), 1, + sym_identifier, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(826), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + STATE(341), 1, + sym__expression, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1190), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [31513] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + STATE(367), 1, + sym__expression, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1191), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [31623] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + STATE(116), 1, + sym__expression, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1192), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [31733] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + STATE(106), 1, + sym__expression, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1193), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [31843] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + STATE(104), 1, + sym__expression, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1194), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [31953] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + STATE(108), 1, + sym__expression, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1195), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [32063] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(188), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1196), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [32173] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + STATE(92), 1, + sym__expression, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1197), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [32283] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + STATE(94), 1, + sym__expression, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1198), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [32393] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(916), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1199), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [32503] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + STATE(83), 1, + sym__expression, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1200), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [32613] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + STATE(103), 1, + sym__expression, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1201), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [32723] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + STATE(110), 1, + sym__expression, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1202), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [32833] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + STATE(435), 1, + sym__expression, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1203), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [32943] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + STATE(434), 1, + sym__expression, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1204), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [33053] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1709), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1205), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [33163] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + STATE(111), 1, + sym__expression, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1206), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [33273] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + STATE(371), 1, + sym__expression, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1207), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [33383] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1702), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1208), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [33493] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1700), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1209), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [33603] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + STATE(433), 1, + sym__expression, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1210), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [33713] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1692), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1211), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [33823] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + STATE(431), 1, + sym__expression, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1212), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [33933] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + STATE(424), 1, + sym__expression, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1213), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [34043] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + STATE(423), 1, + sym__expression, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1214), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [34153] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1118), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1215), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [34263] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1721), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1216), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [34373] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + STATE(419), 1, + sym__expression, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1217), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [34483] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1674), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1218), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [34593] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + STATE(444), 1, + sym__expression, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1219), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [34703] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + STATE(381), 1, + sym__expression, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1220), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [34813] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1667), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1221), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [34923] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1222), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(610), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(608), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [34987] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1620), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1223), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [35097] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1663), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1224), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [35207] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + STATE(373), 1, + sym__expression, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1225), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [35317] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + STATE(385), 1, + sym__expression, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1226), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [35427] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(804), 1, + sym_identifier, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(826), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + STATE(325), 1, + sym__expression, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1227), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [35537] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(804), 1, + sym_identifier, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(826), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + STATE(338), 1, + sym__expression, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1228), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [35647] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1637), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1229), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [35757] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1230), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(97), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + anon_sym_LBRACK, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(101), 30, + anon_sym_STAR_COLON, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LPAREN, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_LBRACK_RBRACK, + anon_sym_TILDE, + anon_sym_BANG, + [35821] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1091), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1231), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [35931] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1232), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1659), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1661), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [35995] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(176), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1233), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [36105] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(804), 1, + sym_identifier, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(826), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + STATE(309), 1, + sym__expression, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1234), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [36215] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(804), 1, + sym_identifier, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(826), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + STATE(351), 1, + sym__expression, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1235), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [36325] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(804), 1, + sym_identifier, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(826), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + STATE(358), 1, + sym__expression, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1236), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [36435] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(804), 1, + sym_identifier, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(826), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + STATE(355), 1, + sym__expression, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1237), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [36545] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(804), 1, + sym_identifier, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(826), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + STATE(349), 1, + sym__expression, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1238), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [36655] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1626), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1239), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [36765] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(804), 1, + sym_identifier, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(826), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + STATE(308), 1, + sym__expression, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1240), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [36875] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1625), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1241), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [36985] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1669), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1242), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [37095] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + STATE(425), 1, + sym__expression, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1243), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [37205] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(804), 1, + sym_identifier, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(826), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + STATE(274), 1, + sym__expression, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1244), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [37315] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2189), 1, + sym_identifier, + ACTIONS(2196), 1, + anon_sym_DOT, + ACTIONS(2202), 1, + anon_sym_LT, + ACTIONS(2204), 1, + anon_sym_LPAREN, + ACTIONS(2206), 1, + anon_sym_LBRACK, + ACTIONS(2208), 1, + anon_sym_LBRACK_RBRACK, + STATE(438), 1, + sym_argument_list, + ACTIONS(2200), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1245), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2194), 10, + anon_sym_STAR_COLON, + anon_sym_LBRACE, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(2192), 13, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2210), 14, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + [37397] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1246), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1595), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1597), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [37461] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + STATE(389), 1, + sym__expression, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1247), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [37571] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + STATE(391), 1, + sym__expression, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1248), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [37681] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1676), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1249), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [37791] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1250), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1599), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1601), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [37855] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1572), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1251), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [37965] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1730), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1252), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [38075] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1583), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1253), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [38185] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1058), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1072), 1, + anon_sym_LPAREN, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + STATE(463), 1, + sym__expression, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1254), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [38295] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1106), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1255), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [38405] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1058), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1072), 1, + anon_sym_LPAREN, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + STATE(471), 1, + sym__expression, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1256), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [38515] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1593), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1257), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [38625] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2189), 1, + sym_identifier, + ACTIONS(2196), 1, + anon_sym_DOT, + ACTIONS(2202), 1, + anon_sym_LT, + ACTIONS(2206), 1, + anon_sym_LBRACK, + ACTIONS(2208), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(2216), 1, + anon_sym_LPAREN, + STATE(479), 1, + sym_argument_list, + ACTIONS(2214), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1258), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2194), 10, + anon_sym_STAR_COLON, + anon_sym_LBRACE, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(2192), 13, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2212), 14, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + [38707] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + STATE(374), 1, + sym__expression, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1259), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [38817] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(804), 1, + sym_identifier, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(826), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + STATE(279), 1, + sym__expression, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1260), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [38927] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(804), 1, + sym_identifier, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(826), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + STATE(278), 1, + sym__expression, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1261), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [39037] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(804), 1, + sym_identifier, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(826), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + STATE(276), 1, + sym__expression, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1262), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [39147] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(804), 1, + sym_identifier, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(826), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + STATE(275), 1, + sym__expression, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1263), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [39257] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(804), 1, + sym_identifier, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(826), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + STATE(287), 1, + sym__expression, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1264), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [39367] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(804), 1, + sym_identifier, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(826), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + STATE(269), 1, + sym__expression, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1265), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [39477] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(804), 1, + sym_identifier, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(826), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + STATE(270), 1, + sym__expression, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1266), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [39587] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(804), 1, + sym_identifier, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(826), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + STATE(272), 1, + sym__expression, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1267), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [39697] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(804), 1, + sym_identifier, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(826), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + STATE(273), 1, + sym__expression, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1268), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [39807] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(804), 1, + sym_identifier, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(826), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + STATE(285), 1, + sym__expression, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1269), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [39917] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(804), 1, + sym_identifier, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(826), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + STATE(267), 1, + sym__expression, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1270), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [40027] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(804), 1, + sym_identifier, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(826), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + STATE(289), 1, + sym__expression, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1271), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [40137] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(804), 1, + sym_identifier, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(826), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + STATE(293), 1, + sym__expression, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1272), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [40247] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1594), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1273), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [40357] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1595), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1274), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [40467] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1275), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(95), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(89), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [40531] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + STATE(375), 1, + sym__expression, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1276), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [40641] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + STATE(340), 1, + sym__expression, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1277), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [40751] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1278), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1603), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1605), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [40815] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(804), 1, + sym_identifier, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(826), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + STATE(296), 1, + sym__expression, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1279), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [40925] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1280), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1491), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1493), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [40989] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1579), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1281), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [41099] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1619), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1282), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [41209] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1283), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(95), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(89), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [41273] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + STATE(324), 1, + sym__expression, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1284), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [41383] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1285), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(275), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + anon_sym_LBRACK, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(277), 30, + anon_sym_STAR_COLON, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LPAREN, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_LBRACK_RBRACK, + anon_sym_TILDE, + anon_sym_BANG, + [41447] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1286), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1607), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1609), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [41511] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + STATE(383), 1, + sym__expression, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1287), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [41621] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1672), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1288), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [41731] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1586), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1289), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [41841] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1591), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1290), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [41951] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + STATE(384), 1, + sym__expression, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1291), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [42061] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1708), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1292), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [42171] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1677), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1293), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [42281] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1294), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1615), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1617), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [42345] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + STATE(326), 1, + sym__expression, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1295), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [42455] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + STATE(407), 1, + sym__expression, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1296), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [42565] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1712), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1297), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [42675] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1714), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1298), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [42785] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1299), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1619), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1621), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [42849] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + STATE(314), 1, + sym__expression, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1300), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [42959] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + STATE(313), 1, + sym__expression, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1301), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [43069] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1058), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1072), 1, + anon_sym_LPAREN, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + STATE(472), 1, + sym__expression, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1302), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [43179] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1611), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1303), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [43289] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1739), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1304), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [43399] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1698), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1305), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [43509] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1058), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1072), 1, + anon_sym_LPAREN, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + STATE(449), 1, + sym__expression, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1306), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [43619] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(804), 1, + sym_identifier, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(826), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + STATE(277), 1, + sym__expression, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1307), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [43729] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + STATE(117), 1, + sym__expression, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1308), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [43839] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1309), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1471), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1473), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [43903] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(164), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1310), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [44013] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1704), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1311), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [44123] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1058), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1072), 1, + anon_sym_LPAREN, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + STATE(468), 1, + sym__expression, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1312), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [44233] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(804), 1, + sym_identifier, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(826), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + STATE(294), 1, + sym__expression, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1313), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [44343] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(163), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1314), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [44453] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1058), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1072), 1, + anon_sym_LPAREN, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + STATE(466), 1, + sym__expression, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1315), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [44563] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1729), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1316), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [44673] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1728), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1317), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [44783] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1725), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1318), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [44893] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(804), 1, + sym_identifier, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(826), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + STATE(315), 1, + sym__expression, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1319), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [45003] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(161), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1320), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [45113] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1321), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1563), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1565), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [45177] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2189), 1, + sym_identifier, + ACTIONS(2196), 1, + anon_sym_DOT, + ACTIONS(2202), 1, + anon_sym_LT, + ACTIONS(2204), 1, + anon_sym_LPAREN, + ACTIONS(2206), 1, + anon_sym_LBRACK, + ACTIONS(2208), 1, + anon_sym_LBRACK_RBRACK, + STATE(438), 1, + sym_argument_list, + ACTIONS(2200), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1322), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2194), 10, + anon_sym_STAR_COLON, + anon_sym_LBRACE, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(2192), 13, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2218), 14, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + [45259] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + STATE(396), 1, + sym__expression, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1323), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [45369] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1724), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1324), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [45479] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1733), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1325), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [45589] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1686), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1326), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [45699] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1690), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1327), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [45809] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + STATE(327), 1, + sym__expression, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1328), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [45919] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(158), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1329), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [46029] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(136), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1330), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [46139] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2189), 1, + sym_identifier, + ACTIONS(2196), 1, + anon_sym_DOT, + ACTIONS(2202), 1, + anon_sym_LT, + ACTIONS(2206), 1, + anon_sym_LBRACK, + ACTIONS(2208), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(2216), 1, + anon_sym_LPAREN, + STATE(479), 1, + sym_argument_list, + ACTIONS(2222), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1331), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2194), 10, + anon_sym_STAR_COLON, + anon_sym_LBRACE, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(2192), 13, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2220), 14, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + [46221] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1332), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1631), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1633), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [46285] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(804), 1, + sym_identifier, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(826), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + STATE(292), 1, + sym__expression, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1333), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [46395] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1688), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1334), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [46505] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1649), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1335), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [46615] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(151), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1336), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [46725] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1651), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1337), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [46835] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(804), 1, + sym_identifier, + ACTIONS(810), 1, + anon_sym_STAR, + ACTIONS(812), 1, + anon_sym_STAR_COLON, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(826), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(846), 1, + anon_sym_new, + STATE(291), 1, + sym__expression, + STATE(2248), 1, + sym__prefix_expression, + ACTIONS(814), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(820), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(824), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(830), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(844), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1338), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(832), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(206), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(298), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [46945] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1339), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1475), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1477), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [47009] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1630), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1340), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [47119] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + STATE(366), 1, + sym__expression, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1341), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [47229] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(932), 1, + anon_sym_STAR, + ACTIONS(934), 1, + anon_sym_STAR_COLON, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(948), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(968), 1, + anon_sym_new, + STATE(421), 1, + sym__expression, + STATE(2196), 1, + sym__prefix_expression, + ACTIONS(936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(946), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(952), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(966), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1342), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(954), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(244), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(364), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [47339] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(150), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1343), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [47449] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(149), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1344), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [47559] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1633), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1345), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [47669] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1618), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1346), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [47779] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1516), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1347), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [47889] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + STATE(172), 1, + sym__expression, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1348), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [47999] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1349), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1507), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1509), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [48063] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1623), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1350), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [48173] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1600), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1351), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [48283] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(147), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1352), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [48393] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1603), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1353), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [48503] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + STATE(173), 1, + sym__expression, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1354), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [48613] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1592), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1355), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [48723] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1058), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1072), 1, + anon_sym_LPAREN, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + STATE(432), 1, + sym__expression, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1356), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [48833] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(144), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1357), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [48943] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1584), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1358), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [49053] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1058), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1072), 1, + anon_sym_LPAREN, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + STATE(416), 1, + sym__expression, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1359), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [49163] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1058), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1072), 1, + anon_sym_LPAREN, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + STATE(459), 1, + sym__expression, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1360), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [49273] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + STATE(174), 1, + sym__expression, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1361), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [49383] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(143), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1362), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [49493] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1574), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1363), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [49603] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(162), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1364), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [49713] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + STATE(175), 1, + sym__expression, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1365), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [49823] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1366), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1503), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1505), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [49887] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + STATE(155), 1, + sym__expression, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1367), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [49997] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1368), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1515), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1517), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [50061] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + STATE(353), 1, + sym__expression, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1369), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [50171] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + STATE(157), 1, + sym__expression, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1370), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [50281] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1371), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(95), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(89), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [50345] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1606), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1372), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [50455] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1373), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1551), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1553), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [50519] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1635), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1374), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [50629] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1115), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1375), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [50739] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(183), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1376), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [50849] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1636), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1377), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [50959] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1058), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1072), 1, + anon_sym_LPAREN, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + STATE(473), 1, + sym__expression, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1378), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [51069] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1679), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1379), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [51179] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1058), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1072), 1, + anon_sym_LPAREN, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + STATE(470), 1, + sym__expression, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1380), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [51289] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1639), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1381), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [51399] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1382), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1559), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1561), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [51463] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1383), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1555), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1557), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [51527] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1689), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1384), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [51637] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + STATE(171), 1, + sym__expression, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1385), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [51747] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + STATE(328), 1, + sym__expression, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1386), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [51857] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_STAR, + ACTIONS(894), 1, + anon_sym_STAR_COLON, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(928), 1, + anon_sym_new, + STATE(146), 1, + sym__expression, + STATE(2287), 1, + sym__prefix_expression, + ACTIONS(896), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(902), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(906), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(912), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(926), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1387), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(914), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(73), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(107), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [51967] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1058), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1072), 1, + anon_sym_LPAREN, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + STATE(428), 1, + sym__expression, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1388), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [52077] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1647), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1389), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [52187] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1390), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1571), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1573), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [52251] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + STATE(329), 1, + sym__expression, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1391), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [52361] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + STATE(403), 1, + sym__expression, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1392), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [52471] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + STATE(330), 1, + sym__expression, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1393), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [52581] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1666), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1394), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [52691] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1657), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1395), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [52801] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1707), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1396), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [52911] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1732), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1397), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [53021] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1682), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1398), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [53131] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + STATE(331), 1, + sym__expression, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1399), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [53241] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1735), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1400), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [53351] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + STATE(332), 1, + sym__expression, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1401), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [53461] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1691), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1402), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [53571] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1640), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1403), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [53681] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + STATE(334), 1, + sym__expression, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1404), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [53791] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1614), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1405), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [53901] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(185), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1406), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [54011] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + STATE(335), 1, + sym__expression, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1407), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [54121] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1576), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1408), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [54231] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1582), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1409), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [54341] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1613), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1410), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [54451] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1615), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1411), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [54561] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1616), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1412), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [54671] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2189), 1, + sym_identifier, + ACTIONS(2196), 1, + anon_sym_DOT, + ACTIONS(2202), 1, + anon_sym_LT, + ACTIONS(2206), 1, + anon_sym_LBRACK, + ACTIONS(2208), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(2228), 1, + anon_sym_LPAREN, + STATE(492), 1, + sym_argument_list, + ACTIONS(2226), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1413), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2194), 10, + anon_sym_STAR_COLON, + anon_sym_LBRACE, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(2192), 13, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2224), 14, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + [54753] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1058), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1072), 1, + anon_sym_LPAREN, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + STATE(458), 1, + sym__expression, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1414), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [54863] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1632), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1415), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [54973] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1571), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1416), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [55083] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1417), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1527), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1529), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [55147] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + STATE(336), 1, + sym__expression, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1418), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [55257] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1419), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1547), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1549), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [55321] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1740), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1420), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [55431] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1573), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1421), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [55541] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1602), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1422), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [55651] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1423), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1627), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1629), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [55715] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1058), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1072), 1, + anon_sym_LPAREN, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + STATE(442), 1, + sym__expression, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1424), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [55825] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1716), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1425), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [55935] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1665), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1426), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [56045] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1726), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1427), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [56155] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1668), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1428), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [56265] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1429), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1543), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1545), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [56329] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1058), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1072), 1, + anon_sym_LPAREN, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + STATE(450), 1, + sym__expression, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1430), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [56439] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1058), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1072), 1, + anon_sym_LPAREN, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + STATE(469), 1, + sym__expression, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1431), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [56549] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1673), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1432), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [56659] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1680), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1433), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [56769] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1434), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1587), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1589), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [56833] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1435), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1583), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1585), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [56897] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1436), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1635), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1637), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [56961] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1437), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1591), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1593), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [57025] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1094), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1438), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [57135] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1126), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1439), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [57245] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1589), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1440), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [57355] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1058), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1072), 1, + anon_sym_LPAREN, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + STATE(441), 1, + sym__expression, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1441), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [57465] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1058), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1072), 1, + anon_sym_LPAREN, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + STATE(454), 1, + sym__expression, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1442), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [57575] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1443), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(339), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + anon_sym_LBRACK, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(341), 30, + anon_sym_STAR_COLON, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LPAREN, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_LBRACK_RBRACK, + anon_sym_TILDE, + anon_sym_BANG, + [57639] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1444), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1523), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1525), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [57703] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1445), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1519), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1521), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [57767] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(140), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1446), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [57877] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1655), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1447), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [57987] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1058), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1072), 1, + anon_sym_LPAREN, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + STATE(456), 1, + sym__expression, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1448), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [58097] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + STATE(337), 1, + sym__expression, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1449), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [58207] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1450), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(283), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + anon_sym_LBRACK, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(285), 30, + anon_sym_STAR_COLON, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LPAREN, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_LBRACK_RBRACK, + anon_sym_TILDE, + anon_sym_BANG, + [58271] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1654), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1451), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [58381] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1652), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1452), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [58491] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + STATE(318), 1, + sym__expression, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1453), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [58601] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1454), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(271), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + anon_sym_LBRACK, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(273), 30, + anon_sym_STAR_COLON, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LPAREN, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_LBRACK_RBRACK, + anon_sym_TILDE, + anon_sym_BANG, + [58665] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1629), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1455), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [58775] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1696), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1456), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [58885] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1457), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1479), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1481), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [58949] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1656), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1458), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [59059] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2189), 1, + sym_identifier, + ACTIONS(2196), 1, + anon_sym_DOT, + ACTIONS(2202), 1, + anon_sym_LT, + ACTIONS(2206), 1, + anon_sym_LBRACK, + ACTIONS(2208), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(2234), 1, + anon_sym_LPAREN, + STATE(474), 1, + sym_argument_list, + ACTIONS(2232), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1459), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2194), 10, + anon_sym_STAR_COLON, + anon_sym_LBRACE, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(2192), 13, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2230), 14, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + [59141] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1460), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1483), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1485), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [59205] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1461), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1539), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1541), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [59269] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1462), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1487), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1489), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [59333] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(193), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1463), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [59443] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, + anon_sym_STAR, + ACTIONS(852), 1, + anon_sym_STAR_COLON, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(886), 1, + anon_sym_new, + STATE(348), 1, + sym__expression, + STATE(2240), 1, + sym__prefix_expression, + ACTIONS(854), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(860), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(864), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(870), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(884), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1464), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(872), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(227), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(311), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [59553] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1465), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(95), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(89), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [59617] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1466), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1531), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1533), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [59681] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1467), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(95), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(89), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [59745] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1660), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1468), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [59855] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(187), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1469), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [59965] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1058), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1072), 1, + anon_sym_LPAREN, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + STATE(465), 1, + sym__expression, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1470), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [60075] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1471), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(335), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + anon_sym_LBRACK, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(337), 30, + anon_sym_STAR_COLON, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LPAREN, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_LBRACK_RBRACK, + anon_sym_TILDE, + anon_sym_BANG, + [60139] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(184), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1472), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [60249] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1515), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1473), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [60359] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1664), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1474), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [60469] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1681), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1475), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [60579] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1476), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(343), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + anon_sym_LBRACK, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(345), 30, + anon_sym_STAR_COLON, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LPAREN, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_LBRACK_RBRACK, + anon_sym_TILDE, + anon_sym_BANG, + [60643] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1590), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1477), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [60753] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1710), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1478), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [60863] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1697), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1479), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [60973] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1742), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1480), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [61083] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2189), 1, + sym_identifier, + ACTIONS(2202), 1, + anon_sym_LT, + ACTIONS(2208), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(2236), 1, + anon_sym_DOT, + ACTIONS(2240), 1, + anon_sym_LPAREN, + ACTIONS(2242), 1, + anon_sym_LBRACK, + STATE(3), 1, + sym_argument_list, + ACTIONS(2238), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1481), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2194), 10, + anon_sym_STAR_COLON, + anon_sym_LBRACE, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(2192), 13, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2220), 14, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + [61165] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1683), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1482), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [61275] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1058), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1072), 1, + anon_sym_LPAREN, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + STATE(443), 1, + sym__expression, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1483), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [61385] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(180), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1484), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [61495] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(914), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1485), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [61605] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(918), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1486), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [61715] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(127), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_STAR, + ACTIONS(1106), 1, + anon_sym_STAR_COLON, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1136), 1, + anon_sym_new, + STATE(181), 1, + sym__expression, + STATE(2185), 1, + sym__prefix_expression, + ACTIONS(115), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1112), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1114), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1120), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1134), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1487), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1122), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(126), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(168), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [61825] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1622), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1488), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [61935] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1621), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1489), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [62045] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1490), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1623), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1625), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [62109] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2189), 1, + sym_identifier, + ACTIONS(2196), 1, + anon_sym_DOT, + ACTIONS(2202), 1, + anon_sym_LT, + ACTIONS(2206), 1, + anon_sym_LBRACK, + ACTIONS(2208), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(2216), 1, + anon_sym_LPAREN, + STATE(479), 1, + sym_argument_list, + ACTIONS(2214), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1491), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2194), 10, + anon_sym_STAR_COLON, + anon_sym_LBRACE, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(2192), 13, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2210), 14, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + [62191] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1058), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1072), 1, + anon_sym_LPAREN, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + STATE(445), 1, + sym__expression, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1492), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [62301] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1597), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1493), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [62411] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1058), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1072), 1, + anon_sym_LPAREN, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + STATE(446), 1, + sym__expression, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1494), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [62521] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1058), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1072), 1, + anon_sym_LPAREN, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + STATE(447), 1, + sym__expression, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1495), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [62631] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1058), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1072), 1, + anon_sym_LPAREN, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + STATE(448), 1, + sym__expression, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1496), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [62741] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1497), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1495), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1497), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [62805] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1124), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1498), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [62915] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1109), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1499), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [63025] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1500), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1511), 9, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1513), 37, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_else, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [63089] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1578), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1501), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [63199] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1577), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1502), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [63309] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1058), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1072), 1, + anon_sym_LPAREN, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + STATE(460), 1, + sym__expression, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1503), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [63419] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1601), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1504), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [63529] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1058), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1072), 1, + anon_sym_LPAREN, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + STATE(464), 1, + sym__expression, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1505), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [63639] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1099), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1506), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [63749] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1058), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1072), 1, + anon_sym_LPAREN, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + STATE(417), 1, + sym__expression, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1507), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [63859] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(105), 1, + anon_sym_STAR, + ACTIONS(107), 1, + anon_sym_STAR_COLON, + ACTIONS(137), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_new, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + STATE(1580), 1, + sym__expression, + STATE(2276), 1, + sym__prefix_expression, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(135), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(147), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(165), 2, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(1413), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1508), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(149), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(839), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(911), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [63969] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(1058), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1062), 1, + anon_sym_STAR_COLON, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1072), 1, + anon_sym_LPAREN, + ACTIONS(1074), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(1092), 1, + anon_sym_new, + STATE(461), 1, + sym__expression, + STATE(2289), 1, + sym__prefix_expression, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1066), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1070), 2, + anon_sym_this, + anon_sym_null, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(1090), 2, + anon_sym_TILDE, + anon_sym_BANG, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1509), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(282), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + STATE(452), 10, + sym_access_op, + sym_increment_op, + sym_binary_op, + sym_boolean_literal, + sym_closure, + sym_list, + sym_map, + sym_number_literal, + sym_ternary_op, + sym_unary_op, + [64079] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + STATE(2349), 1, + aux_sym__juxt_argument_list_repeat1, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1510), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(289), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_else, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [64178] = 25, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2244), 1, + anon_sym_COMMA, + STATE(2358), 1, + aux_sym__juxt_argument_list_repeat1, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1511), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(289), 3, + anon_sym_SEMI, + anon_sym_while, + anon_sym_else, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [64279] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2246), 1, + anon_sym_else, + STATE(1512), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1471), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1473), 35, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [64344] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1138), 1, + anon_sym_SEMI, + STATE(1513), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(95), 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(89), 36, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [64409] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1514), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1767), 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(1769), 36, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [64471] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1815), 1, + anon_sym_PLUS, + ACTIONS(1817), 1, + anon_sym_DASH, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1515), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(2248), 3, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RPAREN, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [64568] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1815), 1, + anon_sym_PLUS, + ACTIONS(1817), 1, + anon_sym_DASH, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1516), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(521), 3, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RPAREN, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [64665] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1517), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2250), 8, + ts_builtin_sym_end, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(2252), 35, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_pipeline, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [64726] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2254), 1, + anon_sym_COMMA, + ACTIONS(2256), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1518), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [64822] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2258), 1, + anon_sym_COMMA, + ACTIONS(2260), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1519), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [64918] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2262), 1, + anon_sym_COMMA, + ACTIONS(2264), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1520), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [65014] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2266), 1, + anon_sym_COMMA, + ACTIONS(2268), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1521), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [65110] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2270), 1, + anon_sym_COMMA, + ACTIONS(2272), 1, + anon_sym_RBRACK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1522), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [65206] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2274), 1, + anon_sym_COMMA, + ACTIONS(2276), 1, + anon_sym_RBRACK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1523), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [65302] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2278), 1, + anon_sym_COMMA, + ACTIONS(2280), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1524), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [65398] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2282), 1, + anon_sym_COMMA, + ACTIONS(2284), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1525), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [65494] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2286), 1, + anon_sym_COMMA, + ACTIONS(2288), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1526), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [65590] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2290), 1, + anon_sym_COMMA, + ACTIONS(2292), 1, + anon_sym_RBRACK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1527), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [65686] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2294), 1, + anon_sym_COMMA, + ACTIONS(2296), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1528), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [65782] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2298), 1, + anon_sym_COMMA, + ACTIONS(2300), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1529), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [65878] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2164), 1, + anon_sym_RBRACK, + ACTIONS(2302), 1, + anon_sym_COMMA, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1530), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [65974] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2304), 1, + anon_sym_COMMA, + ACTIONS(2306), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1531), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [66070] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2308), 1, + anon_sym_COMMA, + ACTIONS(2310), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1532), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [66166] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2312), 1, + anon_sym_COMMA, + ACTIONS(2314), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1533), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [66262] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2316), 1, + anon_sym_COMMA, + ACTIONS(2318), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1534), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [66358] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2320), 1, + anon_sym_COMMA, + ACTIONS(2322), 1, + anon_sym_RBRACK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1535), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [66454] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2324), 1, + anon_sym_COMMA, + ACTIONS(2326), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1536), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [66550] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2328), 1, + anon_sym_COMMA, + ACTIONS(2330), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1537), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [66646] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2332), 1, + anon_sym_COMMA, + ACTIONS(2334), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1538), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [66742] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2336), 1, + anon_sym_COMMA, + ACTIONS(2338), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1539), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [66838] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2340), 1, + anon_sym_COMMA, + ACTIONS(2342), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1540), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [66934] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2344), 1, + anon_sym_COMMA, + ACTIONS(2346), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1541), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [67030] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2128), 1, + anon_sym_RBRACK, + ACTIONS(2348), 1, + anon_sym_COMMA, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1542), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [67126] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2350), 1, + anon_sym_COMMA, + ACTIONS(2352), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1543), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [67222] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2354), 1, + anon_sym_COMMA, + ACTIONS(2356), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1544), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [67318] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2358), 1, + anon_sym_COMMA, + ACTIONS(2360), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1545), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [67414] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2362), 1, + anon_sym_COMMA, + ACTIONS(2364), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1546), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [67510] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2366), 1, + anon_sym_COMMA, + ACTIONS(2368), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1547), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [67606] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2370), 1, + anon_sym_COMMA, + ACTIONS(2372), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1548), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [67702] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2136), 1, + anon_sym_RBRACK, + ACTIONS(2374), 1, + anon_sym_COMMA, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1549), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [67798] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2376), 1, + anon_sym_COMMA, + ACTIONS(2378), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1550), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [67894] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2380), 1, + anon_sym_COMMA, + ACTIONS(2382), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1551), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [67990] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2384), 1, + anon_sym_COMMA, + ACTIONS(2386), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1552), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [68086] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2388), 1, + anon_sym_COMMA, + ACTIONS(2390), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1553), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [68182] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2392), 1, + anon_sym_COMMA, + ACTIONS(2394), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1554), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [68278] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2396), 1, + anon_sym_COMMA, + ACTIONS(2398), 1, + anon_sym_RBRACK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1555), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [68374] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1996), 1, + anon_sym_RBRACK, + ACTIONS(2400), 1, + anon_sym_COMMA, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1556), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [68470] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2402), 1, + anon_sym_COMMA, + ACTIONS(2404), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1557), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [68566] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2406), 1, + anon_sym_COMMA, + ACTIONS(2408), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1558), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [68662] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1990), 1, + anon_sym_RBRACK, + ACTIONS(2410), 1, + anon_sym_COMMA, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1559), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [68758] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2412), 1, + anon_sym_COMMA, + ACTIONS(2414), 1, + anon_sym_RBRACK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1560), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [68854] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_COMMA, + ACTIONS(2418), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1561), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [68950] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2420), 1, + anon_sym_COMMA, + ACTIONS(2422), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1562), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [69046] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2424), 1, + anon_sym_COMMA, + ACTIONS(2426), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1563), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [69142] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2162), 1, + anon_sym_RBRACK, + ACTIONS(2428), 1, + anon_sym_COMMA, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1564), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [69238] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2430), 1, + anon_sym_COMMA, + ACTIONS(2432), 1, + anon_sym_RBRACK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1565), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [69334] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2434), 1, + anon_sym_COMMA, + ACTIONS(2436), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1566), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [69430] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2438), 1, + anon_sym_COMMA, + ACTIONS(2440), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1567), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [69526] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2442), 1, + anon_sym_COMMA, + ACTIONS(2444), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1568), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [69622] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2130), 1, + anon_sym_RBRACK, + ACTIONS(2446), 1, + anon_sym_COMMA, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1569), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [69718] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2448), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1570), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [69811] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2450), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1571), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [69904] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2452), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1572), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [69997] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2454), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1573), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [70090] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2456), 1, + anon_sym_RBRACK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1574), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [70183] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(223), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1575), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [70276] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2458), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1576), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [70369] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2460), 1, + anon_sym_COLON, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1577), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [70462] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2462), 1, + anon_sym_RBRACE, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1578), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [70555] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2464), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1579), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [70648] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2466), 1, + anon_sym_RBRACK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1580), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [70741] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(211), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1581), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [70834] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2468), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1582), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [70927] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2470), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1583), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [71020] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2472), 1, + anon_sym_RBRACK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1584), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [71113] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(209), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1585), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [71206] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2474), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1586), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [71299] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(207), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1587), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [71392] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2476), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1588), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [71485] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2478), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1589), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [71578] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2480), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1590), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [71671] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2482), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1591), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [71764] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2484), 1, + anon_sym_RBRACK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1592), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [71857] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2486), 1, + anon_sym_RBRACK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1593), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [71950] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2488), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1594), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [72043] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2490), 1, + anon_sym_COLON, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1595), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [72136] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(255), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1596), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [72229] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2492), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1597), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [72322] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1598), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2496), 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(2494), 34, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [72381] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1599), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2500), 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(2498), 34, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [72440] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2502), 1, + anon_sym_RBRACK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1600), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [72533] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2504), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1601), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [72626] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2506), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1602), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [72719] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2508), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1603), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [72812] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1604), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2512), 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(2510), 34, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [72871] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1605), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2516), 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(2514), 34, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [72930] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2518), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1606), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [73023] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1607), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2522), 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(2520), 34, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [73082] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1608), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2526), 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(2524), 34, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [73141] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1609), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2530), 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(2528), 34, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [73200] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2532), 1, + anon_sym_RBRACE, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1610), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [73293] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2534), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1611), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [73386] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1612), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2538), 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(2536), 34, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [73445] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2540), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1613), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [73538] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2542), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1614), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [73631] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2544), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1615), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [73724] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2546), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1616), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [73817] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2548), 1, + anon_sym_RBRACE, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1617), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [73910] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2550), 1, + anon_sym_RBRACK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1618), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [74003] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2552), 1, + anon_sym_COLON, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1619), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [74096] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2554), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1620), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [74189] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2556), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1621), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [74282] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2558), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1622), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [74375] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2560), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1623), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [74468] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1624), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2564), 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(2562), 34, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [74527] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2566), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1625), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [74620] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2568), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1626), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [74713] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1627), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2572), 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(2570), 34, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [74772] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1628), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2576), 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(2574), 34, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [74831] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2578), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1629), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [74924] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_RBRACK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1630), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [75017] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2582), 1, + anon_sym_RBRACE, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1631), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [75110] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2584), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1632), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [75203] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2586), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1633), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [75296] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2588), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1634), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [75389] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2590), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1635), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [75482] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2592), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1636), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [75575] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2594), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1637), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [75668] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2596), 1, + anon_sym_RBRACE, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1638), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [75761] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2598), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1639), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [75854] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2600), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1640), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [75947] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(217), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1641), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [76040] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2602), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1642), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [76133] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1643), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2606), 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(2604), 34, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [76192] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1644), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2610), 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(2608), 34, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [76251] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2612), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1645), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [76344] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(231), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1646), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [76437] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2614), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1647), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [76530] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(213), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1648), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [76623] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2616), 1, + anon_sym_RBRACK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1649), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [76716] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2618), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1650), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [76809] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2620), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1651), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [76902] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2622), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1652), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [76995] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(221), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1653), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [77088] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2624), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1654), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [77181] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2626), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1655), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [77274] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2628), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1656), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [77367] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2630), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1657), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [77460] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(219), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1658), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [77553] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(251), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1659), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [77646] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2632), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1660), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [77739] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(225), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1661), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [77832] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(229), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1662), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [77925] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2634), 1, + anon_sym_RBRACE, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1663), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [78018] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2636), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1664), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [78111] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2638), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1665), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [78204] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2640), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1666), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [78297] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2642), 1, + anon_sym_COLON, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1667), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [78390] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2644), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1668), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [78483] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2646), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1669), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [78576] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2648), 1, + anon_sym_RBRACE, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1670), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [78669] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1671), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2652), 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(2650), 34, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [78728] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2654), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1672), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [78821] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2656), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1673), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [78914] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2658), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1674), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [79007] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(203), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1675), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [79100] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2660), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1676), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [79193] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2662), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1677), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [79286] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2664), 1, + anon_sym_SEMI, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1678), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [79379] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2666), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1679), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [79472] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2668), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1680), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [79565] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2670), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1681), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [79658] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2672), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1682), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [79751] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2674), 1, + anon_sym_RBRACK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1683), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [79844] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2676), 1, + anon_sym_RBRACK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1684), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [79937] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(227), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1685), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [80030] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2678), 1, + anon_sym_RBRACK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1686), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [80123] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(237), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1687), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [80216] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2680), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1688), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [80309] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2682), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1689), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [80402] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2684), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1690), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [80495] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2686), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1691), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [80588] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2688), 1, + anon_sym_RBRACK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1692), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [80681] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(233), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1693), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [80774] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1694), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2692), 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(2690), 34, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [80833] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2694), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1695), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [80926] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2696), 1, + anon_sym_COLON, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1696), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [81019] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2698), 1, + anon_sym_RBRACE, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1697), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [81112] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2700), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1698), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [81205] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(239), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1699), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [81298] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2702), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1700), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [81391] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(235), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1701), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [81484] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1702), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [81577] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(215), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1703), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [81670] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2706), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1704), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [81763] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1705), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2710), 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(2708), 34, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [81822] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1706), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2714), 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(2712), 34, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [81881] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2716), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1707), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [81974] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2718), 1, + anon_sym_RBRACK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1708), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [82067] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2720), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1709), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [82160] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2722), 1, + anon_sym_RBRACE, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1710), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [82253] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(253), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1711), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [82346] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2724), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1712), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [82439] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2726), 1, + anon_sym_RBRACE, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1713), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [82532] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2728), 1, + anon_sym_COLON, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1714), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [82625] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(241), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1715), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [82718] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2730), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1716), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [82811] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(243), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1717), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [82904] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2732), 1, + anon_sym_RBRACE, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1718), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [82997] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2734), 1, + anon_sym_RBRACE, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1719), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [83090] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(205), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1720), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [83183] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2736), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1721), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [83276] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2738), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1722), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [83369] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(245), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1723), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [83462] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2740), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1724), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [83555] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2742), 1, + anon_sym_COLON, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1725), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [83648] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2744), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1726), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [83741] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2746), 1, + anon_sym_SEMI, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1727), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [83834] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2748), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1728), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [83927] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2750), 1, + anon_sym_RBRACK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1729), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [84020] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2752), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1730), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [84113] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2754), 1, + anon_sym_SEMI, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1731), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [84206] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2756), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1732), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [84299] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2758), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1733), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [84392] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1734), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2762), 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_ATinterface, + anon_sym_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(2760), 34, + anon_sym_break, + anon_sym_continue, + anon_sym_import, + anon_sym_package, + anon_sym_AT, + anon_sym_assert, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + anon_sym_do, + anon_sym_while, + anon_sym_for, + sym_identifier, + anon_sym_if, + anon_sym_return, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_switch, + anon_sym_try, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [84451] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1735), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [84544] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(247), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1736), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [84637] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(249), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1737), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [84730] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2766), 1, + anon_sym_RBRACE, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1738), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [84823] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2768), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1739), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [84916] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2770), 1, + anon_sym_RPAREN, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1740), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [85009] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2772), 1, + anon_sym_COMMA, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1741), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [85102] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2774), 1, + anon_sym_COLON, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1742), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [85195] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1813), 1, + anon_sym_PERCENT, + ACTIONS(1829), 1, + anon_sym_AMP, + ACTIONS(1831), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_STAR_STAR, + ACTIONS(1847), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_COLON, + ACTIONS(1891), 1, + anon_sym_QMARK, + ACTIONS(2776), 1, + anon_sym_COMMA, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(1743), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1821), 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DOT_DOT, + ACTIONS(1807), 4, + anon_sym_DOT_AMP, + anon_sym_DOT_AT, + anon_sym_QMARK_DOT, + anon_sym_STAR_DOT, + ACTIONS(1811), 4, + anon_sym_as, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_BANGinstanceof, + ACTIONS(1819), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DOT_DOT_LT, + anon_sym_LT_DOT_DOT_LT, + ACTIONS(1823), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(1827), 5, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_TILDE, + [85288] = 27, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1411), 1, + anon_sym_AT, + ACTIONS(1419), 1, + anon_sym_def, + ACTIONS(2778), 1, + sym_identifier, + ACTIONS(2780), 1, + anon_sym_SEMI, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + STATE(1772), 1, + sym_annotation, + STATE(1813), 1, + sym_access_modifier, + STATE(1816), 1, + aux_sym_class_definition_repeat1, + STATE(1911), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2362), 1, + sym__type, + STATE(2479), 1, + sym_declaration, + STATE(1744), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(1431), 3, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + ACTIONS(1433), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [85388] = 27, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1411), 1, + anon_sym_AT, + ACTIONS(1419), 1, + anon_sym_def, + ACTIONS(2780), 1, + anon_sym_SEMI, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2794), 1, + sym_identifier, + STATE(1772), 1, + sym_annotation, + STATE(1813), 1, + sym_access_modifier, + STATE(1816), 1, + aux_sym_class_definition_repeat1, + STATE(1911), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2362), 1, + sym__type, + STATE(2479), 1, + sym_declaration, + STATE(1745), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(1431), 3, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + ACTIONS(1433), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [85488] = 27, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1411), 1, + anon_sym_AT, + ACTIONS(1419), 1, + anon_sym_def, + ACTIONS(2780), 1, + anon_sym_SEMI, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2796), 1, + sym_identifier, + STATE(1772), 1, + sym_annotation, + STATE(1813), 1, + sym_access_modifier, + STATE(1816), 1, + aux_sym_class_definition_repeat1, + STATE(1911), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2362), 1, + sym__type, + STATE(2479), 1, + sym_declaration, + STATE(1746), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(1431), 3, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + ACTIONS(1433), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [85588] = 27, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1411), 1, + anon_sym_AT, + ACTIONS(1419), 1, + anon_sym_def, + ACTIONS(2780), 1, + anon_sym_SEMI, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2798), 1, + sym_identifier, + STATE(1772), 1, + sym_annotation, + STATE(1813), 1, + sym_access_modifier, + STATE(1816), 1, + aux_sym_class_definition_repeat1, + STATE(1911), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2362), 1, + sym__type, + STATE(2479), 1, + sym_declaration, + STATE(1747), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(1431), 3, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + ACTIONS(1433), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [85688] = 27, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1411), 1, + anon_sym_AT, + ACTIONS(1419), 1, + anon_sym_def, + ACTIONS(2780), 1, + anon_sym_SEMI, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2800), 1, + sym_identifier, + STATE(1772), 1, + sym_annotation, + STATE(1813), 1, + sym_access_modifier, + STATE(1816), 1, + aux_sym_class_definition_repeat1, + STATE(1911), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2362), 1, + sym__type, + STATE(2479), 1, + sym_declaration, + STATE(1748), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(1431), 3, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + ACTIONS(1433), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [85788] = 27, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1411), 1, + anon_sym_AT, + ACTIONS(1419), 1, + anon_sym_def, + ACTIONS(2780), 1, + anon_sym_SEMI, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2802), 1, + sym_identifier, + STATE(1772), 1, + sym_annotation, + STATE(1813), 1, + sym_access_modifier, + STATE(1816), 1, + aux_sym_class_definition_repeat1, + STATE(1911), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2362), 1, + sym__type, + STATE(2479), 1, + sym_declaration, + STATE(1749), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(1431), 3, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + ACTIONS(1433), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [85888] = 27, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1411), 1, + anon_sym_AT, + ACTIONS(1419), 1, + anon_sym_def, + ACTIONS(2780), 1, + anon_sym_SEMI, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2804), 1, + sym_identifier, + STATE(1772), 1, + sym_annotation, + STATE(1813), 1, + sym_access_modifier, + STATE(1816), 1, + aux_sym_class_definition_repeat1, + STATE(1911), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2362), 1, + sym__type, + STATE(2479), 1, + sym_declaration, + STATE(1750), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(1431), 3, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + ACTIONS(1433), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [85988] = 27, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1411), 1, + anon_sym_AT, + ACTIONS(1419), 1, + anon_sym_def, + ACTIONS(2780), 1, + anon_sym_SEMI, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2806), 1, + sym_identifier, + STATE(1772), 1, + sym_annotation, + STATE(1813), 1, + sym_access_modifier, + STATE(1816), 1, + aux_sym_class_definition_repeat1, + STATE(1911), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2362), 1, + sym__type, + STATE(2479), 1, + sym_declaration, + STATE(1751), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(1431), 3, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + ACTIONS(1433), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [86088] = 27, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1411), 1, + anon_sym_AT, + ACTIONS(1419), 1, + anon_sym_def, + ACTIONS(2780), 1, + anon_sym_SEMI, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2808), 1, + sym_identifier, + STATE(1772), 1, + sym_annotation, + STATE(1813), 1, + sym_access_modifier, + STATE(1816), 1, + aux_sym_class_definition_repeat1, + STATE(1911), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2362), 1, + sym__type, + STATE(2479), 1, + sym_declaration, + STATE(1752), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(1431), 3, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + ACTIONS(1433), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [86188] = 27, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1411), 1, + anon_sym_AT, + ACTIONS(1419), 1, + anon_sym_def, + ACTIONS(2780), 1, + anon_sym_SEMI, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2810), 1, + sym_identifier, + STATE(1772), 1, + sym_annotation, + STATE(1813), 1, + sym_access_modifier, + STATE(1816), 1, + aux_sym_class_definition_repeat1, + STATE(1911), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2362), 1, + sym__type, + STATE(2479), 1, + sym_declaration, + STATE(1753), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(1431), 3, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + ACTIONS(1433), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [86288] = 27, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1411), 1, + anon_sym_AT, + ACTIONS(1419), 1, + anon_sym_def, + ACTIONS(2780), 1, + anon_sym_SEMI, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2812), 1, + sym_identifier, + STATE(1772), 1, + sym_annotation, + STATE(1813), 1, + sym_access_modifier, + STATE(1816), 1, + aux_sym_class_definition_repeat1, + STATE(1911), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2362), 1, + sym__type, + STATE(2479), 1, + sym_declaration, + STATE(1754), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(1431), 3, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + ACTIONS(1433), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [86388] = 27, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1411), 1, + anon_sym_AT, + ACTIONS(1419), 1, + anon_sym_def, + ACTIONS(2780), 1, + anon_sym_SEMI, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2814), 1, + sym_identifier, + STATE(1772), 1, + sym_annotation, + STATE(1813), 1, + sym_access_modifier, + STATE(1816), 1, + aux_sym_class_definition_repeat1, + STATE(1911), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2362), 1, + sym__type, + STATE(2479), 1, + sym_declaration, + STATE(1755), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(1431), 3, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + ACTIONS(1433), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [86488] = 27, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1411), 1, + anon_sym_AT, + ACTIONS(1419), 1, + anon_sym_def, + ACTIONS(2780), 1, + anon_sym_SEMI, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2816), 1, + sym_identifier, + STATE(1772), 1, + sym_annotation, + STATE(1813), 1, + sym_access_modifier, + STATE(1816), 1, + aux_sym_class_definition_repeat1, + STATE(1911), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2362), 1, + sym__type, + STATE(2479), 1, + sym_declaration, + STATE(1756), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(1431), 3, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + ACTIONS(1433), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [86588] = 27, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1411), 1, + anon_sym_AT, + ACTIONS(1419), 1, + anon_sym_def, + ACTIONS(2780), 1, + anon_sym_SEMI, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2818), 1, + sym_identifier, + STATE(1772), 1, + sym_annotation, + STATE(1813), 1, + sym_access_modifier, + STATE(1816), 1, + aux_sym_class_definition_repeat1, + STATE(1911), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2362), 1, + sym__type, + STATE(2479), 1, + sym_declaration, + STATE(1757), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(1431), 3, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + ACTIONS(1433), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [86688] = 27, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1411), 1, + anon_sym_AT, + ACTIONS(1419), 1, + anon_sym_def, + ACTIONS(2780), 1, + anon_sym_SEMI, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2820), 1, + sym_identifier, + STATE(1772), 1, + sym_annotation, + STATE(1813), 1, + sym_access_modifier, + STATE(1816), 1, + aux_sym_class_definition_repeat1, + STATE(1911), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2362), 1, + sym__type, + STATE(2479), 1, + sym_declaration, + STATE(1758), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(1431), 3, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + ACTIONS(1433), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [86788] = 27, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1411), 1, + anon_sym_AT, + ACTIONS(1419), 1, + anon_sym_def, + ACTIONS(2780), 1, + anon_sym_SEMI, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2822), 1, + sym_identifier, + STATE(1772), 1, + sym_annotation, + STATE(1813), 1, + sym_access_modifier, + STATE(1816), 1, + aux_sym_class_definition_repeat1, + STATE(1911), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2362), 1, + sym__type, + STATE(2479), 1, + sym_declaration, + STATE(1759), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(1431), 3, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + ACTIONS(1433), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [86888] = 27, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1411), 1, + anon_sym_AT, + ACTIONS(1419), 1, + anon_sym_def, + ACTIONS(2780), 1, + anon_sym_SEMI, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2824), 1, + sym_identifier, + STATE(1772), 1, + sym_annotation, + STATE(1813), 1, + sym_access_modifier, + STATE(1816), 1, + aux_sym_class_definition_repeat1, + STATE(1911), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2362), 1, + sym__type, + STATE(2479), 1, + sym_declaration, + STATE(1760), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(1431), 3, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + ACTIONS(1433), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [86988] = 27, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1411), 1, + anon_sym_AT, + ACTIONS(1419), 1, + anon_sym_def, + ACTIONS(2780), 1, + anon_sym_SEMI, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2826), 1, + sym_identifier, + STATE(1772), 1, + sym_annotation, + STATE(1813), 1, + sym_access_modifier, + STATE(1816), 1, + aux_sym_class_definition_repeat1, + STATE(1911), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2362), 1, + sym__type, + STATE(2479), 1, + sym_declaration, + STATE(1761), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(1431), 3, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + ACTIONS(1433), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [87088] = 27, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1411), 1, + anon_sym_AT, + ACTIONS(1419), 1, + anon_sym_def, + ACTIONS(2780), 1, + anon_sym_SEMI, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2828), 1, + sym_identifier, + STATE(1772), 1, + sym_annotation, + STATE(1813), 1, + sym_access_modifier, + STATE(1816), 1, + aux_sym_class_definition_repeat1, + STATE(1911), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2362), 1, + sym__type, + STATE(2479), 1, + sym_declaration, + STATE(1762), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(1431), 3, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + ACTIONS(1433), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [87188] = 27, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1411), 1, + anon_sym_AT, + ACTIONS(1419), 1, + anon_sym_def, + ACTIONS(2780), 1, + anon_sym_SEMI, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2830), 1, + sym_identifier, + STATE(1772), 1, + sym_annotation, + STATE(1813), 1, + sym_access_modifier, + STATE(1816), 1, + aux_sym_class_definition_repeat1, + STATE(1911), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2362), 1, + sym__type, + STATE(2479), 1, + sym_declaration, + STATE(1763), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(1431), 3, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + ACTIONS(1433), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [87288] = 25, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2834), 1, + anon_sym_ATinterface, + ACTIONS(2838), 1, + anon_sym_def, + STATE(1786), 1, + aux_sym_class_definition_repeat1, + STATE(1805), 1, + sym_access_modifier, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2448), 1, + sym__type, + ACTIONS(2836), 2, + anon_sym_interface, + anon_sym_class, + STATE(1764), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(65), 3, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [87383] = 25, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2840), 1, + anon_sym_ATinterface, + ACTIONS(2844), 1, + anon_sym_def, + STATE(1794), 1, + sym_access_modifier, + STATE(1795), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2410), 1, + sym__type, + ACTIONS(2842), 2, + anon_sym_interface, + anon_sym_class, + STATE(1765), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(65), 3, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [87478] = 25, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2846), 1, + anon_sym_ATinterface, + ACTIONS(2850), 1, + anon_sym_def, + STATE(1779), 1, + sym_access_modifier, + STATE(1796), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2408), 1, + sym__type, + ACTIONS(2848), 2, + anon_sym_interface, + anon_sym_class, + STATE(1766), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(65), 3, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [87573] = 25, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2852), 1, + anon_sym_ATinterface, + ACTIONS(2856), 1, + anon_sym_def, + STATE(1791), 1, + aux_sym_class_definition_repeat1, + STATE(1792), 1, + sym_access_modifier, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2365), 1, + sym__type, + ACTIONS(2854), 2, + anon_sym_interface, + anon_sym_class, + STATE(1767), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(65), 3, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [87668] = 25, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2840), 1, + anon_sym_ATinterface, + ACTIONS(2858), 1, + anon_sym_def, + STATE(1774), 1, + aux_sym_class_definition_repeat1, + STATE(1803), 1, + sym_access_modifier, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2384), 1, + sym__type, + ACTIONS(2842), 2, + anon_sym_interface, + anon_sym_class, + STATE(1768), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(65), 3, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [87763] = 25, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2840), 1, + anon_sym_ATinterface, + ACTIONS(2860), 1, + anon_sym_def, + STATE(1773), 1, + sym_access_modifier, + STATE(1783), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2434), 1, + sym__type, + ACTIONS(2842), 2, + anon_sym_interface, + anon_sym_class, + STATE(1769), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(65), 3, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [87858] = 25, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2862), 1, + anon_sym_ATinterface, + ACTIONS(2866), 1, + anon_sym_def, + STATE(1782), 1, + aux_sym_class_definition_repeat1, + STATE(1787), 1, + sym_access_modifier, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2407), 1, + sym__type, + ACTIONS(2864), 2, + anon_sym_interface, + anon_sym_class, + STATE(1770), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(65), 3, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [87953] = 25, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2846), 1, + anon_sym_ATinterface, + ACTIONS(2868), 1, + anon_sym_def, + STATE(1776), 1, + sym_access_modifier, + STATE(1780), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2409), 1, + sym__type, + ACTIONS(2848), 2, + anon_sym_interface, + anon_sym_class, + STATE(1771), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(65), 3, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [88048] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2870), 1, + anon_sym_def, + STATE(1814), 1, + aux_sym_class_definition_repeat1, + STATE(1815), 1, + sym_access_modifier, + STATE(1911), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2370), 1, + sym__type, + STATE(1772), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(1431), 3, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + ACTIONS(1433), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [88136] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2872), 1, + anon_sym_ATinterface, + ACTIONS(2876), 1, + anon_sym_def, + STATE(1793), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2411), 1, + sym__type, + ACTIONS(2874), 2, + anon_sym_interface, + anon_sym_class, + STATE(1773), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [88223] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2872), 1, + anon_sym_ATinterface, + ACTIONS(2878), 1, + anon_sym_def, + STATE(1890), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2385), 1, + sym__type, + ACTIONS(2874), 2, + anon_sym_interface, + anon_sym_class, + STATE(1774), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [88310] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2840), 1, + anon_sym_ATinterface, + ACTIONS(2860), 1, + anon_sym_def, + STATE(1783), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2434), 1, + sym__type, + ACTIONS(2842), 2, + anon_sym_interface, + anon_sym_class, + STATE(1775), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [88397] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2880), 1, + anon_sym_ATinterface, + ACTIONS(2884), 1, + anon_sym_def, + STATE(1785), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2419), 1, + sym__type, + ACTIONS(2882), 2, + anon_sym_interface, + anon_sym_class, + STATE(1776), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [88484] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2886), 1, + anon_sym_ATinterface, + ACTIONS(2890), 1, + anon_sym_def, + STATE(1890), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2395), 1, + sym__type, + ACTIONS(2888), 2, + anon_sym_interface, + anon_sym_class, + STATE(1777), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [88571] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2840), 1, + anon_sym_ATinterface, + ACTIONS(2860), 1, + anon_sym_def, + STATE(1890), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2434), 1, + sym__type, + ACTIONS(2842), 2, + anon_sym_interface, + anon_sym_class, + STATE(1778), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [88658] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2880), 1, + anon_sym_ATinterface, + ACTIONS(2892), 1, + anon_sym_def, + STATE(1812), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2406), 1, + sym__type, + ACTIONS(2882), 2, + anon_sym_interface, + anon_sym_class, + STATE(1779), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [88745] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2880), 1, + anon_sym_ATinterface, + ACTIONS(2884), 1, + anon_sym_def, + STATE(1890), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2419), 1, + sym__type, + ACTIONS(2882), 2, + anon_sym_interface, + anon_sym_class, + STATE(1780), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [88832] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2846), 1, + anon_sym_ATinterface, + ACTIONS(2850), 1, + anon_sym_def, + STATE(1890), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2408), 1, + sym__type, + ACTIONS(2848), 2, + anon_sym_interface, + anon_sym_class, + STATE(1781), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [88919] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2894), 1, + anon_sym_ATinterface, + ACTIONS(2898), 1, + anon_sym_def, + STATE(1890), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2450), 1, + sym__type, + ACTIONS(2896), 2, + anon_sym_interface, + anon_sym_class, + STATE(1782), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [89006] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2872), 1, + anon_sym_ATinterface, + ACTIONS(2876), 1, + anon_sym_def, + STATE(1890), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2411), 1, + sym__type, + ACTIONS(2874), 2, + anon_sym_interface, + anon_sym_class, + STATE(1783), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [89093] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2846), 1, + anon_sym_ATinterface, + ACTIONS(2850), 1, + anon_sym_def, + STATE(1796), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2408), 1, + sym__type, + ACTIONS(2848), 2, + anon_sym_interface, + anon_sym_class, + STATE(1784), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [89180] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2900), 1, + anon_sym_ATinterface, + ACTIONS(2904), 1, + anon_sym_def, + STATE(1890), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2428), 1, + sym__type, + ACTIONS(2902), 2, + anon_sym_interface, + anon_sym_class, + STATE(1785), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [89267] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2906), 1, + anon_sym_ATinterface, + ACTIONS(2910), 1, + anon_sym_def, + STATE(1890), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2444), 1, + sym__type, + ACTIONS(2908), 2, + anon_sym_interface, + anon_sym_class, + STATE(1786), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [89354] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2894), 1, + anon_sym_ATinterface, + ACTIONS(2898), 1, + anon_sym_def, + STATE(1808), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2450), 1, + sym__type, + ACTIONS(2896), 2, + anon_sym_interface, + anon_sym_class, + STATE(1787), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [89441] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2846), 1, + anon_sym_ATinterface, + ACTIONS(2868), 1, + anon_sym_def, + STATE(1890), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2409), 1, + sym__type, + ACTIONS(2848), 2, + anon_sym_interface, + anon_sym_class, + STATE(1788), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [89528] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2840), 1, + anon_sym_ATinterface, + ACTIONS(2844), 1, + anon_sym_def, + STATE(1890), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2410), 1, + sym__type, + ACTIONS(2842), 2, + anon_sym_interface, + anon_sym_class, + STATE(1789), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [89615] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2840), 1, + anon_sym_ATinterface, + ACTIONS(2844), 1, + anon_sym_def, + STATE(1795), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2410), 1, + sym__type, + ACTIONS(2842), 2, + anon_sym_interface, + anon_sym_class, + STATE(1790), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [89702] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2912), 1, + anon_sym_ATinterface, + ACTIONS(2916), 1, + anon_sym_def, + STATE(1890), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2423), 1, + sym__type, + ACTIONS(2914), 2, + anon_sym_interface, + anon_sym_class, + STATE(1791), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [89789] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2912), 1, + anon_sym_ATinterface, + ACTIONS(2916), 1, + anon_sym_def, + STATE(1777), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2423), 1, + sym__type, + ACTIONS(2914), 2, + anon_sym_interface, + anon_sym_class, + STATE(1792), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [89876] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2918), 1, + anon_sym_ATinterface, + ACTIONS(2922), 1, + anon_sym_def, + STATE(1890), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2425), 1, + sym__type, + ACTIONS(2920), 2, + anon_sym_interface, + anon_sym_class, + STATE(1793), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [89963] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2872), 1, + anon_sym_ATinterface, + ACTIONS(2924), 1, + anon_sym_def, + STATE(1797), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2378), 1, + sym__type, + ACTIONS(2874), 2, + anon_sym_interface, + anon_sym_class, + STATE(1794), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [90050] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2872), 1, + anon_sym_ATinterface, + ACTIONS(2924), 1, + anon_sym_def, + STATE(1890), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2378), 1, + sym__type, + ACTIONS(2874), 2, + anon_sym_interface, + anon_sym_class, + STATE(1795), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [90137] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2880), 1, + anon_sym_ATinterface, + ACTIONS(2892), 1, + anon_sym_def, + STATE(1890), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2406), 1, + sym__type, + ACTIONS(2882), 2, + anon_sym_interface, + anon_sym_class, + STATE(1796), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [90224] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2918), 1, + anon_sym_ATinterface, + ACTIONS(2926), 1, + anon_sym_def, + STATE(1890), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2429), 1, + sym__type, + ACTIONS(2920), 2, + anon_sym_interface, + anon_sym_class, + STATE(1797), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [90311] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2928), 1, + anon_sym_ATinterface, + ACTIONS(2932), 1, + anon_sym_def, + STATE(1890), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2398), 1, + sym__type, + ACTIONS(2930), 2, + anon_sym_interface, + anon_sym_class, + STATE(1798), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [90398] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2852), 1, + anon_sym_ATinterface, + ACTIONS(2856), 1, + anon_sym_def, + STATE(1890), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2365), 1, + sym__type, + ACTIONS(2854), 2, + anon_sym_interface, + anon_sym_class, + STATE(1799), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [90485] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2840), 1, + anon_sym_ATinterface, + ACTIONS(2858), 1, + anon_sym_def, + STATE(1890), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2384), 1, + sym__type, + ACTIONS(2842), 2, + anon_sym_interface, + anon_sym_class, + STATE(1800), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [90572] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2834), 1, + anon_sym_ATinterface, + ACTIONS(2838), 1, + anon_sym_def, + STATE(1786), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2448), 1, + sym__type, + ACTIONS(2836), 2, + anon_sym_interface, + anon_sym_class, + STATE(1801), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [90659] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2852), 1, + anon_sym_ATinterface, + ACTIONS(2856), 1, + anon_sym_def, + STATE(1791), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2365), 1, + sym__type, + ACTIONS(2854), 2, + anon_sym_interface, + anon_sym_class, + STATE(1802), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [90746] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2872), 1, + anon_sym_ATinterface, + ACTIONS(2878), 1, + anon_sym_def, + STATE(1809), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2385), 1, + sym__type, + ACTIONS(2874), 2, + anon_sym_interface, + anon_sym_class, + STATE(1803), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [90833] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2834), 1, + anon_sym_ATinterface, + ACTIONS(2838), 1, + anon_sym_def, + STATE(1890), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2448), 1, + sym__type, + ACTIONS(2836), 2, + anon_sym_interface, + anon_sym_class, + STATE(1804), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [90920] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2906), 1, + anon_sym_ATinterface, + ACTIONS(2910), 1, + anon_sym_def, + STATE(1798), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2444), 1, + sym__type, + ACTIONS(2908), 2, + anon_sym_interface, + anon_sym_class, + STATE(1805), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [91007] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2840), 1, + anon_sym_ATinterface, + ACTIONS(2858), 1, + anon_sym_def, + STATE(1774), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2384), 1, + sym__type, + ACTIONS(2842), 2, + anon_sym_interface, + anon_sym_class, + STATE(1806), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [91094] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2846), 1, + anon_sym_ATinterface, + ACTIONS(2868), 1, + anon_sym_def, + STATE(1780), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2409), 1, + sym__type, + ACTIONS(2848), 2, + anon_sym_interface, + anon_sym_class, + STATE(1807), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [91181] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2934), 1, + anon_sym_ATinterface, + ACTIONS(2938), 1, + anon_sym_def, + STATE(1890), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2363), 1, + sym__type, + ACTIONS(2936), 2, + anon_sym_interface, + anon_sym_class, + STATE(1808), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [91268] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2918), 1, + anon_sym_ATinterface, + ACTIONS(2940), 1, + anon_sym_def, + STATE(1890), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2387), 1, + sym__type, + ACTIONS(2920), 2, + anon_sym_interface, + anon_sym_class, + STATE(1809), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [91355] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2862), 1, + anon_sym_ATinterface, + ACTIONS(2866), 1, + anon_sym_def, + STATE(1782), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2407), 1, + sym__type, + ACTIONS(2864), 2, + anon_sym_interface, + anon_sym_class, + STATE(1810), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [91442] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2862), 1, + anon_sym_ATinterface, + ACTIONS(2866), 1, + anon_sym_def, + STATE(1890), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2407), 1, + sym__type, + ACTIONS(2864), 2, + anon_sym_interface, + anon_sym_class, + STATE(1811), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [91529] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2900), 1, + anon_sym_ATinterface, + ACTIONS(2942), 1, + anon_sym_def, + STATE(1890), 1, + aux_sym_class_definition_repeat1, + STATE(1898), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2373), 1, + sym__type, + ACTIONS(2902), 2, + anon_sym_interface, + anon_sym_class, + STATE(1812), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [91616] = 21, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2870), 1, + anon_sym_def, + STATE(1814), 1, + aux_sym_class_definition_repeat1, + STATE(1911), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2370), 1, + sym__type, + STATE(1813), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(1433), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [91696] = 21, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2944), 1, + anon_sym_def, + STATE(1899), 1, + aux_sym_class_definition_repeat1, + STATE(1911), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2393), 1, + sym__type, + STATE(1814), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(1433), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [91776] = 21, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2944), 1, + anon_sym_def, + STATE(1817), 1, + aux_sym_class_definition_repeat1, + STATE(1911), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2393), 1, + sym__type, + STATE(1815), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(1433), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [91856] = 21, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2870), 1, + anon_sym_def, + STATE(1899), 1, + aux_sym_class_definition_repeat1, + STATE(1911), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2370), 1, + sym__type, + STATE(1816), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(1433), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [91936] = 21, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + ACTIONS(2946), 1, + anon_sym_def, + STATE(1899), 1, + aux_sym_class_definition_repeat1, + STATE(1911), 1, + sym_modifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2418), 1, + sym__type, + STATE(1817), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + ACTIONS(1433), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [92016] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2948), 1, + sym_identifier, + ACTIONS(2950), 1, + anon_sym_RPAREN, + STATE(1878), 1, + aux_sym__param_list_repeat1, + STATE(2031), 1, + sym__prefix_expression, + STATE(2443), 1, + sym__type, + STATE(2597), 1, + sym_parameter, + STATE(1818), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [92091] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1819), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2952), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2031), 15, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [92138] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2372), 1, + anon_sym_RPAREN, + STATE(1820), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [92187] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2414), 1, + anon_sym_RBRACK, + STATE(1821), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2031), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(2952), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + [92236] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2958), 1, + anon_sym_RPAREN, + STATE(1822), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [92285] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2960), 1, + anon_sym_RPAREN, + STATE(1823), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [92334] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2256), 1, + anon_sym_RPAREN, + STATE(1824), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [92383] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2962), 1, + anon_sym_RBRACK, + STATE(1825), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2031), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(2952), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + [92432] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2964), 1, + anon_sym_RPAREN, + STATE(1826), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [92481] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2296), 1, + anon_sym_RPAREN, + STATE(1827), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [92530] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2272), 1, + anon_sym_RBRACK, + STATE(1828), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2031), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(2952), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + [92579] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2260), 1, + anon_sym_RPAREN, + STATE(1829), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [92628] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2422), 1, + anon_sym_RPAREN, + STATE(1830), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [92677] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2276), 1, + anon_sym_RBRACK, + STATE(1831), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2031), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(2952), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + [92726] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2948), 1, + sym_identifier, + ACTIONS(2966), 1, + anon_sym_RPAREN, + STATE(1880), 1, + aux_sym__param_list_repeat1, + STATE(2031), 1, + sym__prefix_expression, + STATE(2443), 1, + sym__type, + STATE(2512), 1, + sym_parameter, + STATE(1832), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [92801] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2322), 1, + anon_sym_RBRACK, + STATE(1833), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2031), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(2952), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + [92850] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2968), 1, + anon_sym_RPAREN, + STATE(1834), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [92899] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2444), 1, + anon_sym_RPAREN, + STATE(1835), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [92948] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2288), 1, + anon_sym_RPAREN, + STATE(1836), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [92997] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2970), 1, + anon_sym_RPAREN, + STATE(1837), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [93046] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2972), 1, + anon_sym_RBRACK, + STATE(1838), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2031), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(2952), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + [93095] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2356), 1, + anon_sym_RPAREN, + STATE(1839), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [93144] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2368), 1, + anon_sym_RPAREN, + STATE(1840), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [93193] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2974), 1, + anon_sym_RPAREN, + STATE(1841), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [93242] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2346), 1, + anon_sym_RPAREN, + STATE(1842), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [93291] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2976), 1, + anon_sym_RPAREN, + STATE(1843), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [93340] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2978), 1, + anon_sym_RPAREN, + STATE(1844), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [93389] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2980), 1, + anon_sym_RPAREN, + STATE(1845), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [93438] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2432), 1, + anon_sym_RBRACK, + STATE(1846), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2031), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(2952), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + [93487] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2982), 1, + anon_sym_RPAREN, + STATE(1847), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [93536] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2984), 1, + anon_sym_RPAREN, + STATE(1848), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [93585] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2986), 1, + anon_sym_RPAREN, + STATE(1849), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [93634] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2398), 1, + anon_sym_RBRACK, + STATE(1850), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2031), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(2952), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + [93683] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2948), 1, + sym_identifier, + ACTIONS(2988), 1, + anon_sym_RPAREN, + STATE(1881), 1, + aux_sym__param_list_repeat1, + STATE(2031), 1, + sym__prefix_expression, + STATE(2443), 1, + sym__type, + STATE(2607), 1, + sym_parameter, + STATE(1851), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [93758] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2326), 1, + anon_sym_RPAREN, + STATE(1852), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [93807] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2292), 1, + anon_sym_RBRACK, + STATE(1853), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2031), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(2952), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + [93856] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2418), 1, + anon_sym_RPAREN, + STATE(1854), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [93905] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2990), 1, + anon_sym_RBRACK, + STATE(1855), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2031), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(2952), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + [93954] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2992), 1, + anon_sym_RPAREN, + STATE(1856), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [94003] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2994), 1, + anon_sym_RPAREN, + STATE(1857), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [94052] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2996), 1, + anon_sym_RBRACK, + STATE(1858), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2031), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(2952), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + [94101] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2998), 1, + anon_sym_RBRACK, + STATE(1859), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2031), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(2952), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + [94150] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3000), 1, + anon_sym_RPAREN, + STATE(1860), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [94199] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2426), 1, + anon_sym_RPAREN, + STATE(1861), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [94248] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2280), 1, + anon_sym_RPAREN, + STATE(1862), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [94297] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3002), 1, + anon_sym_RBRACK, + STATE(1863), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2031), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(2952), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + [94346] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2948), 1, + sym_identifier, + ACTIONS(3004), 1, + anon_sym_RPAREN, + STATE(1877), 1, + aux_sym__param_list_repeat1, + STATE(2031), 1, + sym__prefix_expression, + STATE(2443), 1, + sym__type, + STATE(2610), 1, + sym_parameter, + STATE(1864), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [94421] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2386), 1, + anon_sym_RPAREN, + STATE(1865), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [94470] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2310), 1, + anon_sym_RPAREN, + STATE(1866), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [94519] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2306), 1, + anon_sym_RPAREN, + STATE(1867), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [94568] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2314), 1, + anon_sym_RPAREN, + STATE(1868), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [94617] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3006), 1, + anon_sym_RBRACK, + STATE(1869), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2031), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + ACTIONS(2952), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + [94666] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3008), 1, + anon_sym_RPAREN, + STATE(1870), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [94715] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2382), 1, + anon_sym_RPAREN, + STATE(1871), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [94764] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3010), 1, + anon_sym_RPAREN, + STATE(1872), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [94813] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3012), 1, + anon_sym_RPAREN, + STATE(1873), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [94862] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3014), 1, + anon_sym_RPAREN, + STATE(1874), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [94911] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1875), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2954), 14, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_this, + anon_sym_null, + sym_identifier, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_new, + ACTIONS(2956), 14, + anon_sym_STAR_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + anon_sym_TILDE, + anon_sym_BANG, + [94957] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3016), 1, + sym_identifier, + ACTIONS(3019), 1, + anon_sym_SLASH, + ACTIONS(3022), 1, + anon_sym_SQUOTE, + ACTIONS(3025), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3028), 1, + anon_sym_DQUOTE, + ACTIONS(3031), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3034), 1, + anon_sym_DOLLAR_SLASH, + STATE(2031), 1, + sym__prefix_expression, + STATE(2443), 1, + sym__type, + STATE(2633), 1, + sym_parameter, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1876), 3, + sym_comment, + sym_groovy_doc, + aux_sym__param_list_repeat1, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(3037), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [95027] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2948), 1, + sym_identifier, + STATE(1876), 1, + aux_sym__param_list_repeat1, + STATE(2031), 1, + sym__prefix_expression, + STATE(2443), 1, + sym__type, + STATE(2596), 1, + sym_parameter, + STATE(1877), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [95099] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2948), 1, + sym_identifier, + STATE(1876), 1, + aux_sym__param_list_repeat1, + STATE(2031), 1, + sym__prefix_expression, + STATE(2443), 1, + sym__type, + STATE(2558), 1, + sym_parameter, + STATE(1878), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [95171] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2948), 1, + sym_identifier, + STATE(1876), 1, + aux_sym__param_list_repeat1, + STATE(2031), 1, + sym__prefix_expression, + STATE(2443), 1, + sym__type, + STATE(2577), 1, + sym_parameter, + STATE(1879), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [95243] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2948), 1, + sym_identifier, + STATE(1876), 1, + aux_sym__param_list_repeat1, + STATE(2031), 1, + sym__prefix_expression, + STATE(2443), 1, + sym__type, + STATE(2570), 1, + sym_parameter, + STATE(1880), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [95315] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2948), 1, + sym_identifier, + STATE(1876), 1, + aux_sym__param_list_repeat1, + STATE(2031), 1, + sym__prefix_expression, + STATE(2443), 1, + sym__type, + STATE(2506), 1, + sym_parameter, + STATE(1881), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [95387] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + STATE(1888), 1, + sym_argument_list, + STATE(1882), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3042), 4, + anon_sym_ATinterface, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(3040), 21, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [95436] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + STATE(1884), 1, + aux_sym_generics_repeat1, + STATE(2031), 1, + sym__prefix_expression, + STATE(2301), 1, + sym__type, + STATE(1883), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [95505] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3044), 1, + sym_identifier, + ACTIONS(3047), 1, + anon_sym_SLASH, + ACTIONS(3050), 1, + anon_sym_SQUOTE, + ACTIONS(3053), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3056), 1, + anon_sym_DQUOTE, + ACTIONS(3059), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3062), 1, + anon_sym_DOLLAR_SLASH, + STATE(2090), 1, + sym__prefix_expression, + STATE(2399), 1, + sym__type, + STATE(1285), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1884), 3, + sym_comment, + sym_groovy_doc, + aux_sym_generics_repeat1, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(1230), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(3065), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [95572] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + STATE(1883), 1, + aux_sym_generics_repeat1, + STATE(2031), 1, + sym__prefix_expression, + STATE(2319), 1, + sym__type, + STATE(1885), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [95641] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(11), 1, + sym_identifier, + ACTIONS(27), 1, + anon_sym_SLASH, + ACTIONS(49), 1, + anon_sym_SQUOTE, + ACTIONS(51), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(55), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(57), 1, + anon_sym_DOLLAR_SLASH, + STATE(2090), 1, + sym__prefix_expression, + STATE(2320), 1, + sym__type, + STATE(1285), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1886), 2, + sym_comment, + sym_groovy_doc, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(1230), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [95707] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2782), 1, + anon_sym_SLASH, + ACTIONS(2784), 1, + anon_sym_SQUOTE, + ACTIONS(2786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2788), 1, + anon_sym_DQUOTE, + ACTIONS(2790), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2792), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(2832), 1, + sym_identifier, + STATE(2031), 1, + sym__prefix_expression, + STATE(2320), 1, + sym__type, + STATE(1887), 2, + sym_comment, + sym_groovy_doc, + STATE(2051), 2, + sym__plain_string, + sym__interpolate_string, + STATE(2355), 3, + sym_builtintype, + sym_array_type, + sym_type_with_generics, + STATE(2052), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + ACTIONS(63), 8, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [95773] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1888), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3070), 4, + anon_sym_ATinterface, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(3068), 21, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [95816] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3072), 1, + anon_sym_LPAREN, + STATE(1893), 1, + sym_argument_list, + STATE(1889), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3042), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(3040), 19, + anon_sym_SLASH, + anon_sym_def, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [95862] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1898), 1, + sym_modifier, + ACTIONS(3078), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(1890), 3, + sym_comment, + sym_groovy_doc, + aux_sym_class_definition_repeat1, + ACTIONS(3076), 4, + anon_sym_ATinterface, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(3074), 15, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [95908] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1891), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(79), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(77), 19, + anon_sym_SLASH, + anon_sym_def, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [95948] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1892), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(83), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(81), 19, + anon_sym_SLASH, + anon_sym_def, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [95988] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1893), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3070), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(3068), 19, + anon_sym_SLASH, + anon_sym_def, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [96028] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1894), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(71), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(69), 19, + anon_sym_SLASH, + anon_sym_def, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [96068] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1895), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(87), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(85), 19, + anon_sym_SLASH, + anon_sym_def, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [96108] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1896), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3083), 4, + anon_sym_ATinterface, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(3081), 18, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [96148] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1897), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3087), 4, + anon_sym_ATinterface, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(3085), 18, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [96188] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1898), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3091), 4, + anon_sym_ATinterface, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(3089), 18, + anon_sym_SLASH, + anon_sym_interface, + anon_sym_class, + anon_sym_def, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [96228] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1911), 1, + sym_modifier, + ACTIONS(3076), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(3093), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(1899), 3, + sym_comment, + sym_groovy_doc, + aux_sym_class_definition_repeat1, + ACTIONS(3074), 13, + anon_sym_SLASH, + anon_sym_def, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [96271] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3096), 1, + anon_sym_DOT, + ACTIONS(3098), 1, + anon_sym_LPAREN, + ACTIONS(3100), 1, + anon_sym_LBRACK, + STATE(1907), 1, + sym_argument_list, + ACTIONS(2214), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1900), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2210), 14, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + [96317] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1901), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(341), 19, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK, + [96352] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1902), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3083), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(3081), 16, + anon_sym_SLASH, + anon_sym_def, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [96389] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1903), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(101), 19, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK, + [96424] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1904), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(337), 19, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK, + [96459] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1905), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(345), 19, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK, + [96494] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1906), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(79), 19, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK, + [96529] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1907), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(75), 19, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK, + [96564] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1908), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(273), 19, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK, + [96599] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1909), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(281), 19, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK, + [96634] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1910), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(285), 19, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK, + [96669] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1911), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3091), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(3089), 16, + anon_sym_SLASH, + anon_sym_def, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [96706] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1912), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(83), 19, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK, + [96741] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1913), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3087), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(3085), 16, + anon_sym_SLASH, + anon_sym_def, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + [96778] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1914), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(277), 19, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK, + [96813] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1915), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(71), 19, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK, + [96848] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1916), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(87), 19, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK, + [96883] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3102), 1, + sym_identifier, + STATE(1964), 1, + sym_modifier, + STATE(2007), 1, + sym_dotted_identifier, + STATE(2402), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1917), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(240), 3, + sym_function_call, + sym_index, + sym_string, + [96941] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3104), 1, + sym_identifier, + STATE(1951), 1, + sym_modifier, + STATE(2012), 1, + sym_dotted_identifier, + STATE(2402), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1918), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(240), 3, + sym_function_call, + sym_index, + sym_string, + [96999] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3106), 1, + sym_identifier, + STATE(864), 1, + sym_dotted_identifier, + STATE(1980), 1, + sym_modifier, + STATE(2401), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1919), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(240), 3, + sym_function_call, + sym_index, + sym_string, + [97057] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3108), 1, + sym_identifier, + STATE(649), 1, + sym_dotted_identifier, + STATE(1992), 1, + sym_modifier, + STATE(2445), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1920), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(240), 3, + sym_function_call, + sym_index, + sym_string, + [97115] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3110), 1, + sym_identifier, + STATE(897), 1, + sym_dotted_identifier, + STATE(1993), 1, + sym_modifier, + STATE(2417), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1921), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(240), 3, + sym_function_call, + sym_index, + sym_string, + [97173] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3112), 1, + sym_identifier, + STATE(717), 1, + sym_dotted_identifier, + STATE(2005), 1, + sym_modifier, + STATE(2379), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1922), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(240), 3, + sym_function_call, + sym_index, + sym_string, + [97231] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3108), 1, + sym_identifier, + STATE(649), 1, + sym_dotted_identifier, + STATE(1958), 1, + sym_modifier, + STATE(2441), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1923), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(240), 3, + sym_function_call, + sym_index, + sym_string, + [97289] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3112), 1, + sym_identifier, + STATE(717), 1, + sym_dotted_identifier, + STATE(1944), 1, + sym_modifier, + STATE(2391), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1924), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(67), 3, + anon_sym_static, + anon_sym_final, + anon_sym_synchronized, + STATE(240), 3, + sym_function_call, + sym_index, + sym_string, + [97347] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3114), 1, + sym_identifier, + ACTIONS(3116), 1, + anon_sym_SLASH, + ACTIONS(3118), 1, + anon_sym_SQUOTE, + ACTIONS(3120), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3122), 1, + anon_sym_DQUOTE, + ACTIONS(3124), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3126), 1, + anon_sym_DOLLAR_SLASH, + STATE(735), 1, + sym_increment_op, + STATE(1900), 1, + sym__prefix_expression, + STATE(2551), 1, + sym_assignment, + ACTIONS(25), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1914), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1925), 2, + sym_comment, + sym_groovy_doc, + STATE(1903), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [97405] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3130), 1, + anon_sym_RPAREN, + STATE(1926), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3132), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(3128), 12, + anon_sym_SLASH, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [97441] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3136), 1, + anon_sym_GT, + STATE(1927), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3138), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(3134), 12, + anon_sym_SLASH, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [97477] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3140), 1, + anon_sym_RPAREN, + STATE(1928), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3132), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(3128), 12, + anon_sym_SLASH, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [97513] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3142), 1, + anon_sym_GT, + STATE(1929), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3138), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(3134), 12, + anon_sym_SLASH, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [97549] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3144), 1, + anon_sym_RPAREN, + STATE(1930), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3132), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(3128), 12, + anon_sym_SLASH, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [97585] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3146), 1, + anon_sym_RPAREN, + STATE(1931), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3132), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(3128), 12, + anon_sym_SLASH, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [97621] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3148), 1, + anon_sym_RPAREN, + STATE(1932), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3132), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(3128), 12, + anon_sym_SLASH, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [97657] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3150), 1, + anon_sym_RPAREN, + STATE(1933), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3132), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(3128), 12, + anon_sym_SLASH, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [97693] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3152), 1, + anon_sym_RPAREN, + STATE(1934), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3132), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(3128), 12, + anon_sym_SLASH, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [97729] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3154), 1, + anon_sym_RPAREN, + STATE(1935), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3132), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(3128), 12, + anon_sym_SLASH, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [97765] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3156), 1, + anon_sym_DASH_GT, + STATE(1936), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3132), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(3128), 12, + anon_sym_SLASH, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [97801] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3158), 1, + anon_sym_DASH_GT, + STATE(1937), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3132), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(3128), 12, + anon_sym_SLASH, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [97837] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1938), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3138), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(3134), 12, + anon_sym_SLASH, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [97870] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1939), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3132), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_SLASH, + ACTIONS(3128), 12, + anon_sym_SLASH, + sym_identifier, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_int, + anon_sym_boolean, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_float, + anon_sym_double, + anon_sym_void, + [97903] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2202), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1940), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [97951] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2165), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1941), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [97999] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3162), 1, + sym_identifier, + ACTIONS(3164), 1, + anon_sym_SLASH, + ACTIONS(3166), 1, + anon_sym_SQUOTE, + ACTIONS(3168), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3170), 1, + anon_sym_DQUOTE, + ACTIONS(3172), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3174), 1, + anon_sym_DOLLAR_SLASH, + STATE(743), 1, + sym__prefix_expression, + STATE(779), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1942), 2, + sym_comment, + sym_groovy_doc, + STATE(654), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [98047] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3176), 1, + sym_identifier, + STATE(898), 1, + sym_dotted_identifier, + STATE(2401), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1943), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 3, + sym_function_call, + sym_index, + sym_string, + [98097] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3178), 1, + sym_identifier, + STATE(716), 1, + sym_dotted_identifier, + STATE(2391), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1944), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 3, + sym_function_call, + sym_index, + sym_string, + [98147] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3180), 1, + sym_identifier, + ACTIONS(3182), 1, + anon_sym_SLASH, + ACTIONS(3184), 1, + anon_sym_SQUOTE, + ACTIONS(3186), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3188), 1, + anon_sym_DQUOTE, + ACTIONS(3190), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3192), 1, + anon_sym_DOLLAR_SLASH, + STATE(847), 1, + sym__prefix_expression, + STATE(851), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1945), 2, + sym_comment, + sym_groovy_doc, + STATE(858), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [98195] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2290), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1946), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [98243] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3194), 1, + sym_identifier, + ACTIONS(3196), 1, + anon_sym_SLASH, + ACTIONS(3198), 1, + anon_sym_SQUOTE, + ACTIONS(3200), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3202), 1, + anon_sym_DQUOTE, + ACTIONS(3204), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3206), 1, + anon_sym_DOLLAR_SLASH, + STATE(802), 1, + sym__prefix_expression, + STATE(814), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1947), 2, + sym_comment, + sym_groovy_doc, + STATE(824), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [98291] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3208), 1, + sym_identifier, + STATE(941), 1, + sym_dotted_identifier, + STATE(2417), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1948), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 3, + sym_function_call, + sym_index, + sym_string, + [98341] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2280), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1949), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [98389] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2275), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1950), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [98437] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3210), 1, + sym_identifier, + STATE(2013), 1, + sym_dotted_identifier, + STATE(2402), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1951), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 3, + sym_function_call, + sym_index, + sym_string, + [98487] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2255), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1952), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [98535] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3212), 1, + sym_identifier, + STATE(215), 1, + sym__prefix_expression, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1953), 2, + sym_comment, + sym_groovy_doc, + STATE(224), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [98583] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2253), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1954), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [98631] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3214), 1, + sym_identifier, + STATE(653), 1, + sym_dotted_identifier, + STATE(2402), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1955), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 3, + sym_function_call, + sym_index, + sym_string, + [98681] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2182), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1956), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [98729] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2251), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1957), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [98777] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3216), 1, + sym_identifier, + STATE(650), 1, + sym_dotted_identifier, + STATE(2441), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1958), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 3, + sym_function_call, + sym_index, + sym_string, + [98827] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3214), 1, + sym_identifier, + STATE(653), 1, + sym_dotted_identifier, + STATE(2441), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1959), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 3, + sym_function_call, + sym_index, + sym_string, + [98877] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2249), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1960), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [98925] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2190), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1961), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [98973] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(898), 1, + anon_sym_SLASH, + ACTIONS(916), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(920), 1, + anon_sym_DQUOTE, + ACTIONS(922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(924), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3218), 1, + sym_identifier, + STATE(63), 1, + sym__prefix_expression, + STATE(66), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1962), 2, + sym_comment, + sym_groovy_doc, + STATE(76), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [99021] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3220), 1, + sym_identifier, + STATE(712), 1, + sym_dotted_identifier, + STATE(2391), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1963), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 3, + sym_function_call, + sym_index, + sym_string, + [99071] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3222), 1, + sym_identifier, + STATE(2006), 1, + sym_dotted_identifier, + STATE(2402), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1964), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 3, + sym_function_call, + sym_index, + sym_string, + [99121] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2235), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1965), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [99169] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2265), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1966), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [99217] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(856), 1, + anon_sym_SLASH, + ACTIONS(874), 1, + anon_sym_SQUOTE, + ACTIONS(876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(882), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3162), 1, + sym_identifier, + STATE(215), 1, + sym__prefix_expression, + STATE(230), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1967), 2, + sym_comment, + sym_groovy_doc, + STATE(654), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [99265] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3220), 1, + sym_identifier, + STATE(712), 1, + sym_dotted_identifier, + STATE(2379), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1968), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 3, + sym_function_call, + sym_index, + sym_string, + [99315] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1781), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, + anon_sym_SQUOTE, + ACTIONS(1785), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1787), 1, + anon_sym_DQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1791), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3162), 1, + sym_identifier, + STATE(2008), 1, + sym__prefix_expression, + STATE(844), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1969), 2, + sym_comment, + sym_groovy_doc, + STATE(654), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [99363] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2274), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1970), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [99411] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(223), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1971), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [99459] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2160), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1972), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [99507] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2208), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1973), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [99555] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(938), 1, + anon_sym_SLASH, + ACTIONS(956), 1, + anon_sym_SQUOTE, + ACTIONS(958), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(960), 1, + anon_sym_DQUOTE, + ACTIONS(962), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(964), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3224), 1, + sym_identifier, + STATE(231), 1, + sym__prefix_expression, + STATE(260), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1974), 2, + sym_comment, + sym_groovy_doc, + STATE(241), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [99603] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1108), 1, + anon_sym_SLASH, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1128), 1, + anon_sym_DQUOTE, + ACTIONS(1130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1132), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3226), 1, + sym_identifier, + STATE(82), 1, + sym__prefix_expression, + STATE(89), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1975), 2, + sym_comment, + sym_groovy_doc, + STATE(132), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [99651] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3214), 1, + sym_identifier, + STATE(653), 1, + sym_dotted_identifier, + STATE(2445), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1976), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 3, + sym_function_call, + sym_index, + sym_string, + [99701] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2273), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1977), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [99749] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2268), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1978), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [99797] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2267), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1979), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [99845] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3228), 1, + sym_identifier, + STATE(863), 1, + sym_dotted_identifier, + STATE(2401), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1980), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 3, + sym_function_call, + sym_index, + sym_string, + [99895] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2262), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1981), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [99943] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2173), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1982), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [99991] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2170), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1983), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [100039] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2169), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1984), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [100087] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2168), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1985), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [100135] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2167), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1986), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [100183] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2166), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1987), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [100231] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2187), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1988), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [100279] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2234), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1989), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [100327] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(816), 1, + anon_sym_SLASH, + ACTIONS(834), 1, + anon_sym_SQUOTE, + ACTIONS(836), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(842), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3230), 1, + sym_identifier, + STATE(202), 1, + sym__prefix_expression, + STATE(214), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1990), 2, + sym_comment, + sym_groovy_doc, + STATE(216), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [100375] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2217), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1991), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [100423] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3216), 1, + sym_identifier, + STATE(650), 1, + sym_dotted_identifier, + STATE(2445), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1992), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 3, + sym_function_call, + sym_index, + sym_string, + [100473] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3232), 1, + sym_identifier, + STATE(913), 1, + sym_dotted_identifier, + STATE(2417), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1993), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 3, + sym_function_call, + sym_index, + sym_string, + [100523] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2220), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1994), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [100571] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2260), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1995), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [100619] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2259), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1996), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [100667] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2227), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1997), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [100715] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2189), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1998), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [100763] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2206), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(1999), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [100811] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2163), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(2000), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [100859] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2175), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(2001), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [100907] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2176), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(2002), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [100955] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2186), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(2003), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [101003] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3160), 1, + sym_identifier, + STATE(2223), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(2004), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 4, + sym_dotted_identifier, + sym_function_call, + sym_index, + sym_string, + [101051] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1064), 1, + anon_sym_SLASH, + ACTIONS(1080), 1, + anon_sym_SQUOTE, + ACTIONS(1082), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1084), 1, + anon_sym_DQUOTE, + ACTIONS(1086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1088), 1, + anon_sym_DOLLAR_SLASH, + ACTIONS(3178), 1, + sym_identifier, + STATE(716), 1, + sym_dotted_identifier, + STATE(2379), 1, + sym__prefix_expression, + STATE(261), 2, + sym__plain_string, + sym__interpolate_string, + STATE(2005), 2, + sym_comment, + sym_groovy_doc, + STATE(240), 3, + sym_function_call, + sym_index, + sym_string, + [101101] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(97), 1, + anon_sym_DOT, + ACTIONS(3234), 1, + anon_sym_DOT_STAR, + ACTIONS(3236), 1, + anon_sym_as, + ACTIONS(101), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + STATE(2006), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1451), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [101137] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(97), 1, + anon_sym_DOT, + ACTIONS(3238), 1, + anon_sym_DOT_STAR, + ACTIONS(3240), 1, + anon_sym_as, + ACTIONS(101), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + STATE(2007), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1443), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [101173] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3242), 1, + anon_sym_DOT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3246), 1, + anon_sym_LBRACK, + STATE(846), 1, + sym_argument_list, + STATE(2008), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(261), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [101208] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_LPAREN, + ACTIONS(3248), 1, + anon_sym_EQ, + STATE(651), 1, + sym_parameter_list, + STATE(2009), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1714), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [101240] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_LPAREN, + ACTIONS(3250), 1, + anon_sym_EQ, + STATE(647), 1, + sym_parameter_list, + STATE(2010), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1699), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [101272] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_LPAREN, + ACTIONS(3252), 1, + anon_sym_EQ, + STATE(648), 1, + sym_parameter_list, + STATE(2011), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1720), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [101304] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(97), 1, + anon_sym_DOT, + ACTIONS(3254), 1, + anon_sym_DOT_STAR, + ACTIONS(3256), 1, + anon_sym_as, + ACTIONS(101), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + STATE(2012), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1443), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + [101338] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(97), 1, + anon_sym_DOT, + ACTIONS(3258), 1, + anon_sym_DOT_STAR, + ACTIONS(3260), 1, + anon_sym_as, + ACTIONS(101), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + STATE(2013), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1451), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + [101372] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_LPAREN, + ACTIONS(3262), 1, + anon_sym_EQ, + STATE(652), 1, + sym_parameter_list, + STATE(2014), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1683), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [101404] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_LPAREN, + ACTIONS(3264), 1, + anon_sym_EQ, + STATE(651), 1, + sym_parameter_list, + STATE(2015), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1708), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [101436] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_LPAREN, + ACTIONS(3266), 1, + anon_sym_EQ, + STATE(647), 1, + sym_parameter_list, + STATE(2016), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1693), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [101468] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3268), 1, + sym_identifier, + ACTIONS(3270), 1, + anon_sym_LPAREN, + STATE(2027), 1, + aux_sym_map_repeat1, + STATE(2528), 1, + sym_map_item, + STATE(2632), 1, + sym_number_literal, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + STATE(2017), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + [101506] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3268), 1, + sym_identifier, + ACTIONS(3270), 1, + anon_sym_LPAREN, + STATE(2027), 1, + aux_sym_map_repeat1, + STATE(2502), 1, + sym_map_item, + STATE(2632), 1, + sym_number_literal, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + STATE(2018), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + [101544] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3268), 1, + sym_identifier, + ACTIONS(3270), 1, + anon_sym_LPAREN, + STATE(2027), 1, + aux_sym_map_repeat1, + STATE(2582), 1, + sym_map_item, + STATE(2632), 1, + sym_number_literal, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + STATE(2019), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + [101582] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_EQ, + STATE(648), 1, + sym_parameter_list, + STATE(2020), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1665), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [101614] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_LPAREN, + ACTIONS(3274), 1, + anon_sym_EQ, + STATE(652), 1, + sym_parameter_list, + STATE(2021), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1677), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [101646] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3268), 1, + sym_identifier, + ACTIONS(3270), 1, + anon_sym_LPAREN, + STATE(2027), 1, + aux_sym_map_repeat1, + STATE(2589), 1, + sym_map_item, + STATE(2632), 1, + sym_number_literal, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + STATE(2022), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + [101684] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(97), 1, + anon_sym_LBRACK, + ACTIONS(3276), 1, + anon_sym_EQ, + STATE(2023), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(888), 3, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RPAREN, + ACTIONS(101), 5, + anon_sym_DOT, + anon_sym_LT, + anon_sym_LPAREN, + sym_identifier, + anon_sym_LBRACK_RBRACK, + [101716] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3268), 1, + sym_identifier, + ACTIONS(3270), 1, + anon_sym_LPAREN, + STATE(2027), 1, + aux_sym_map_repeat1, + STATE(2583), 1, + sym_map_item, + STATE(2632), 1, + sym_number_literal, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + STATE(2024), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + [101754] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3268), 1, + sym_identifier, + ACTIONS(3270), 1, + anon_sym_LPAREN, + STATE(2027), 1, + aux_sym_map_repeat1, + STATE(2554), 1, + sym_map_item, + STATE(2632), 1, + sym_number_literal, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + STATE(2025), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + [101792] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3268), 1, + sym_identifier, + ACTIONS(3270), 1, + anon_sym_LPAREN, + STATE(2027), 1, + aux_sym_map_repeat1, + STATE(2609), 1, + sym_map_item, + STATE(2632), 1, + sym_number_literal, + ACTIONS(1076), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + STATE(2026), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1078), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + [101830] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3278), 1, + sym_identifier, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(2615), 1, + sym_map_item, + STATE(2632), 1, + sym_number_literal, + ACTIONS(3284), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + ACTIONS(3287), 3, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + STATE(2027), 3, + sym_comment, + sym_groovy_doc, + aux_sym_map_repeat1, + [101866] = 9, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3297), 1, + anon_sym_STAR_SLASH, + ACTIONS(3299), 1, + anon_sym_ATparam, + ACTIONS(3302), 1, + anon_sym_ATthrows, + STATE(2194), 2, + sym_groovy_doc_param, + sym_groovy_doc_throws, + ACTIONS(3294), 3, + aux_sym_groovy_doc_token3, + sym_groovy_doc_tag, + sym_groovy_doc_at_text, + STATE(2028), 3, + sym_comment, + sym_groovy_doc, + aux_sym_groovy_doc_repeat1, + [101899] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3307), 1, + anon_sym_STAR_SLASH, + ACTIONS(3309), 1, + anon_sym_ATparam, + ACTIONS(3311), 1, + anon_sym_ATthrows, + STATE(2030), 1, + aux_sym_groovy_doc_repeat1, + STATE(2029), 2, + sym_comment, + sym_groovy_doc, + STATE(2194), 2, + sym_groovy_doc_param, + sym_groovy_doc_throws, + ACTIONS(3305), 3, + aux_sym_groovy_doc_token3, + sym_groovy_doc_tag, + sym_groovy_doc_at_text, + [101934] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3309), 1, + anon_sym_ATparam, + ACTIONS(3311), 1, + anon_sym_ATthrows, + ACTIONS(3313), 1, + anon_sym_STAR_SLASH, + STATE(2028), 1, + aux_sym_groovy_doc_repeat1, + STATE(2030), 2, + sym_comment, + sym_groovy_doc, + STATE(2194), 2, + sym_groovy_doc_param, + sym_groovy_doc_throws, + ACTIONS(3305), 3, + aux_sym_groovy_doc_token3, + sym_groovy_doc_tag, + sym_groovy_doc_at_text, + [101969] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3315), 1, + anon_sym_DOT, + ACTIONS(3317), 1, + anon_sym_LPAREN, + ACTIONS(3319), 1, + anon_sym_LBRACK, + STATE(2046), 1, + sym_argument_list, + STATE(2031), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2208), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_COMMA, + sym_identifier, + anon_sym_LBRACK_RBRACK, + [102002] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3321), 1, + anon_sym_DOT, + ACTIONS(3325), 1, + anon_sym_LPAREN, + ACTIONS(3327), 1, + anon_sym_LBRACK, + STATE(1015), 1, + sym_argument_list, + ACTIONS(3323), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2032), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2208), 3, + anon_sym_LT, + sym_identifier, + anon_sym_LBRACK_RBRACK, + [102037] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(335), 1, + anon_sym_LBRACK, + STATE(2033), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(337), 7, + anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_LPAREN, + sym_identifier, + anon_sym_LBRACK_RBRACK, + [102063] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3331), 1, + anon_sym_RBRACK, + ACTIONS(3333), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + STATE(2034), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3329), 5, + anon_sym_LPAREN, + sym_identifier, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + [102091] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(283), 1, + anon_sym_LBRACK, + STATE(2035), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(285), 7, + anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_LPAREN, + sym_identifier, + anon_sym_LBRACK_RBRACK, + [102117] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3335), 1, + anon_sym_COMMA, + STATE(2036), 3, + sym_comment, + sym_groovy_doc, + aux_sym__juxt_argument_list_repeat1, + ACTIONS(377), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [102143] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(279), 1, + anon_sym_LBRACK, + STATE(2037), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(281), 7, + anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_LPAREN, + sym_identifier, + anon_sym_LBRACK_RBRACK, + [102169] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(339), 1, + anon_sym_LBRACK, + STATE(2038), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(341), 7, + anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_LPAREN, + sym_identifier, + anon_sym_LBRACK_RBRACK, + [102195] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(77), 1, + anon_sym_LBRACK, + STATE(2039), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(79), 7, + anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_LPAREN, + sym_identifier, + anon_sym_LBRACK_RBRACK, + [102221] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(81), 1, + anon_sym_LBRACK, + STATE(2040), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(83), 7, + anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_LPAREN, + sym_identifier, + anon_sym_LBRACK_RBRACK, + [102247] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(69), 1, + anon_sym_LBRACK, + STATE(2041), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(71), 7, + anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_LPAREN, + sym_identifier, + anon_sym_LBRACK_RBRACK, + [102273] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(85), 1, + anon_sym_LBRACK, + STATE(2042), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(87), 7, + anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_LPAREN, + sym_identifier, + anon_sym_LBRACK_RBRACK, + [102299] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1730), 1, + anon_sym_LPAREN, + ACTIONS(3248), 1, + anon_sym_EQ, + STATE(1073), 1, + sym_parameter_list, + STATE(2043), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1714), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + [102329] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(343), 1, + anon_sym_LBRACK, + STATE(2044), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(345), 7, + anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_LPAREN, + sym_identifier, + anon_sym_LBRACK_RBRACK, + [102355] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(271), 1, + anon_sym_LBRACK, + STATE(2045), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(273), 7, + anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_LPAREN, + sym_identifier, + anon_sym_LBRACK_RBRACK, + [102381] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(73), 1, + anon_sym_LBRACK, + STATE(2046), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(75), 7, + anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_LPAREN, + sym_identifier, + anon_sym_LBRACK_RBRACK, + [102407] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3338), 1, + anon_sym_as, + STATE(2047), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1645), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [102433] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3340), 1, + anon_sym_as, + STATE(2048), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1639), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [102459] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1730), 1, + anon_sym_LPAREN, + ACTIONS(3250), 1, + anon_sym_EQ, + STATE(997), 1, + sym_parameter_list, + STATE(2049), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1699), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + [102489] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1730), 1, + anon_sym_LPAREN, + ACTIONS(3266), 1, + anon_sym_EQ, + STATE(997), 1, + sym_parameter_list, + STATE(2050), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1693), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + [102519] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(275), 1, + anon_sym_LBRACK, + STATE(2051), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(277), 7, + anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_LPAREN, + sym_identifier, + anon_sym_LBRACK_RBRACK, + [102545] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(97), 1, + anon_sym_LBRACK, + STATE(2052), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(101), 7, + anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_LPAREN, + sym_identifier, + anon_sym_LBRACK_RBRACK, + [102571] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3342), 1, + anon_sym_RBRACK, + ACTIONS(3333), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + STATE(2053), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3329), 5, + anon_sym_LPAREN, + sym_identifier, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + [102599] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3344), 1, + anon_sym_RBRACK, + ACTIONS(3333), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + STATE(2054), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3329), 5, + anon_sym_LPAREN, + sym_identifier, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + [102627] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3346), 1, + anon_sym_RBRACK, + ACTIONS(3333), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + STATE(2055), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3329), 5, + anon_sym_LPAREN, + sym_identifier, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + [102655] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3348), 1, + anon_sym_RBRACK, + ACTIONS(3333), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + STATE(2056), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3329), 5, + anon_sym_LPAREN, + sym_identifier, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + [102683] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3350), 1, + anon_sym_RBRACK, + ACTIONS(3333), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + STATE(2057), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3329), 5, + anon_sym_LPAREN, + sym_identifier, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + [102711] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3352), 1, + anon_sym_RBRACK, + ACTIONS(3333), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + STATE(2058), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3329), 5, + anon_sym_LPAREN, + sym_identifier, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + [102739] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1730), 1, + anon_sym_LPAREN, + ACTIONS(3264), 1, + anon_sym_EQ, + STATE(1073), 1, + sym_parameter_list, + STATE(2059), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1708), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + [102769] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1730), 1, + anon_sym_LPAREN, + ACTIONS(3262), 1, + anon_sym_EQ, + STATE(1059), 1, + sym_parameter_list, + STATE(2060), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1683), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + [102799] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1730), 1, + anon_sym_LPAREN, + ACTIONS(3274), 1, + anon_sym_EQ, + STATE(1059), 1, + sym_parameter_list, + STATE(2061), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1677), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + [102829] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3354), 1, + anon_sym_RBRACK, + ACTIONS(3333), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + STATE(2062), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3329), 5, + anon_sym_LPAREN, + sym_identifier, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + [102857] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3356), 1, + anon_sym_RBRACK, + ACTIONS(3333), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + STATE(2063), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3329), 5, + anon_sym_LPAREN, + sym_identifier, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + [102885] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3358), 1, + anon_sym_RBRACK, + ACTIONS(3333), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + STATE(2064), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3329), 5, + anon_sym_LPAREN, + sym_identifier, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + [102913] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1730), 1, + anon_sym_LPAREN, + ACTIONS(3252), 1, + anon_sym_EQ, + STATE(1066), 1, + sym_parameter_list, + STATE(2065), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1720), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + [102943] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1730), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_EQ, + STATE(1066), 1, + sym_parameter_list, + STATE(2066), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1665), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + [102973] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3360), 1, + anon_sym_RBRACK, + ACTIONS(3333), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + STATE(2067), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3329), 5, + anon_sym_LPAREN, + sym_identifier, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + [103001] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3362), 1, + anon_sym_RBRACK, + ACTIONS(3333), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + STATE(2068), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3329), 5, + anon_sym_LPAREN, + sym_identifier, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + [103029] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3364), 1, + anon_sym_RBRACK, + ACTIONS(3333), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + STATE(2069), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3329), 5, + anon_sym_LPAREN, + sym_identifier, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + [103057] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3366), 1, + anon_sym_RBRACK, + ACTIONS(3333), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + STATE(2070), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3329), 5, + anon_sym_LPAREN, + sym_identifier, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + [103085] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3372), 1, + anon_sym_SLASH_DOLLAR, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + STATE(2084), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2071), 2, + sym_comment, + sym_groovy_doc, + [103118] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3376), 1, + anon_sym_in, + ACTIONS(97), 2, + sym_identifier, + anon_sym_LBRACK, + STATE(2072), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(101), 4, + anon_sym_DOT, + anon_sym_LT, + anon_sym_LPAREN, + anon_sym_LBRACK_RBRACK, + [103145] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3378), 1, + anon_sym_in, + ACTIONS(97), 2, + sym_identifier, + anon_sym_LBRACK, + STATE(2073), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(101), 4, + anon_sym_DOT, + anon_sym_LT, + anon_sym_LPAREN, + anon_sym_LBRACK_RBRACK, + [103172] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3380), 1, + anon_sym_in, + ACTIONS(97), 2, + sym_identifier, + anon_sym_LBRACK, + STATE(2074), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(101), 4, + anon_sym_DOT, + anon_sym_LT, + anon_sym_LPAREN, + anon_sym_LBRACK_RBRACK, + [103199] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3382), 1, + anon_sym_in, + ACTIONS(97), 2, + sym_identifier, + anon_sym_LBRACK, + STATE(2075), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(101), 4, + anon_sym_DOT, + anon_sym_LT, + anon_sym_LPAREN, + anon_sym_LBRACK_RBRACK, + [103226] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3384), 1, + anon_sym_in, + ACTIONS(97), 2, + sym_identifier, + anon_sym_LBRACK, + STATE(2076), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(101), 4, + anon_sym_DOT, + anon_sym_LT, + anon_sym_LPAREN, + anon_sym_LBRACK_RBRACK, + [103253] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3372), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + STATE(2081), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2077), 2, + sym_comment, + sym_groovy_doc, + [103288] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + ACTIONS(3394), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2083), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2078), 2, + sym_comment, + sym_groovy_doc, + [103323] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + ACTIONS(3394), 1, + anon_sym_SLASH_DOLLAR, + STATE(2089), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2079), 2, + sym_comment, + sym_groovy_doc, + [103356] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3333), 2, + aux_sym_number_literal_token1, + aux_sym_number_literal_token4, + STATE(2080), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3329), 5, + anon_sym_LPAREN, + sym_identifier, + aux_sym_number_literal_token2, + aux_sym_number_literal_token3, + aux_sym_number_literal_token5, + [103381] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + ACTIONS(3396), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2092), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2081), 2, + sym_comment, + sym_groovy_doc, + [103416] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3398), 1, + anon_sym_in, + ACTIONS(97), 2, + sym_identifier, + anon_sym_LBRACK, + STATE(2082), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(101), 4, + anon_sym_DOT, + anon_sym_LT, + anon_sym_LPAREN, + anon_sym_LBRACK_RBRACK, + [103443] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + ACTIONS(3400), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2092), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2083), 2, + sym_comment, + sym_groovy_doc, + [103478] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + ACTIONS(3396), 1, + anon_sym_SLASH_DOLLAR, + STATE(2086), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2084), 2, + sym_comment, + sym_groovy_doc, + [103511] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3402), 1, + anon_sym_in, + ACTIONS(97), 2, + sym_identifier, + anon_sym_LBRACK, + STATE(2085), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(101), 4, + anon_sym_DOT, + anon_sym_LT, + anon_sym_LPAREN, + anon_sym_LBRACK_RBRACK, + [103538] = 9, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3407), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3410), 1, + anon_sym_SLASH_DOLLAR, + ACTIONS(3412), 1, + anon_sym_DOLLAR, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3404), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2086), 3, + sym_comment, + sym_groovy_doc, + aux_sym__interpolate_string_repeat4, + [103569] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + ACTIONS(3415), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2099), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2087), 2, + sym_comment, + sym_groovy_doc, + [103604] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + ACTIONS(3415), 1, + anon_sym_SLASH_DOLLAR, + STATE(2100), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2088), 2, + sym_comment, + sym_groovy_doc, + [103637] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + ACTIONS(3400), 1, + anon_sym_SLASH_DOLLAR, + STATE(2086), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2089), 2, + sym_comment, + sym_groovy_doc, + [103670] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2196), 1, + anon_sym_DOT, + ACTIONS(2206), 1, + anon_sym_LBRACK, + ACTIONS(2216), 1, + anon_sym_LPAREN, + STATE(479), 1, + sym_argument_list, + STATE(2090), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2208), 3, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_LBRACK_RBRACK, + [103701] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(2143), 1, + aux_sym__juxt_argument_list_repeat1, + STATE(2091), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(289), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [103726] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3419), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3422), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3425), 1, + sym_escape_sequence, + ACTIONS(3428), 1, + anon_sym_DOLLAR, + STATE(2359), 1, + sym_interpolation, + STATE(2092), 3, + sym_comment, + sym_groovy_doc, + aux_sym__interpolate_string_repeat2, + [103759] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + ACTIONS(3431), 1, + anon_sym_SLASH_DOLLAR, + STATE(2095), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2093), 2, + sym_comment, + sym_groovy_doc, + [103792] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3433), 1, + anon_sym_in, + ACTIONS(97), 2, + sym_identifier, + anon_sym_LBRACK, + STATE(2094), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(101), 4, + anon_sym_DOT, + anon_sym_LT, + anon_sym_LPAREN, + anon_sym_LBRACK_RBRACK, + [103819] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + ACTIONS(3435), 1, + anon_sym_SLASH_DOLLAR, + STATE(2086), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2095), 2, + sym_comment, + sym_groovy_doc, + [103852] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + ACTIONS(3437), 1, + anon_sym_SLASH_DOLLAR, + STATE(2110), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2096), 2, + sym_comment, + sym_groovy_doc, + [103885] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + ACTIONS(3439), 1, + anon_sym_SLASH_DOLLAR, + STATE(2086), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2097), 2, + sym_comment, + sym_groovy_doc, + [103918] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + ACTIONS(3441), 1, + anon_sym_SLASH_DOLLAR, + STATE(2086), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2098), 2, + sym_comment, + sym_groovy_doc, + [103951] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + ACTIONS(3443), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2092), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2099), 2, + sym_comment, + sym_groovy_doc, + [103986] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + ACTIONS(3443), 1, + anon_sym_SLASH_DOLLAR, + STATE(2086), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2100), 2, + sym_comment, + sym_groovy_doc, + [104019] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + ACTIONS(3441), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2092), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2101), 2, + sym_comment, + sym_groovy_doc, + [104054] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + ACTIONS(3445), 1, + anon_sym_SLASH_DOLLAR, + STATE(2098), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2102), 2, + sym_comment, + sym_groovy_doc, + [104087] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + ACTIONS(3445), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2101), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2103), 2, + sym_comment, + sym_groovy_doc, + [104122] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + ACTIONS(3435), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2092), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2104), 2, + sym_comment, + sym_groovy_doc, + [104157] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + ACTIONS(3447), 1, + anon_sym_SLASH_DOLLAR, + STATE(2086), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2105), 2, + sym_comment, + sym_groovy_doc, + [104190] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + ACTIONS(3447), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2092), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2106), 2, + sym_comment, + sym_groovy_doc, + [104225] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + ACTIONS(3449), 1, + anon_sym_SLASH_DOLLAR, + STATE(2105), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2107), 2, + sym_comment, + sym_groovy_doc, + [104258] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + ACTIONS(3449), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2106), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2108), 2, + sym_comment, + sym_groovy_doc, + [104293] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + ACTIONS(3439), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2092), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2109), 2, + sym_comment, + sym_groovy_doc, + [104328] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + ACTIONS(3451), 1, + anon_sym_SLASH_DOLLAR, + STATE(2086), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2110), 2, + sym_comment, + sym_groovy_doc, + [104361] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + ACTIONS(3451), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2092), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2111), 2, + sym_comment, + sym_groovy_doc, + [104396] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3453), 1, + anon_sym_in, + ACTIONS(97), 2, + sym_identifier, + anon_sym_LBRACK, + STATE(2112), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(101), 4, + anon_sym_DOT, + anon_sym_LT, + anon_sym_LPAREN, + anon_sym_LBRACK_RBRACK, + [104423] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2181), 1, + anon_sym_COMMA, + STATE(2140), 1, + aux_sym__juxt_argument_list_repeat1, + STATE(2113), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(289), 5, + anon_sym_SEMI, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [104450] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3455), 1, + anon_sym_in, + ACTIONS(97), 2, + sym_identifier, + anon_sym_LBRACK, + STATE(2114), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(101), 4, + anon_sym_DOT, + anon_sym_LT, + anon_sym_LPAREN, + anon_sym_LBRACK_RBRACK, + [104477] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + ACTIONS(3457), 1, + anon_sym_SLASH_DOLLAR, + STATE(2086), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2115), 2, + sym_comment, + sym_groovy_doc, + [104510] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + ACTIONS(3457), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2092), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2116), 2, + sym_comment, + sym_groovy_doc, + [104545] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + ACTIONS(3459), 1, + anon_sym_SLASH_DOLLAR, + STATE(2115), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2117), 2, + sym_comment, + sym_groovy_doc, + [104578] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_in, + ACTIONS(97), 2, + sym_identifier, + anon_sym_LBRACK, + STATE(2118), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(101), 4, + anon_sym_DOT, + anon_sym_LT, + anon_sym_LPAREN, + anon_sym_LBRACK_RBRACK, + [104605] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + ACTIONS(3459), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2116), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2119), 2, + sym_comment, + sym_groovy_doc, + [104640] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + ACTIONS(3463), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2092), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2120), 2, + sym_comment, + sym_groovy_doc, + [104675] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + ACTIONS(3465), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2120), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2121), 2, + sym_comment, + sym_groovy_doc, + [104710] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3467), 1, + anon_sym_in, + ACTIONS(97), 2, + sym_identifier, + anon_sym_LBRACK, + STATE(2122), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(101), 4, + anon_sym_DOT, + anon_sym_LT, + anon_sym_LPAREN, + anon_sym_LBRACK_RBRACK, + [104737] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + ACTIONS(3469), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2134), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2123), 2, + sym_comment, + sym_groovy_doc, + [104772] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + ACTIONS(3469), 1, + anon_sym_SLASH_DOLLAR, + STATE(2135), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2124), 2, + sym_comment, + sym_groovy_doc, + [104805] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + ACTIONS(3465), 1, + anon_sym_SLASH_DOLLAR, + STATE(2155), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2125), 2, + sym_comment, + sym_groovy_doc, + [104838] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + ACTIONS(3437), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2111), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2126), 2, + sym_comment, + sym_groovy_doc, + [104873] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3471), 1, + anon_sym_in, + ACTIONS(97), 2, + sym_identifier, + anon_sym_LBRACK, + STATE(2127), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(101), 4, + anon_sym_DOT, + anon_sym_LT, + anon_sym_LPAREN, + anon_sym_LBRACK_RBRACK, + [104900] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3473), 1, + anon_sym_in, + ACTIONS(97), 2, + sym_identifier, + anon_sym_LBRACK, + STATE(2128), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(101), 4, + anon_sym_DOT, + anon_sym_LT, + anon_sym_LPAREN, + anon_sym_LBRACK_RBRACK, + [104927] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + ACTIONS(3475), 1, + anon_sym_SLASH_DOLLAR, + STATE(2086), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2129), 2, + sym_comment, + sym_groovy_doc, + [104960] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + ACTIONS(3477), 1, + anon_sym_SLASH_DOLLAR, + STATE(2086), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2130), 2, + sym_comment, + sym_groovy_doc, + [104993] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + ACTIONS(3475), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2092), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2131), 2, + sym_comment, + sym_groovy_doc, + [105028] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + ACTIONS(3479), 1, + anon_sym_SLASH_DOLLAR, + STATE(2129), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2132), 2, + sym_comment, + sym_groovy_doc, + [105061] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + ACTIONS(3479), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2131), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2133), 2, + sym_comment, + sym_groovy_doc, + [105096] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + ACTIONS(3481), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2092), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2134), 2, + sym_comment, + sym_groovy_doc, + [105131] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + ACTIONS(3481), 1, + anon_sym_SLASH_DOLLAR, + STATE(2086), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2135), 2, + sym_comment, + sym_groovy_doc, + [105164] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3483), 1, + anon_sym_in, + ACTIONS(97), 2, + sym_identifier, + anon_sym_LBRACK, + STATE(2136), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(101), 4, + anon_sym_DOT, + anon_sym_LT, + anon_sym_LPAREN, + anon_sym_LBRACK_RBRACK, + [105191] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + ACTIONS(3477), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2092), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2137), 2, + sym_comment, + sym_groovy_doc, + [105226] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3485), 1, + anon_sym_in, + ACTIONS(97), 2, + sym_identifier, + anon_sym_LBRACK, + STATE(2138), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(101), 4, + anon_sym_DOT, + anon_sym_LT, + anon_sym_LPAREN, + anon_sym_LBRACK_RBRACK, + [105253] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3487), 1, + anon_sym_in, + ACTIONS(97), 2, + sym_identifier, + anon_sym_LBRACK, + STATE(2139), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(101), 4, + anon_sym_DOT, + anon_sym_LT, + anon_sym_LPAREN, + anon_sym_LBRACK_RBRACK, + [105280] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2181), 1, + anon_sym_COMMA, + STATE(2036), 1, + aux_sym__juxt_argument_list_repeat1, + STATE(2140), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1689), 5, + anon_sym_SEMI, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [105307] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + ACTIONS(3489), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2092), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2141), 2, + sym_comment, + sym_groovy_doc, + [105342] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + ACTIONS(3431), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2104), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2142), 2, + sym_comment, + sym_groovy_doc, + [105377] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(2036), 1, + aux_sym__juxt_argument_list_repeat1, + STATE(2143), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1689), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + [105402] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + ACTIONS(3491), 1, + anon_sym_SLASH_DOLLAR, + STATE(2086), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2144), 2, + sym_comment, + sym_groovy_doc, + [105435] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + ACTIONS(3491), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2092), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2145), 2, + sym_comment, + sym_groovy_doc, + [105470] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + ACTIONS(3493), 1, + anon_sym_SLASH_DOLLAR, + STATE(2144), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2146), 2, + sym_comment, + sym_groovy_doc, + [105503] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3495), 1, + anon_sym_in, + ACTIONS(97), 2, + sym_identifier, + anon_sym_LBRACK, + STATE(2147), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(101), 4, + anon_sym_DOT, + anon_sym_LT, + anon_sym_LPAREN, + anon_sym_LBRACK_RBRACK, + [105530] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + ACTIONS(3493), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2145), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2148), 2, + sym_comment, + sym_groovy_doc, + [105565] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + ACTIONS(3497), 1, + anon_sym_SLASH_DOLLAR, + STATE(2097), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2149), 2, + sym_comment, + sym_groovy_doc, + [105598] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + ACTIONS(3499), 1, + anon_sym_SLASH_DOLLAR, + STATE(2130), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2150), 2, + sym_comment, + sym_groovy_doc, + [105631] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + ACTIONS(3499), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2137), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2151), 2, + sym_comment, + sym_groovy_doc, + [105666] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + ACTIONS(3497), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2109), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2152), 2, + sym_comment, + sym_groovy_doc, + [105701] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3501), 1, + anon_sym_in, + ACTIONS(97), 2, + sym_identifier, + anon_sym_LBRACK, + STATE(2153), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(101), 4, + anon_sym_DOT, + anon_sym_LT, + anon_sym_LPAREN, + anon_sym_LBRACK_RBRACK, + [105728] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3503), 1, + anon_sym_in, + ACTIONS(97), 2, + sym_identifier, + anon_sym_LBRACK, + STATE(2154), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(101), 4, + anon_sym_DOT, + anon_sym_LT, + anon_sym_LPAREN, + anon_sym_LBRACK_RBRACK, + [105755] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + ACTIONS(3463), 1, + anon_sym_SLASH_DOLLAR, + STATE(2086), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2155), 2, + sym_comment, + sym_groovy_doc, + [105788] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3386), 1, + aux_sym__interpolate_string_token2, + ACTIONS(3388), 1, + aux_sym__interpolate_string_token3, + ACTIONS(3390), 1, + sym_escape_sequence, + ACTIONS(3392), 1, + anon_sym_DOLLAR, + ACTIONS(3505), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2141), 1, + aux_sym__interpolate_string_repeat2, + STATE(2359), 1, + sym_interpolation, + STATE(2156), 2, + sym_comment, + sym_groovy_doc, + [105823] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + ACTIONS(3505), 1, + anon_sym_SLASH_DOLLAR, + STATE(2158), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2157), 2, + sym_comment, + sym_groovy_doc, + [105856] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3370), 1, + aux_sym__interpolate_string_token5, + ACTIONS(3374), 1, + anon_sym_DOLLAR, + ACTIONS(3489), 1, + anon_sym_SLASH_DOLLAR, + STATE(2086), 1, + aux_sym__interpolate_string_repeat4, + STATE(2354), 1, + sym_interpolation, + ACTIONS(3368), 2, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + STATE(2158), 2, + sym_comment, + sym_groovy_doc, + [105889] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3509), 1, + anon_sym_STAR_SLASH, + STATE(2159), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3507), 5, + aux_sym_groovy_doc_token3, + anon_sym_ATparam, + anon_sym_ATthrows, + sym_groovy_doc_tag, + sym_groovy_doc_at_text, + [105913] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(751), 1, + sym_closure, + STATE(2160), 2, + sym_comment, + sym_groovy_doc, + [105945] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3513), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + STATE(2213), 1, + aux_sym__plain_string_repeat2, + STATE(2161), 2, + sym_comment, + sym_groovy_doc, + [105977] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3489), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2212), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2162), 2, + sym_comment, + sym_groovy_doc, + [106009] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(1299), 1, + sym_closure, + STATE(2163), 2, + sym_comment, + sym_groovy_doc, + [106041] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3489), 1, + anon_sym_SLASH, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2229), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2164), 2, + sym_comment, + sym_groovy_doc, + [106073] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(1029), 1, + sym_closure, + STATE(2165), 2, + sym_comment, + sym_groovy_doc, + [106105] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(772), 1, + sym_closure, + STATE(2166), 2, + sym_comment, + sym_groovy_doc, + [106137] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(1044), 1, + sym_closure, + STATE(2167), 2, + sym_comment, + sym_groovy_doc, + [106169] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(1045), 1, + sym_closure, + STATE(2168), 2, + sym_comment, + sym_groovy_doc, + [106201] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(1050), 1, + sym_closure, + STATE(2169), 2, + sym_comment, + sym_groovy_doc, + [106233] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(1051), 1, + sym_closure, + STATE(2170), 2, + sym_comment, + sym_groovy_doc, + [106265] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3499), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2195), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2171), 2, + sym_comment, + sym_groovy_doc, + [106297] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3505), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2162), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2172), 2, + sym_comment, + sym_groovy_doc, + [106329] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(1053), 1, + sym_closure, + STATE(2173), 2, + sym_comment, + sym_groovy_doc, + [106361] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + ACTIONS(3535), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2161), 1, + aux_sym__plain_string_repeat2, + STATE(2174), 2, + sym_comment, + sym_groovy_doc, + [106393] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(1294), 1, + sym_closure, + STATE(2175), 2, + sym_comment, + sym_groovy_doc, + [106425] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(1321), 1, + sym_closure, + STATE(2176), 2, + sym_comment, + sym_groovy_doc, + [106457] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + ACTIONS(3537), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2183), 1, + aux_sym__plain_string_repeat2, + STATE(2177), 2, + sym_comment, + sym_groovy_doc, + [106489] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3493), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2184), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2178), 2, + sym_comment, + sym_groovy_doc, + [106521] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3541), 1, + anon_sym_STAR_SLASH, + STATE(2179), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3539), 5, + aux_sym_groovy_doc_token3, + anon_sym_ATparam, + anon_sym_ATthrows, + sym_groovy_doc_tag, + sym_groovy_doc_at_text, + [106545] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3463), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2212), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2180), 2, + sym_comment, + sym_groovy_doc, + [106577] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3491), 1, + anon_sym_SLASH, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2229), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2181), 2, + sym_comment, + sym_groovy_doc, + [106609] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(757), 1, + sym_closure, + STATE(2182), 2, + sym_comment, + sym_groovy_doc, + [106641] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + ACTIONS(3543), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2213), 1, + aux_sym__plain_string_repeat2, + STATE(2183), 2, + sym_comment, + sym_groovy_doc, + [106673] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3491), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2212), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2184), 2, + sym_comment, + sym_groovy_doc, + [106705] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(349), 1, + anon_sym_LBRACK, + ACTIONS(3545), 1, + anon_sym_DOT, + ACTIONS(3547), 1, + anon_sym_LPAREN, + STATE(88), 1, + sym_argument_list, + ACTIONS(2238), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2185), 2, + sym_comment, + sym_groovy_doc, + [106735] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(1461), 1, + sym_closure, + STATE(2186), 2, + sym_comment, + sym_groovy_doc, + [106767] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(1021), 1, + sym_closure, + STATE(2187), 2, + sym_comment, + sym_groovy_doc, + [106799] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3477), 1, + anon_sym_SLASH, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2229), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2188), 2, + sym_comment, + sym_groovy_doc, + [106831] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(1373), 1, + sym_closure, + STATE(2189), 2, + sym_comment, + sym_groovy_doc, + [106863] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(718), 1, + sym_closure, + STATE(2190), 2, + sym_comment, + sym_groovy_doc, + [106895] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + ACTIONS(3549), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2207), 1, + aux_sym__plain_string_repeat2, + STATE(2191), 2, + sym_comment, + sym_groovy_doc, + [106927] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3394), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2211), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2192), 2, + sym_comment, + sym_groovy_doc, + [106959] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + ACTIONS(3551), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2213), 1, + aux_sym__plain_string_repeat2, + STATE(2193), 2, + sym_comment, + sym_groovy_doc, + [106991] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3555), 1, + anon_sym_STAR_SLASH, + STATE(2194), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3553), 5, + aux_sym_groovy_doc_token3, + anon_sym_ATparam, + anon_sym_ATthrows, + sym_groovy_doc_tag, + sym_groovy_doc_at_text, + [107015] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3477), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2212), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2195), 2, + sym_comment, + sym_groovy_doc, + [107047] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(638), 1, + anon_sym_LBRACK, + ACTIONS(3557), 1, + anon_sym_DOT, + STATE(252), 1, + sym_argument_list, + ACTIONS(2226), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2196), 2, + sym_comment, + sym_groovy_doc, + [107077] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + ACTIONS(3559), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2203), 1, + aux_sym__plain_string_repeat2, + STATE(2197), 2, + sym_comment, + sym_groovy_doc, + [107109] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3479), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2204), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2198), 2, + sym_comment, + sym_groovy_doc, + [107141] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3400), 1, + anon_sym_SLASH, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2229), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2199), 2, + sym_comment, + sym_groovy_doc, + [107173] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3481), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2212), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2200), 2, + sym_comment, + sym_groovy_doc, + [107205] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3475), 1, + anon_sym_SLASH, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2229), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2201), 2, + sym_comment, + sym_groovy_doc, + [107237] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(1457), 1, + sym_closure, + STATE(2202), 2, + sym_comment, + sym_groovy_doc, + [107269] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + ACTIONS(3561), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2213), 1, + aux_sym__plain_string_repeat2, + STATE(2203), 2, + sym_comment, + sym_groovy_doc, + [107301] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3475), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2212), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2204), 2, + sym_comment, + sym_groovy_doc, + [107333] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + ACTIONS(3563), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2213), 1, + aux_sym__plain_string_repeat2, + STATE(2205), 2, + sym_comment, + sym_groovy_doc, + [107365] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(1339), 1, + sym_closure, + STATE(2206), 2, + sym_comment, + sym_groovy_doc, + [107397] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + ACTIONS(3565), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2213), 1, + aux_sym__plain_string_repeat2, + STATE(2207), 2, + sym_comment, + sym_groovy_doc, + [107429] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(739), 1, + sym_closure, + STATE(2208), 2, + sym_comment, + sym_groovy_doc, + [107461] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + ACTIONS(3567), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2269), 1, + aux_sym__plain_string_repeat2, + STATE(2209), 2, + sym_comment, + sym_groovy_doc, + [107493] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3481), 1, + anon_sym_SLASH, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2229), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2210), 2, + sym_comment, + sym_groovy_doc, + [107525] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3400), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2212), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2211), 2, + sym_comment, + sym_groovy_doc, + [107557] = 9, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3569), 1, + anon_sym_DQUOTE, + ACTIONS(3571), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3574), 1, + sym_escape_sequence, + ACTIONS(3577), 1, + anon_sym_DOLLAR, + STATE(2381), 1, + sym_interpolation, + STATE(2212), 3, + sym_comment, + sym_groovy_doc, + aux_sym__interpolate_string_repeat1, + [107587] = 9, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3580), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3582), 1, + aux_sym__plain_string_token2, + ACTIONS(3585), 1, + aux_sym__plain_string_token3, + ACTIONS(3588), 1, + aux_sym__plain_string_token4, + ACTIONS(3591), 1, + sym_escape_sequence, + STATE(2213), 3, + sym_comment, + sym_groovy_doc, + aux_sym__plain_string_repeat2, + [107617] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3469), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2200), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2214), 2, + sym_comment, + sym_groovy_doc, + [107649] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3594), 1, + anon_sym_else, + STATE(2215), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1471), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_catch, + anon_sym_finally, + [107673] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + ACTIONS(3596), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2205), 1, + aux_sym__plain_string_repeat2, + STATE(2216), 2, + sym_comment, + sym_groovy_doc, + [107705] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(755), 1, + sym_closure, + STATE(2217), 2, + sym_comment, + sym_groovy_doc, + [107737] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + ACTIONS(3598), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2224), 1, + aux_sym__plain_string_repeat2, + STATE(2218), 2, + sym_comment, + sym_groovy_doc, + [107769] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3459), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2225), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2219), 2, + sym_comment, + sym_groovy_doc, + [107801] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(721), 1, + sym_closure, + STATE(2220), 2, + sym_comment, + sym_groovy_doc, + [107833] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + ACTIONS(3600), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2193), 1, + aux_sym__plain_string_repeat2, + STATE(2221), 2, + sym_comment, + sym_groovy_doc, + [107865] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3457), 1, + anon_sym_SLASH, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2229), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2222), 2, + sym_comment, + sym_groovy_doc, + [107897] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(769), 1, + sym_closure, + STATE(2223), 2, + sym_comment, + sym_groovy_doc, + [107929] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + ACTIONS(3602), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2213), 1, + aux_sym__plain_string_repeat2, + STATE(2224), 2, + sym_comment, + sym_groovy_doc, + [107961] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3457), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2212), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2225), 2, + sym_comment, + sym_groovy_doc, + [107993] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3497), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2266), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2226), 2, + sym_comment, + sym_groovy_doc, + [108025] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(1390), 1, + sym_closure, + STATE(2227), 2, + sym_comment, + sym_groovy_doc, + [108057] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + ACTIONS(3604), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2213), 1, + aux_sym__plain_string_repeat2, + STATE(2228), 2, + sym_comment, + sym_groovy_doc, + [108089] = 9, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3606), 1, + anon_sym_SLASH, + ACTIONS(3608), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3611), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3614), 1, + anon_sym_DOLLAR, + STATE(2375), 1, + sym_interpolation, + STATE(2229), 3, + sym_comment, + sym_groovy_doc, + aux_sym__interpolate_string_repeat3, + [108119] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3617), 1, + anon_sym_as, + STATE(2230), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1639), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + [108143] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3435), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2212), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2231), 2, + sym_comment, + sym_groovy_doc, + [108175] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + ACTIONS(3619), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2213), 1, + aux_sym__plain_string_repeat2, + STATE(2232), 2, + sym_comment, + sym_groovy_doc, + [108207] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3621), 1, + anon_sym_as, + STATE(2233), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1645), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + [108231] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(999), 1, + sym_closure, + STATE(2234), 2, + sym_comment, + sym_groovy_doc, + [108263] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(1359), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(769), 1, + sym_closure, + STATE(2235), 2, + sym_comment, + sym_groovy_doc, + [108295] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3435), 1, + anon_sym_SLASH, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2229), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2236), 2, + sym_comment, + sym_groovy_doc, + [108327] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + ACTIONS(3623), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2243), 1, + aux_sym__plain_string_repeat2, + STATE(2237), 2, + sym_comment, + sym_groovy_doc, + [108359] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3449), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2244), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2238), 2, + sym_comment, + sym_groovy_doc, + [108391] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3625), 1, + anon_sym_COMMA, + STATE(2239), 3, + sym_comment, + sym_groovy_doc, + aux_sym__juxt_argument_list_repeat1, + ACTIONS(377), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_else, + [108415] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(624), 1, + anon_sym_LPAREN, + ACTIONS(626), 1, + anon_sym_LBRACK, + ACTIONS(3628), 1, + anon_sym_DOT, + STATE(228), 1, + sym_argument_list, + ACTIONS(3630), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2240), 2, + sym_comment, + sym_groovy_doc, + [108445] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3447), 1, + anon_sym_SLASH, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2229), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2241), 2, + sym_comment, + sym_groovy_doc, + [108477] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + ACTIONS(3632), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2252), 1, + aux_sym__plain_string_repeat2, + STATE(2242), 2, + sym_comment, + sym_groovy_doc, + [108509] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + ACTIONS(3634), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2213), 1, + aux_sym__plain_string_repeat2, + STATE(2243), 2, + sym_comment, + sym_groovy_doc, + [108541] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3447), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2212), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2244), 2, + sym_comment, + sym_groovy_doc, + [108573] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3437), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2254), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2245), 2, + sym_comment, + sym_groovy_doc, + [108605] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2231), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2246), 2, + sym_comment, + sym_groovy_doc, + [108637] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + ACTIONS(3636), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2232), 1, + aux_sym__plain_string_repeat2, + STATE(2247), 2, + sym_comment, + sym_groovy_doc, + [108669] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(616), 1, + anon_sym_LPAREN, + ACTIONS(618), 1, + anon_sym_LBRACK, + ACTIONS(3638), 1, + anon_sym_DOT, + STATE(203), 1, + sym_argument_list, + ACTIONS(2232), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2248), 2, + sym_comment, + sym_groovy_doc, + [108699] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(1359), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(721), 1, + sym_closure, + STATE(2249), 2, + sym_comment, + sym_groovy_doc, + [108731] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3451), 1, + anon_sym_SLASH, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2229), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2250), 2, + sym_comment, + sym_groovy_doc, + [108763] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(1359), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(755), 1, + sym_closure, + STATE(2251), 2, + sym_comment, + sym_groovy_doc, + [108795] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + ACTIONS(3640), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2213), 1, + aux_sym__plain_string_repeat2, + STATE(2252), 2, + sym_comment, + sym_groovy_doc, + [108827] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(1359), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(739), 1, + sym_closure, + STATE(2253), 2, + sym_comment, + sym_groovy_doc, + [108859] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3451), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2212), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2254), 2, + sym_comment, + sym_groovy_doc, + [108891] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(1359), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(751), 1, + sym_closure, + STATE(2255), 2, + sym_comment, + sym_groovy_doc, + [108923] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + ACTIONS(3642), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2228), 1, + aux_sym__plain_string_repeat2, + STATE(2256), 2, + sym_comment, + sym_groovy_doc, + [108955] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + ACTIONS(3644), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2263), 1, + aux_sym__plain_string_repeat2, + STATE(2257), 2, + sym_comment, + sym_groovy_doc, + [108987] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3445), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2264), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2258), 2, + sym_comment, + sym_groovy_doc, + [109019] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(1249), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(691), 1, + sym_closure, + STATE(2259), 2, + sym_comment, + sym_groovy_doc, + [109051] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(1249), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(686), 1, + sym_closure, + STATE(2260), 2, + sym_comment, + sym_groovy_doc, + [109083] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3441), 1, + anon_sym_SLASH, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2229), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2261), 2, + sym_comment, + sym_groovy_doc, + [109115] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(1249), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(656), 1, + sym_closure, + STATE(2262), 2, + sym_comment, + sym_groovy_doc, + [109147] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + ACTIONS(3646), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2213), 1, + aux_sym__plain_string_repeat2, + STATE(2263), 2, + sym_comment, + sym_groovy_doc, + [109179] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3441), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2212), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2264), 2, + sym_comment, + sym_groovy_doc, + [109211] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(1249), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(657), 1, + sym_closure, + STATE(2265), 2, + sym_comment, + sym_groovy_doc, + [109243] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3439), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2212), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2266), 2, + sym_comment, + sym_groovy_doc, + [109275] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(1249), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(707), 1, + sym_closure, + STATE(2267), 2, + sym_comment, + sym_groovy_doc, + [109307] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(1249), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(706), 1, + sym_closure, + STATE(2268), 2, + sym_comment, + sym_groovy_doc, + [109339] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + ACTIONS(3648), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2213), 1, + aux_sym__plain_string_repeat2, + STATE(2269), 2, + sym_comment, + sym_groovy_doc, + [109371] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + ACTIONS(3650), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2281), 1, + aux_sym__plain_string_repeat2, + STATE(2270), 2, + sym_comment, + sym_groovy_doc, + [109403] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3443), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2212), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2271), 2, + sym_comment, + sym_groovy_doc, + [109435] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3372), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2282), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2272), 2, + sym_comment, + sym_groovy_doc, + [109467] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(1249), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(689), 1, + sym_closure, + STATE(2273), 2, + sym_comment, + sym_groovy_doc, + [109499] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(1249), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(681), 1, + sym_closure, + STATE(2274), 2, + sym_comment, + sym_groovy_doc, + [109531] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(1359), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(718), 1, + sym_closure, + STATE(2275), 2, + sym_comment, + sym_groovy_doc, + [109563] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3242), 1, + anon_sym_DOT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3246), 1, + anon_sym_LBRACK, + STATE(846), 1, + sym_argument_list, + ACTIONS(3323), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2276), 2, + sym_comment, + sym_groovy_doc, + [109593] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3396), 1, + anon_sym_SLASH, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2229), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2277), 2, + sym_comment, + sym_groovy_doc, + [109625] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2180), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2278), 2, + sym_comment, + sym_groovy_doc, + [109657] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + ACTIONS(3652), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2213), 1, + aux_sym__plain_string_repeat2, + STATE(2279), 2, + sym_comment, + sym_groovy_doc, + [109689] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(1359), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(757), 1, + sym_closure, + STATE(2280), 2, + sym_comment, + sym_groovy_doc, + [109721] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + ACTIONS(3654), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2213), 1, + aux_sym__plain_string_repeat2, + STATE(2281), 2, + sym_comment, + sym_groovy_doc, + [109753] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3396), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2212), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2282), 2, + sym_comment, + sym_groovy_doc, + [109785] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3515), 1, + aux_sym__plain_string_token2, + ACTIONS(3517), 1, + aux_sym__plain_string_token3, + ACTIONS(3519), 1, + aux_sym__plain_string_token4, + ACTIONS(3521), 1, + sym_escape_sequence, + ACTIONS(3656), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2279), 1, + aux_sym__plain_string_repeat2, + STATE(2283), 2, + sym_comment, + sym_groovy_doc, + [109817] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3415), 1, + anon_sym_DQUOTE, + ACTIONS(3523), 1, + aux_sym__interpolate_string_token1, + ACTIONS(3525), 1, + sym_escape_sequence, + ACTIONS(3527), 1, + anon_sym_DOLLAR, + STATE(2271), 1, + aux_sym__interpolate_string_repeat1, + STATE(2381), 1, + sym_interpolation, + STATE(2284), 2, + sym_comment, + sym_groovy_doc, + [109849] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3443), 1, + anon_sym_SLASH, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2229), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2285), 2, + sym_comment, + sym_groovy_doc, + [109881] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3439), 1, + anon_sym_SLASH, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2229), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2286), 2, + sym_comment, + sym_groovy_doc, + [109913] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(265), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_DOT, + ACTIONS(3662), 1, + anon_sym_LPAREN, + STATE(70), 1, + sym_argument_list, + ACTIONS(3660), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2287), 2, + sym_comment, + sym_groovy_doc, + [109943] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3463), 1, + anon_sym_SLASH, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2229), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2288), 2, + sym_comment, + sym_groovy_doc, + [109975] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + ACTIONS(2214), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2289), 2, + sym_comment, + sym_groovy_doc, + [110005] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(1359), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(772), 1, + sym_closure, + STATE(2290), 2, + sym_comment, + sym_groovy_doc, + [110037] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3666), 1, + aux_sym__plain_string_token3, + STATE(2291), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3664), 4, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + aux_sym__plain_string_token2, + aux_sym__plain_string_token4, + sym_escape_sequence, + [110060] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3668), 1, + aux_sym__plain_string_token3, + STATE(2292), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3580), 4, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + aux_sym__plain_string_token2, + aux_sym__plain_string_token4, + sym_escape_sequence, + [110083] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(3670), 1, + anon_sym_LT, + ACTIONS(3672), 1, + anon_sym_extends, + STATE(1034), 1, + sym_closure, + STATE(2464), 1, + sym_generic_parameters, + STATE(2293), 2, + sym_comment, + sym_groovy_doc, + [110112] = 9, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2286), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2294), 2, + sym_comment, + sym_groovy_doc, + [110141] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3676), 1, + aux_sym__plain_string_token3, + STATE(2295), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3674), 4, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + aux_sym__plain_string_token2, + aux_sym__plain_string_token4, + sym_escape_sequence, + [110164] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3678), 1, + anon_sym_RBRACE, + ACTIONS(3680), 1, + anon_sym_case, + ACTIONS(3682), 1, + anon_sym_default, + STATE(2335), 1, + aux_sym_switch_block_repeat1, + STATE(2496), 1, + sym_case, + STATE(2296), 2, + sym_comment, + sym_groovy_doc, + [110193] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(3670), 1, + anon_sym_LT, + ACTIONS(3684), 1, + anon_sym_extends, + STATE(749), 1, + sym_closure, + STATE(2489), 1, + sym_generic_parameters, + STATE(2297), 2, + sym_comment, + sym_groovy_doc, + [110222] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(2298), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3686), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_COMMA, + sym_identifier, + anon_sym_LBRACK_RBRACK, + [110243] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(3670), 1, + anon_sym_LT, + ACTIONS(3688), 1, + anon_sym_extends, + STATE(1151), 1, + sym_closure, + STATE(2455), 1, + sym_generic_parameters, + STATE(2299), 2, + sym_comment, + sym_groovy_doc, + [110272] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(3670), 1, + anon_sym_LT, + ACTIONS(3690), 1, + anon_sym_extends, + STATE(1080), 1, + sym_closure, + STATE(2485), 1, + sym_generic_parameters, + STATE(2300), 2, + sym_comment, + sym_groovy_doc, + [110301] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3136), 1, + anon_sym_GT, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3694), 1, + anon_sym_COMMA, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + STATE(2340), 1, + sym_generics, + STATE(2301), 2, + sym_comment, + sym_groovy_doc, + [110330] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3680), 1, + anon_sym_case, + ACTIONS(3682), 1, + anon_sym_default, + ACTIONS(3698), 1, + anon_sym_RBRACE, + STATE(2296), 1, + aux_sym_switch_block_repeat1, + STATE(2496), 1, + sym_case, + STATE(2302), 2, + sym_comment, + sym_groovy_doc, + [110359] = 9, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2261), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2303), 2, + sym_comment, + sym_groovy_doc, + [110388] = 9, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2277), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2304), 2, + sym_comment, + sym_groovy_doc, + [110417] = 9, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2241), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2305), 2, + sym_comment, + sym_groovy_doc, + [110446] = 9, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2222), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2306), 2, + sym_comment, + sym_groovy_doc, + [110475] = 9, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2201), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2307), 2, + sym_comment, + sym_groovy_doc, + [110504] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1359), 1, + anon_sym_LBRACE, + ACTIONS(3670), 1, + anon_sym_LT, + ACTIONS(3700), 1, + anon_sym_extends, + STATE(749), 1, + sym_closure, + STATE(2465), 1, + sym_generic_parameters, + STATE(2308), 2, + sym_comment, + sym_groovy_doc, + [110533] = 9, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2181), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2309), 2, + sym_comment, + sym_groovy_doc, + [110562] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1359), 1, + anon_sym_LBRACE, + ACTIONS(3670), 1, + anon_sym_LT, + ACTIONS(3702), 1, + anon_sym_extends, + STATE(760), 1, + sym_closure, + STATE(2472), 1, + sym_generic_parameters, + STATE(2310), 2, + sym_comment, + sym_groovy_doc, + [110591] = 9, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2164), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2311), 2, + sym_comment, + sym_groovy_doc, + [110620] = 9, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2210), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2312), 2, + sym_comment, + sym_groovy_doc, + [110649] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3680), 1, + anon_sym_case, + ACTIONS(3682), 1, + anon_sym_default, + ACTIONS(3704), 1, + anon_sym_RBRACE, + STATE(2328), 1, + aux_sym_switch_block_repeat1, + STATE(2496), 1, + sym_case, + STATE(2313), 2, + sym_comment, + sym_groovy_doc, + [110678] = 9, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2285), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2314), 2, + sym_comment, + sym_groovy_doc, + [110707] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1249), 1, + anon_sym_LBRACE, + ACTIONS(3670), 1, + anon_sym_LT, + ACTIONS(3706), 1, + anon_sym_extends, + STATE(667), 1, + sym_closure, + STATE(2491), 1, + sym_generic_parameters, + STATE(2315), 2, + sym_comment, + sym_groovy_doc, + [110736] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(3670), 1, + anon_sym_LT, + ACTIONS(3708), 1, + anon_sym_extends, + STATE(730), 1, + sym_closure, + STATE(2493), 1, + sym_generic_parameters, + STATE(2316), 2, + sym_comment, + sym_groovy_doc, + [110765] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(2317), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3710), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_COMMA, + sym_identifier, + anon_sym_LBRACK_RBRACK, + [110786] = 9, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2250), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2318), 2, + sym_comment, + sym_groovy_doc, + [110815] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3712), 1, + anon_sym_GT, + ACTIONS(3714), 1, + anon_sym_COMMA, + STATE(2340), 1, + sym_generics, + STATE(2319), 2, + sym_comment, + sym_groovy_doc, + [110844] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + STATE(2340), 1, + sym_generics, + ACTIONS(3716), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2320), 2, + sym_comment, + sym_groovy_doc, + [110871] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(3670), 1, + anon_sym_LT, + ACTIONS(3718), 1, + anon_sym_extends, + STATE(989), 1, + sym_closure, + STATE(2482), 1, + sym_generic_parameters, + STATE(2321), 2, + sym_comment, + sym_groovy_doc, + [110900] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(3670), 1, + anon_sym_LT, + ACTIONS(3720), 1, + anon_sym_extends, + STATE(1500), 1, + sym_closure, + STATE(2474), 1, + sym_generic_parameters, + STATE(2322), 2, + sym_comment, + sym_groovy_doc, + [110929] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(3670), 1, + anon_sym_LT, + ACTIONS(3722), 1, + anon_sym_extends, + STATE(760), 1, + sym_closure, + STATE(2473), 1, + sym_generic_parameters, + STATE(2323), 2, + sym_comment, + sym_groovy_doc, + [110958] = 9, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2199), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2324), 2, + sym_comment, + sym_groovy_doc, + [110987] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(3670), 1, + anon_sym_LT, + ACTIONS(3724), 1, + anon_sym_extends, + STATE(1012), 1, + sym_closure, + STATE(2460), 1, + sym_generic_parameters, + STATE(2325), 2, + sym_comment, + sym_groovy_doc, + [111016] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1249), 1, + anon_sym_LBRACE, + ACTIONS(3670), 1, + anon_sym_LT, + ACTIONS(3726), 1, + anon_sym_extends, + STATE(670), 1, + sym_closure, + STATE(2470), 1, + sym_generic_parameters, + STATE(2326), 2, + sym_comment, + sym_groovy_doc, + [111045] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(3670), 1, + anon_sym_LT, + ACTIONS(3728), 1, + anon_sym_extends, + STATE(750), 1, + sym_closure, + STATE(2463), 1, + sym_generic_parameters, + STATE(2327), 2, + sym_comment, + sym_groovy_doc, + [111074] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3680), 1, + anon_sym_case, + ACTIONS(3682), 1, + anon_sym_default, + ACTIONS(3730), 1, + anon_sym_RBRACE, + STATE(2335), 1, + aux_sym_switch_block_repeat1, + STATE(2496), 1, + sym_case, + STATE(2328), 2, + sym_comment, + sym_groovy_doc, + [111103] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3732), 1, + aux_sym__interpolate_string_token2, + STATE(2329), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3417), 4, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + aux_sym__interpolate_string_token3, + sym_escape_sequence, + anon_sym_DOLLAR, + [111126] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2244), 1, + anon_sym_COMMA, + STATE(2358), 1, + aux_sym__juxt_argument_list_repeat1, + STATE(2330), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(289), 3, + anon_sym_SEMI, + anon_sym_while, + anon_sym_else, + [111151] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(2331), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3734), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_COMMA, + sym_identifier, + anon_sym_LBRACK_RBRACK, + [111172] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(2332), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3736), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_COMMA, + sym_identifier, + anon_sym_LBRACK_RBRACK, + [111193] = 9, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2288), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2333), 2, + sym_comment, + sym_groovy_doc, + [111222] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(3670), 1, + anon_sym_LT, + ACTIONS(3738), 1, + anon_sym_extends, + STATE(1437), 1, + sym_closure, + STATE(2490), 1, + sym_generic_parameters, + STATE(2334), 2, + sym_comment, + sym_groovy_doc, + [111251] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3740), 1, + anon_sym_RBRACE, + ACTIONS(3742), 1, + anon_sym_case, + ACTIONS(3745), 1, + anon_sym_default, + STATE(2496), 1, + sym_case, + STATE(2335), 3, + sym_comment, + sym_groovy_doc, + aux_sym_switch_block_repeat1, + [111278] = 9, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2236), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2336), 2, + sym_comment, + sym_groovy_doc, + [111307] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3748), 1, + anon_sym_else, + STATE(2337), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1471), 4, + anon_sym_SEMI, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [111330] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1249), 1, + anon_sym_LBRACE, + ACTIONS(3670), 1, + anon_sym_LT, + ACTIONS(3750), 1, + anon_sym_extends, + STATE(698), 1, + sym_closure, + STATE(2454), 1, + sym_generic_parameters, + STATE(2338), 2, + sym_comment, + sym_groovy_doc, + [111359] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1359), 1, + anon_sym_LBRACE, + ACTIONS(3670), 1, + anon_sym_LT, + ACTIONS(3752), 1, + anon_sym_extends, + STATE(750), 1, + sym_closure, + STATE(2486), 1, + sym_generic_parameters, + STATE(2339), 2, + sym_comment, + sym_groovy_doc, + [111388] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(2340), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3754), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_COMMA, + sym_identifier, + anon_sym_LBRACK_RBRACK, + [111409] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(3670), 1, + anon_sym_LT, + ACTIONS(3756), 1, + anon_sym_extends, + STATE(1366), 1, + sym_closure, + STATE(2458), 1, + sym_generic_parameters, + STATE(2341), 2, + sym_comment, + sym_groovy_doc, + [111438] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(2349), 1, + aux_sym__juxt_argument_list_repeat1, + STATE(2342), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(289), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_else, + [111461] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3760), 1, + aux_sym__interpolate_string_token2, + STATE(2343), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3758), 4, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + aux_sym__interpolate_string_token3, + sym_escape_sequence, + anon_sym_DOLLAR, + [111484] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1249), 1, + anon_sym_LBRACE, + ACTIONS(3670), 1, + anon_sym_LT, + ACTIONS(3762), 1, + anon_sym_extends, + STATE(694), 1, + sym_closure, + STATE(2475), 1, + sym_generic_parameters, + STATE(2344), 2, + sym_comment, + sym_groovy_doc, + [111513] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3680), 1, + anon_sym_case, + ACTIONS(3682), 1, + anon_sym_default, + ACTIONS(3764), 1, + anon_sym_RBRACE, + STATE(2335), 1, + aux_sym_switch_block_repeat1, + STATE(2496), 1, + sym_case, + STATE(2345), 2, + sym_comment, + sym_groovy_doc, + [111542] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3680), 1, + anon_sym_case, + ACTIONS(3682), 1, + anon_sym_default, + ACTIONS(3766), 1, + anon_sym_RBRACE, + STATE(2345), 1, + aux_sym_switch_block_repeat1, + STATE(2496), 1, + sym_case, + STATE(2346), 2, + sym_comment, + sym_groovy_doc, + [111571] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3770), 1, + aux_sym__interpolate_string_token5, + STATE(2347), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3768), 4, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + anon_sym_SLASH_DOLLAR, + anon_sym_DOLLAR, + [111594] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3680), 1, + anon_sym_case, + ACTIONS(3682), 1, + anon_sym_default, + ACTIONS(3772), 1, + anon_sym_RBRACE, + STATE(2335), 1, + aux_sym_switch_block_repeat1, + STATE(2496), 1, + sym_case, + STATE(2348), 2, + sym_comment, + sym_groovy_doc, + [111623] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(2239), 1, + aux_sym__juxt_argument_list_repeat1, + STATE(2349), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1689), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_else, + [111646] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3776), 1, + aux_sym__interpolate_string_token5, + STATE(2350), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3774), 4, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + anon_sym_SLASH_DOLLAR, + anon_sym_DOLLAR, + [111669] = 9, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3529), 1, + aux_sym__interpolate_string_token4, + ACTIONS(3531), 1, + anon_sym_BSLASH_SLASH, + ACTIONS(3533), 1, + anon_sym_DOLLAR, + STATE(2188), 1, + aux_sym__interpolate_string_repeat3, + STATE(2375), 1, + sym_interpolation, + STATE(2351), 2, + sym_comment, + sym_groovy_doc, + [111698] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(2352), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3778), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_COMMA, + sym_identifier, + anon_sym_LBRACK_RBRACK, + [111719] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3680), 1, + anon_sym_case, + ACTIONS(3682), 1, + anon_sym_default, + ACTIONS(3780), 1, + anon_sym_RBRACE, + STATE(2348), 1, + aux_sym_switch_block_repeat1, + STATE(2496), 1, + sym_case, + STATE(2353), 2, + sym_comment, + sym_groovy_doc, + [111748] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3784), 1, + aux_sym__interpolate_string_token5, + STATE(2354), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3782), 4, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + anon_sym_SLASH_DOLLAR, + anon_sym_DOLLAR, + [111771] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(2355), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(2208), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_COMMA, + sym_identifier, + anon_sym_LBRACK_RBRACK, + [111792] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3760), 1, + aux_sym__interpolate_string_token5, + STATE(2356), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3758), 4, + anon_sym_DOLLAR_SLASH, + anon_sym_DOLLAR_DOLLAR, + anon_sym_SLASH_DOLLAR, + anon_sym_DOLLAR, + [111815] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1359), 1, + anon_sym_LBRACE, + ACTIONS(3670), 1, + anon_sym_LT, + ACTIONS(3786), 1, + anon_sym_extends, + STATE(730), 1, + sym_closure, + STATE(2488), 1, + sym_generic_parameters, + STATE(2357), 2, + sym_comment, + sym_groovy_doc, + [111844] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2244), 1, + anon_sym_COMMA, + STATE(2239), 1, + aux_sym__juxt_argument_list_repeat1, + STATE(2358), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1689), 3, + anon_sym_SEMI, + anon_sym_while, + anon_sym_else, + [111869] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3790), 1, + aux_sym__interpolate_string_token2, + STATE(2359), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3788), 4, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + aux_sym__interpolate_string_token3, + sym_escape_sequence, + anon_sym_DOLLAR, + [111892] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3770), 1, + aux_sym__interpolate_string_token2, + STATE(2360), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3768), 4, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + aux_sym__interpolate_string_token3, + sym_escape_sequence, + anon_sym_DOLLAR, + [111915] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3792), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2361), 2, + sym_comment, + sym_groovy_doc, + [111941] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3794), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2362), 2, + sym_comment, + sym_groovy_doc, + [111967] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3796), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2363), 2, + sym_comment, + sym_groovy_doc, + [111993] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3648), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2437), 1, + aux_sym__plain_string_repeat1, + STATE(2364), 2, + sym_comment, + sym_groovy_doc, + [112019] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3802), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2365), 2, + sym_comment, + sym_groovy_doc, + [112045] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3804), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2366), 2, + sym_comment, + sym_groovy_doc, + [112071] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3600), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2394), 1, + aux_sym__plain_string_repeat1, + STATE(2367), 2, + sym_comment, + sym_groovy_doc, + [112097] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3806), 1, + anon_sym_EQ, + STATE(2368), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1728), 3, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RPAREN, + [112119] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3248), 1, + anon_sym_EQ, + STATE(2369), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1714), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [112141] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3808), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2370), 2, + sym_comment, + sym_groovy_doc, + [112167] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3264), 1, + anon_sym_EQ, + STATE(2371), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1708), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [112189] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3535), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2403), 1, + aux_sym__plain_string_repeat1, + STATE(2372), 2, + sym_comment, + sym_groovy_doc, + [112215] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3810), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2373), 2, + sym_comment, + sym_groovy_doc, + [112241] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3650), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2439), 1, + aux_sym__plain_string_repeat1, + STATE(2374), 2, + sym_comment, + sym_groovy_doc, + [112267] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3814), 1, + aux_sym__interpolate_string_token4, + STATE(2375), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3812), 3, + anon_sym_SLASH, + anon_sym_BSLASH_SLASH, + anon_sym_DOLLAR, + [112289] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3537), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2382), 1, + aux_sym__plain_string_repeat1, + STATE(2376), 2, + sym_comment, + sym_groovy_doc, + [112315] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3816), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2377), 2, + sym_comment, + sym_groovy_doc, + [112341] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3818), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2378), 2, + sym_comment, + sym_groovy_doc, + [112367] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(2379), 2, + sym_comment, + sym_groovy_doc, + [112393] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3770), 1, + aux_sym__interpolate_string_token4, + STATE(2380), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3768), 3, + anon_sym_SLASH, + anon_sym_BSLASH_SLASH, + anon_sym_DOLLAR, + [112415] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3822), 1, + aux_sym__interpolate_string_token1, + STATE(2381), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3820), 3, + anon_sym_DQUOTE, + sym_escape_sequence, + anon_sym_DOLLAR, + [112437] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3543), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2437), 1, + aux_sym__plain_string_repeat1, + STATE(2382), 2, + sym_comment, + sym_groovy_doc, + [112463] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3824), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2383), 2, + sym_comment, + sym_groovy_doc, + [112489] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3826), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2384), 2, + sym_comment, + sym_groovy_doc, + [112515] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3828), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2385), 2, + sym_comment, + sym_groovy_doc, + [112541] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3830), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2386), 2, + sym_comment, + sym_groovy_doc, + [112567] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3832), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2387), 2, + sym_comment, + sym_groovy_doc, + [112593] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3646), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2437), 1, + aux_sym__plain_string_repeat1, + STATE(2388), 2, + sym_comment, + sym_groovy_doc, + [112619] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3250), 1, + anon_sym_EQ, + STATE(2389), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1699), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [112641] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3266), 1, + anon_sym_EQ, + STATE(2390), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1693), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [112663] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(1749), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(2391), 2, + sym_comment, + sym_groovy_doc, + [112689] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3644), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2388), 1, + aux_sym__plain_string_repeat1, + STATE(2392), 2, + sym_comment, + sym_groovy_doc, + [112715] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3834), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2393), 2, + sym_comment, + sym_groovy_doc, + [112741] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3551), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2437), 1, + aux_sym__plain_string_repeat1, + STATE(2394), 2, + sym_comment, + sym_groovy_doc, + [112767] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3836), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2395), 2, + sym_comment, + sym_groovy_doc, + [112793] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3640), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2437), 1, + aux_sym__plain_string_repeat1, + STATE(2396), 2, + sym_comment, + sym_groovy_doc, + [112819] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3838), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2397), 2, + sym_comment, + sym_groovy_doc, + [112845] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3840), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2398), 2, + sym_comment, + sym_groovy_doc, + [112871] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3842), 1, + anon_sym_COMMA, + STATE(2340), 1, + sym_generics, + STATE(2399), 2, + sym_comment, + sym_groovy_doc, + [112897] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3844), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2400), 2, + sym_comment, + sym_groovy_doc, + [112923] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(3638), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(2401), 2, + sym_comment, + sym_groovy_doc, + [112949] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(3242), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(2402), 2, + sym_comment, + sym_groovy_doc, + [112975] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3513), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2437), 1, + aux_sym__plain_string_repeat1, + STATE(2403), 2, + sym_comment, + sym_groovy_doc, + [113001] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3642), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2430), 1, + aux_sym__plain_string_repeat1, + STATE(2404), 2, + sym_comment, + sym_groovy_doc, + [113027] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3636), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2433), 1, + aux_sym__plain_string_repeat1, + STATE(2405), 2, + sym_comment, + sym_groovy_doc, + [113053] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3846), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2406), 2, + sym_comment, + sym_groovy_doc, + [113079] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3848), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2407), 2, + sym_comment, + sym_groovy_doc, + [113105] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3850), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2408), 2, + sym_comment, + sym_groovy_doc, + [113131] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3852), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2409), 2, + sym_comment, + sym_groovy_doc, + [113157] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3854), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2410), 2, + sym_comment, + sym_groovy_doc, + [113183] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3856), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2411), 2, + sym_comment, + sym_groovy_doc, + [113209] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3634), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2437), 1, + aux_sym__plain_string_repeat1, + STATE(2412), 2, + sym_comment, + sym_groovy_doc, + [113235] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3632), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2396), 1, + aux_sym__plain_string_repeat1, + STATE(2413), 2, + sym_comment, + sym_groovy_doc, + [113261] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3858), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2414), 2, + sym_comment, + sym_groovy_doc, + [113287] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3262), 1, + anon_sym_EQ, + STATE(2415), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1683), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [113309] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3274), 1, + anon_sym_EQ, + STATE(2416), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1677), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [113331] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(3557), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(2417), 2, + sym_comment, + sym_groovy_doc, + [113357] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3860), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2418), 2, + sym_comment, + sym_groovy_doc, + [113383] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3862), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2419), 2, + sym_comment, + sym_groovy_doc, + [113409] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3770), 1, + aux_sym__interpolate_string_token1, + STATE(2420), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3768), 3, + anon_sym_DQUOTE, + sym_escape_sequence, + anon_sym_DOLLAR, + [113431] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3549), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2427), 1, + aux_sym__plain_string_repeat1, + STATE(2421), 2, + sym_comment, + sym_groovy_doc, + [113457] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3559), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2426), 1, + aux_sym__plain_string_repeat1, + STATE(2422), 2, + sym_comment, + sym_groovy_doc, + [113483] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3864), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2423), 2, + sym_comment, + sym_groovy_doc, + [113509] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3623), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2412), 1, + aux_sym__plain_string_repeat1, + STATE(2424), 2, + sym_comment, + sym_groovy_doc, + [113535] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3866), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2425), 2, + sym_comment, + sym_groovy_doc, + [113561] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3561), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2437), 1, + aux_sym__plain_string_repeat1, + STATE(2426), 2, + sym_comment, + sym_groovy_doc, + [113587] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3565), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2437), 1, + aux_sym__plain_string_repeat1, + STATE(2427), 2, + sym_comment, + sym_groovy_doc, + [113613] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3868), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2428), 2, + sym_comment, + sym_groovy_doc, + [113639] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3870), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2429), 2, + sym_comment, + sym_groovy_doc, + [113665] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3604), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2437), 1, + aux_sym__plain_string_repeat1, + STATE(2430), 2, + sym_comment, + sym_groovy_doc, + [113691] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3563), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2437), 1, + aux_sym__plain_string_repeat1, + STATE(2431), 2, + sym_comment, + sym_groovy_doc, + [113717] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3567), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2364), 1, + aux_sym__plain_string_repeat1, + STATE(2432), 2, + sym_comment, + sym_groovy_doc, + [113743] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3619), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2437), 1, + aux_sym__plain_string_repeat1, + STATE(2433), 2, + sym_comment, + sym_groovy_doc, + [113769] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3872), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2434), 2, + sym_comment, + sym_groovy_doc, + [113795] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3656), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2436), 1, + aux_sym__plain_string_repeat1, + STATE(2435), 2, + sym_comment, + sym_groovy_doc, + [113821] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3652), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2437), 1, + aux_sym__plain_string_repeat1, + STATE(2436), 2, + sym_comment, + sym_groovy_doc, + [113847] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3874), 1, + anon_sym_SQUOTE, + ACTIONS(3876), 1, + aux_sym__plain_string_token1, + ACTIONS(3879), 1, + sym_escape_sequence, + STATE(2437), 3, + sym_comment, + sym_groovy_doc, + aux_sym__plain_string_repeat1, + [113871] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3882), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2438), 2, + sym_comment, + sym_groovy_doc, + [113897] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3654), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2437), 1, + aux_sym__plain_string_repeat1, + STATE(2439), 2, + sym_comment, + sym_groovy_doc, + [113923] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3760), 1, + aux_sym__interpolate_string_token4, + STATE(2440), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3758), 3, + anon_sym_SLASH, + anon_sym_BSLASH_SLASH, + anon_sym_DOLLAR, + [113945] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(1671), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(2441), 2, + sym_comment, + sym_groovy_doc, + [113971] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3760), 1, + aux_sym__interpolate_string_token1, + STATE(2442), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3758), 3, + anon_sym_DQUOTE, + sym_escape_sequence, + anon_sym_DOLLAR, + [113993] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3884), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2443), 2, + sym_comment, + sym_groovy_doc, + [114019] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3886), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2444), 2, + sym_comment, + sym_groovy_doc, + [114045] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(630), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(3628), 1, + anon_sym_DOT, + STATE(249), 1, + sym_argument_list, + STATE(2445), 2, + sym_comment, + sym_groovy_doc, + [114071] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3272), 1, + anon_sym_EQ, + STATE(2446), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1665), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [114093] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3888), 1, + anon_sym_else, + STATE(2447), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1471), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [114115] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3890), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2448), 2, + sym_comment, + sym_groovy_doc, + [114141] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3252), 1, + anon_sym_EQ, + STATE(2449), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(1720), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [114163] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3692), 1, + anon_sym_LT, + ACTIONS(3696), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3892), 1, + sym_identifier, + STATE(2340), 1, + sym_generics, + STATE(2450), 2, + sym_comment, + sym_groovy_doc, + [114189] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3598), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2453), 1, + aux_sym__plain_string_repeat1, + STATE(2451), 2, + sym_comment, + sym_groovy_doc, + [114215] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3596), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2431), 1, + aux_sym__plain_string_repeat1, + STATE(2452), 2, + sym_comment, + sym_groovy_doc, + [114241] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3602), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + aux_sym__plain_string_token1, + ACTIONS(3800), 1, + sym_escape_sequence, + STATE(2437), 1, + aux_sym__plain_string_repeat1, + STATE(2453), 2, + sym_comment, + sym_groovy_doc, + [114267] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1249), 1, + anon_sym_LBRACE, + ACTIONS(3894), 1, + anon_sym_extends, + STATE(666), 1, + sym_closure, + STATE(2454), 2, + sym_comment, + sym_groovy_doc, + [114290] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(3896), 1, + anon_sym_extends, + STATE(1490), 1, + sym_closure, + STATE(2455), 2, + sym_comment, + sym_groovy_doc, + [114313] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3898), 1, + anon_sym_COMMA, + ACTIONS(3900), 1, + anon_sym_RPAREN, + STATE(2461), 1, + aux_sym_for_parameters_repeat2, + STATE(2456), 2, + sym_comment, + sym_groovy_doc, + [114336] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3902), 1, + aux_sym__plain_string_token3, + ACTIONS(3904), 1, + aux_sym__plain_string_token4, + ACTIONS(3906), 1, + sym_escape_sequence, + STATE(2457), 2, + sym_comment, + sym_groovy_doc, + [114359] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(3908), 1, + anon_sym_extends, + STATE(1423), 1, + sym_closure, + STATE(2458), 2, + sym_comment, + sym_groovy_doc, + [114382] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3898), 1, + anon_sym_COMMA, + ACTIONS(3910), 1, + anon_sym_RPAREN, + STATE(2484), 1, + aux_sym_for_parameters_repeat2, + STATE(2459), 2, + sym_comment, + sym_groovy_doc, + [114405] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(3912), 1, + anon_sym_extends, + STATE(1030), 1, + sym_closure, + STATE(2460), 2, + sym_comment, + sym_groovy_doc, + [114428] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3898), 1, + anon_sym_COMMA, + ACTIONS(3914), 1, + anon_sym_RPAREN, + STATE(2484), 1, + aux_sym_for_parameters_repeat2, + STATE(2461), 2, + sym_comment, + sym_groovy_doc, + [114451] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3916), 1, + sym_identifier, + STATE(2476), 1, + aux_sym_generic_parameters_repeat1, + STATE(2564), 1, + sym_generic_param, + STATE(2462), 2, + sym_comment, + sym_groovy_doc, + [114474] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(3918), 1, + anon_sym_extends, + STATE(733), 1, + sym_closure, + STATE(2463), 2, + sym_comment, + sym_groovy_doc, + [114497] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(3920), 1, + anon_sym_extends, + STATE(1046), 1, + sym_closure, + STATE(2464), 2, + sym_comment, + sym_groovy_doc, + [114520] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1359), 1, + anon_sym_LBRACE, + ACTIONS(3922), 1, + anon_sym_extends, + STATE(732), 1, + sym_closure, + STATE(2465), 2, + sym_comment, + sym_groovy_doc, + [114543] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3898), 1, + anon_sym_COMMA, + ACTIONS(3924), 1, + anon_sym_RPAREN, + STATE(2494), 1, + aux_sym_for_parameters_repeat2, + STATE(2466), 2, + sym_comment, + sym_groovy_doc, + [114566] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3898), 1, + anon_sym_COMMA, + ACTIONS(3926), 1, + anon_sym_RPAREN, + STATE(2459), 1, + aux_sym_for_parameters_repeat2, + STATE(2467), 2, + sym_comment, + sym_groovy_doc, + [114589] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3898), 1, + anon_sym_COMMA, + ACTIONS(3928), 1, + anon_sym_RPAREN, + STATE(2484), 1, + aux_sym_for_parameters_repeat2, + STATE(2468), 2, + sym_comment, + sym_groovy_doc, + [114612] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3930), 1, + anon_sym_SEMI, + ACTIONS(3932), 1, + anon_sym_COMMA, + STATE(2480), 1, + aux_sym_for_parameters_repeat1, + STATE(2469), 2, + sym_comment, + sym_groovy_doc, + [114635] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1249), 1, + anon_sym_LBRACE, + ACTIONS(3934), 1, + anon_sym_extends, + STATE(690), 1, + sym_closure, + STATE(2470), 2, + sym_comment, + sym_groovy_doc, + [114658] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3916), 1, + sym_identifier, + STATE(2462), 1, + aux_sym_generic_parameters_repeat1, + STATE(2605), 1, + sym_generic_param, + STATE(2471), 2, + sym_comment, + sym_groovy_doc, + [114681] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1359), 1, + anon_sym_LBRACE, + ACTIONS(3936), 1, + anon_sym_extends, + STATE(756), 1, + sym_closure, + STATE(2472), 2, + sym_comment, + sym_groovy_doc, + [114704] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(3938), 1, + anon_sym_extends, + STATE(756), 1, + sym_closure, + STATE(2473), 2, + sym_comment, + sym_groovy_doc, + [114727] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(3940), 1, + anon_sym_extends, + STATE(1139), 1, + sym_closure, + STATE(2474), 2, + sym_comment, + sym_groovy_doc, + [114750] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1249), 1, + anon_sym_LBRACE, + ACTIONS(3942), 1, + anon_sym_extends, + STATE(708), 1, + sym_closure, + STATE(2475), 2, + sym_comment, + sym_groovy_doc, + [114773] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3944), 1, + sym_identifier, + STATE(2661), 1, + sym_generic_param, + STATE(2476), 3, + sym_comment, + sym_groovy_doc, + aux_sym_generic_parameters_repeat1, + [114794] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3898), 1, + anon_sym_COMMA, + ACTIONS(3947), 1, + anon_sym_RPAREN, + STATE(2498), 1, + aux_sym_for_parameters_repeat2, + STATE(2477), 2, + sym_comment, + sym_groovy_doc, + [114817] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3949), 1, + sym_escape_sequence, + ACTIONS(3951), 1, + anon_sym_DOLLAR, + STATE(2329), 1, + sym_interpolation, + STATE(2478), 2, + sym_comment, + sym_groovy_doc, + [114840] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3932), 1, + anon_sym_COMMA, + ACTIONS(3953), 1, + anon_sym_SEMI, + STATE(2469), 1, + aux_sym_for_parameters_repeat1, + STATE(2479), 2, + sym_comment, + sym_groovy_doc, + [114863] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3955), 1, + anon_sym_SEMI, + ACTIONS(3957), 1, + anon_sym_COMMA, + STATE(2480), 3, + sym_comment, + sym_groovy_doc, + aux_sym_for_parameters_repeat1, + [114884] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3962), 1, + anon_sym_extends, + ACTIONS(3960), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2481), 2, + sym_comment, + sym_groovy_doc, + [114905] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(3964), 1, + anon_sym_extends, + STATE(1008), 1, + sym_closure, + STATE(2482), 2, + sym_comment, + sym_groovy_doc, + [114928] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3898), 1, + anon_sym_COMMA, + ACTIONS(3966), 1, + anon_sym_RPAREN, + STATE(2484), 1, + aux_sym_for_parameters_repeat2, + STATE(2483), 2, + sym_comment, + sym_groovy_doc, + [114951] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3968), 1, + anon_sym_COMMA, + ACTIONS(3971), 1, + anon_sym_RPAREN, + STATE(2484), 3, + sym_comment, + sym_groovy_doc, + aux_sym_for_parameters_repeat2, + [114972] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(822), 1, + anon_sym_LBRACE, + ACTIONS(3973), 1, + anon_sym_extends, + STATE(979), 1, + sym_closure, + STATE(2485), 2, + sym_comment, + sym_groovy_doc, + [114995] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1359), 1, + anon_sym_LBRACE, + ACTIONS(3975), 1, + anon_sym_extends, + STATE(733), 1, + sym_closure, + STATE(2486), 2, + sym_comment, + sym_groovy_doc, + [115018] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3979), 1, + aux_sym__plain_string_token1, + ACTIONS(3977), 2, + anon_sym_SQUOTE, + sym_escape_sequence, + STATE(2487), 2, + sym_comment, + sym_groovy_doc, + [115039] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1359), 1, + anon_sym_LBRACE, + ACTIONS(3981), 1, + anon_sym_extends, + STATE(726), 1, + sym_closure, + STATE(2488), 2, + sym_comment, + sym_groovy_doc, + [115062] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(3983), 1, + anon_sym_extends, + STATE(732), 1, + sym_closure, + STATE(2489), 2, + sym_comment, + sym_groovy_doc, + [115085] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(3985), 1, + anon_sym_extends, + STATE(1132), 1, + sym_closure, + STATE(2490), 2, + sym_comment, + sym_groovy_doc, + [115108] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1249), 1, + anon_sym_LBRACE, + ACTIONS(3987), 1, + anon_sym_extends, + STATE(709), 1, + sym_closure, + STATE(2491), 2, + sym_comment, + sym_groovy_doc, + [115131] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3989), 1, + anon_sym_else, + ACTIONS(1471), 2, + anon_sym_SEMI, + anon_sym_while, + STATE(2492), 2, + sym_comment, + sym_groovy_doc, + [115152] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(3991), 1, + anon_sym_extends, + STATE(726), 1, + sym_closure, + STATE(2493), 2, + sym_comment, + sym_groovy_doc, + [115175] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3898), 1, + anon_sym_COMMA, + ACTIONS(3993), 1, + anon_sym_RPAREN, + STATE(2484), 1, + aux_sym_for_parameters_repeat2, + STATE(2494), 2, + sym_comment, + sym_groovy_doc, + [115198] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3898), 1, + anon_sym_COMMA, + ACTIONS(3995), 1, + anon_sym_RPAREN, + STATE(2468), 1, + aux_sym_for_parameters_repeat2, + STATE(2495), 2, + sym_comment, + sym_groovy_doc, + [115221] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + STATE(2496), 2, + sym_comment, + sym_groovy_doc, + ACTIONS(3997), 3, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + [115240] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3898), 1, + anon_sym_COMMA, + ACTIONS(3999), 1, + anon_sym_RPAREN, + STATE(2483), 1, + aux_sym_for_parameters_repeat2, + STATE(2497), 2, + sym_comment, + sym_groovy_doc, + [115263] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3898), 1, + anon_sym_COMMA, + ACTIONS(4001), 1, + anon_sym_RPAREN, + STATE(2484), 1, + aux_sym_for_parameters_repeat2, + STATE(2498), 2, + sym_comment, + sym_groovy_doc, + [115286] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1359), 1, + anon_sym_LBRACE, + STATE(736), 1, + sym_closure, + STATE(2499), 2, + sym_comment, + sym_groovy_doc, + [115306] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4003), 1, + anon_sym_COMMA, + ACTIONS(4005), 1, + anon_sym_RBRACK, + STATE(2500), 2, + sym_comment, + sym_groovy_doc, + [115326] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2350), 1, + anon_sym_COMMA, + ACTIONS(2352), 1, + anon_sym_RPAREN, + STATE(2501), 2, + sym_comment, + sym_groovy_doc, + [115346] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3352), 1, + anon_sym_RBRACK, + ACTIONS(4007), 1, + anon_sym_COMMA, + STATE(2502), 2, + sym_comment, + sym_groovy_doc, + [115366] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2384), 1, + anon_sym_COMMA, + ACTIONS(2386), 1, + anon_sym_RPAREN, + STATE(2503), 2, + sym_comment, + sym_groovy_doc, + [115386] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2388), 1, + anon_sym_COMMA, + ACTIONS(2390), 1, + anon_sym_RPAREN, + STATE(2504), 2, + sym_comment, + sym_groovy_doc, + [115406] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4009), 1, + anon_sym_LPAREN, + STATE(546), 1, + sym_for_parameters, + STATE(2505), 2, + sym_comment, + sym_groovy_doc, + [115426] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3148), 1, + anon_sym_RPAREN, + ACTIONS(4011), 1, + anon_sym_COMMA, + STATE(2506), 2, + sym_comment, + sym_groovy_doc, + [115446] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4013), 1, + anon_sym_LPAREN, + STATE(527), 1, + sym_for_parameters, + STATE(2507), 2, + sym_comment, + sym_groovy_doc, + [115466] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1249), 1, + anon_sym_LBRACE, + STATE(1077), 1, + sym_closure, + STATE(2508), 2, + sym_comment, + sym_groovy_doc, + [115486] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2366), 1, + anon_sym_COMMA, + ACTIONS(2368), 1, + anon_sym_RPAREN, + STATE(2509), 2, + sym_comment, + sym_groovy_doc, + [115506] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4015), 1, + anon_sym_LBRACE, + ACTIONS(4017), 1, + aux_sym_interpolation_token1, + STATE(2510), 2, + sym_comment, + sym_groovy_doc, + [115526] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(91), 1, + anon_sym_SEMI, + ACTIONS(95), 1, + anon_sym_while, + STATE(2511), 2, + sym_comment, + sym_groovy_doc, + [115546] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4019), 1, + anon_sym_COMMA, + ACTIONS(4021), 1, + anon_sym_RPAREN, + STATE(2512), 2, + sym_comment, + sym_groovy_doc, + [115566] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4023), 1, + anon_sym_LBRACE, + STATE(1006), 1, + sym_switch_block, + STATE(2513), 2, + sym_comment, + sym_groovy_doc, + [115586] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + STATE(2722), 1, + sym_closure, + STATE(2514), 2, + sym_comment, + sym_groovy_doc, + [115606] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4025), 1, + anon_sym_COMMA, + ACTIONS(4027), 1, + anon_sym_DASH_GT, + STATE(2515), 2, + sym_comment, + sym_groovy_doc, + [115626] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2420), 1, + anon_sym_COMMA, + ACTIONS(2422), 1, + anon_sym_RPAREN, + STATE(2516), 2, + sym_comment, + sym_groovy_doc, + [115646] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4029), 1, + anon_sym_LPAREN, + STATE(624), 1, + sym_for_parameters, + STATE(2517), 2, + sym_comment, + sym_groovy_doc, + [115666] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4031), 1, + anon_sym_LPAREN, + STATE(614), 1, + sym_for_parameters, + STATE(2518), 2, + sym_comment, + sym_groovy_doc, + [115686] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4033), 1, + anon_sym_LPAREN, + STATE(626), 1, + sym_for_parameters, + STATE(2519), 2, + sym_comment, + sym_groovy_doc, + [115706] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + STATE(734), 1, + sym_closure, + STATE(2520), 2, + sym_comment, + sym_groovy_doc, + [115726] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2362), 1, + anon_sym_COMMA, + ACTIONS(2364), 1, + anon_sym_RPAREN, + STATE(2521), 2, + sym_comment, + sym_groovy_doc, + [115746] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4035), 1, + anon_sym_COMMA, + ACTIONS(4037), 1, + anon_sym_RBRACK, + STATE(2522), 2, + sym_comment, + sym_groovy_doc, + [115766] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2262), 1, + anon_sym_COMMA, + ACTIONS(2264), 1, + anon_sym_RPAREN, + STATE(2523), 2, + sym_comment, + sym_groovy_doc, + [115786] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4039), 1, + anon_sym_LBRACE, + ACTIONS(4041), 1, + aux_sym_interpolation_token1, + STATE(2524), 2, + sym_comment, + sym_groovy_doc, + [115806] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2316), 1, + anon_sym_COMMA, + ACTIONS(2318), 1, + anon_sym_RPAREN, + STATE(2525), 2, + sym_comment, + sym_groovy_doc, + [115826] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4043), 1, + sym_identifier, + ACTIONS(4045), 1, + anon_sym_GT, + STATE(2526), 2, + sym_comment, + sym_groovy_doc, + [115846] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4047), 2, + anon_sym_extends, + anon_sym_LBRACE, + STATE(2527), 2, + sym_comment, + sym_groovy_doc, + [115864] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3331), 1, + anon_sym_RBRACK, + ACTIONS(4049), 1, + anon_sym_COMMA, + STATE(2528), 2, + sym_comment, + sym_groovy_doc, + [115884] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4051), 1, + anon_sym_LPAREN, + STATE(544), 1, + sym_for_parameters, + STATE(2529), 2, + sym_comment, + sym_groovy_doc, + [115904] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4053), 1, + anon_sym_LPAREN, + STATE(565), 1, + sym_for_parameters, + STATE(2530), 2, + sym_comment, + sym_groovy_doc, + [115924] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2438), 1, + anon_sym_COMMA, + ACTIONS(2440), 1, + anon_sym_RPAREN, + STATE(2531), 2, + sym_comment, + sym_groovy_doc, + [115944] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(33), 1, + anon_sym_LBRACE, + STATE(736), 1, + sym_closure, + STATE(2532), 2, + sym_comment, + sym_groovy_doc, + [115964] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2358), 1, + anon_sym_COMMA, + ACTIONS(2360), 1, + anon_sym_RPAREN, + STATE(2533), 2, + sym_comment, + sym_groovy_doc, + [115984] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2416), 1, + anon_sym_COMMA, + ACTIONS(2418), 1, + anon_sym_RPAREN, + STATE(2534), 2, + sym_comment, + sym_groovy_doc, + [116004] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4055), 1, + anon_sym_LPAREN, + STATE(575), 1, + sym_for_parameters, + STATE(2535), 2, + sym_comment, + sym_groovy_doc, + [116024] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4057), 1, + anon_sym_LPAREN, + STATE(579), 1, + sym_for_parameters, + STATE(2536), 2, + sym_comment, + sym_groovy_doc, + [116044] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4059), 1, + anon_sym_COMMA, + ACTIONS(4061), 1, + anon_sym_RBRACK, + STATE(2537), 2, + sym_comment, + sym_groovy_doc, + [116064] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2402), 1, + anon_sym_COMMA, + ACTIONS(2404), 1, + anon_sym_RPAREN, + STATE(2538), 2, + sym_comment, + sym_groovy_doc, + [116084] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4063), 2, + anon_sym_extends, + anon_sym_LBRACE, + STATE(2539), 2, + sym_comment, + sym_groovy_doc, + [116102] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2258), 1, + anon_sym_COMMA, + ACTIONS(2260), 1, + anon_sym_RPAREN, + STATE(2540), 2, + sym_comment, + sym_groovy_doc, + [116122] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4065), 1, + anon_sym_COMMA, + ACTIONS(4067), 1, + anon_sym_RBRACK, + STATE(2541), 2, + sym_comment, + sym_groovy_doc, + [116142] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2434), 1, + anon_sym_COMMA, + ACTIONS(2436), 1, + anon_sym_RPAREN, + STATE(2542), 2, + sym_comment, + sym_groovy_doc, + [116162] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2392), 1, + anon_sym_COMMA, + ACTIONS(2394), 1, + anon_sym_RPAREN, + STATE(2543), 2, + sym_comment, + sym_groovy_doc, + [116182] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4069), 1, + anon_sym_LPAREN, + STATE(553), 1, + sym_for_parameters, + STATE(2544), 2, + sym_comment, + sym_groovy_doc, + [116202] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4071), 1, + anon_sym_LPAREN, + STATE(573), 1, + sym_for_parameters, + STATE(2545), 2, + sym_comment, + sym_groovy_doc, + [116222] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1359), 1, + anon_sym_LBRACE, + STATE(734), 1, + sym_closure, + STATE(2546), 2, + sym_comment, + sym_groovy_doc, + [116242] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3971), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(2547), 2, + sym_comment, + sym_groovy_doc, + [116260] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4073), 1, + anon_sym_LPAREN, + STATE(622), 1, + sym_for_parameters, + STATE(2548), 2, + sym_comment, + sym_groovy_doc, + [116280] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2298), 1, + anon_sym_COMMA, + ACTIONS(2300), 1, + anon_sym_RPAREN, + STATE(2549), 2, + sym_comment, + sym_groovy_doc, + [116300] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2286), 1, + anon_sym_COMMA, + ACTIONS(2288), 1, + anon_sym_RPAREN, + STATE(2550), 2, + sym_comment, + sym_groovy_doc, + [116320] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3955), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(2551), 2, + sym_comment, + sym_groovy_doc, + [116338] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4075), 1, + anon_sym_LPAREN, + STATE(590), 1, + sym_for_parameters, + STATE(2552), 2, + sym_comment, + sym_groovy_doc, + [116358] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2380), 1, + anon_sym_COMMA, + ACTIONS(2382), 1, + anon_sym_RPAREN, + STATE(2553), 2, + sym_comment, + sym_groovy_doc, + [116378] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3344), 1, + anon_sym_RBRACK, + ACTIONS(4077), 1, + anon_sym_COMMA, + STATE(2554), 2, + sym_comment, + sym_groovy_doc, + [116398] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4079), 1, + anon_sym_COMMA, + ACTIONS(4081), 1, + anon_sym_RBRACK, + STATE(2555), 2, + sym_comment, + sym_groovy_doc, + [116418] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2324), 1, + anon_sym_COMMA, + ACTIONS(2326), 1, + anon_sym_RPAREN, + STATE(2556), 2, + sym_comment, + sym_groovy_doc, + [116438] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2266), 1, + anon_sym_COMMA, + ACTIONS(2268), 1, + anon_sym_RPAREN, + STATE(2557), 2, + sym_comment, + sym_groovy_doc, + [116458] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3150), 1, + anon_sym_RPAREN, + ACTIONS(4083), 1, + anon_sym_COMMA, + STATE(2558), 2, + sym_comment, + sym_groovy_doc, + [116478] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4085), 1, + anon_sym_LPAREN, + STATE(545), 1, + sym_for_parameters, + STATE(2559), 2, + sym_comment, + sym_groovy_doc, + [116498] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4087), 1, + anon_sym_LBRACE, + ACTIONS(4089), 1, + aux_sym_interpolation_token1, + STATE(2560), 2, + sym_comment, + sym_groovy_doc, + [116518] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4091), 1, + anon_sym_LPAREN, + STATE(613), 1, + sym_for_parameters, + STATE(2561), 2, + sym_comment, + sym_groovy_doc, + [116538] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4093), 1, + anon_sym_LBRACE, + STATE(664), 1, + sym_switch_block, + STATE(2562), 2, + sym_comment, + sym_groovy_doc, + [116558] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4095), 1, + anon_sym_LPAREN, + STATE(635), 1, + sym_for_parameters, + STATE(2563), 2, + sym_comment, + sym_groovy_doc, + [116578] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4097), 1, + anon_sym_GT, + ACTIONS(4099), 1, + anon_sym_COMMA, + STATE(2564), 2, + sym_comment, + sym_groovy_doc, + [116598] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4101), 1, + anon_sym_LPAREN, + STATE(602), 1, + sym_for_parameters, + STATE(2565), 2, + sym_comment, + sym_groovy_doc, + [116618] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4043), 1, + sym_identifier, + ACTIONS(4097), 1, + anon_sym_GT, + STATE(2566), 2, + sym_comment, + sym_groovy_doc, + [116638] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4103), 2, + anon_sym_extends, + anon_sym_LBRACE, + STATE(2567), 2, + sym_comment, + sym_groovy_doc, + [116656] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2376), 1, + anon_sym_COMMA, + ACTIONS(2378), 1, + anon_sym_RPAREN, + STATE(2568), 2, + sym_comment, + sym_groovy_doc, + [116676] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4105), 1, + anon_sym_LBRACE, + ACTIONS(4107), 1, + aux_sym_interpolation_token1, + STATE(2569), 2, + sym_comment, + sym_groovy_doc, + [116696] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3130), 1, + anon_sym_RPAREN, + ACTIONS(4109), 1, + anon_sym_COMMA, + STATE(2570), 2, + sym_comment, + sym_groovy_doc, + [116716] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2312), 1, + anon_sym_COMMA, + ACTIONS(2314), 1, + anon_sym_RPAREN, + STATE(2571), 2, + sym_comment, + sym_groovy_doc, + [116736] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1249), 1, + anon_sym_LBRACE, + STATE(705), 1, + sym_closure, + STATE(2572), 2, + sym_comment, + sym_groovy_doc, + [116756] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(822), 1, + anon_sym_LBRACE, + STATE(1114), 1, + sym_closure, + STATE(2573), 2, + sym_comment, + sym_groovy_doc, + [116776] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2442), 1, + anon_sym_COMMA, + ACTIONS(2444), 1, + anon_sym_RPAREN, + STATE(2574), 2, + sym_comment, + sym_groovy_doc, + [116796] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2278), 1, + anon_sym_COMMA, + ACTIONS(2280), 1, + anon_sym_RPAREN, + STATE(2575), 2, + sym_comment, + sym_groovy_doc, + [116816] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2332), 1, + anon_sym_COMMA, + ACTIONS(2334), 1, + anon_sym_RPAREN, + STATE(2576), 2, + sym_comment, + sym_groovy_doc, + [116836] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3158), 1, + anon_sym_DASH_GT, + ACTIONS(4111), 1, + anon_sym_COMMA, + STATE(2577), 2, + sym_comment, + sym_groovy_doc, + [116856] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4113), 1, + anon_sym_LPAREN, + STATE(555), 1, + sym_for_parameters, + STATE(2578), 2, + sym_comment, + sym_groovy_doc, + [116876] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2282), 1, + anon_sym_COMMA, + ACTIONS(2284), 1, + anon_sym_RPAREN, + STATE(2579), 2, + sym_comment, + sym_groovy_doc, + [116896] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2340), 1, + anon_sym_COMMA, + ACTIONS(2342), 1, + anon_sym_RPAREN, + STATE(2580), 2, + sym_comment, + sym_groovy_doc, + [116916] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4115), 1, + anon_sym_LBRACE, + STATE(1497), 1, + sym_switch_block, + STATE(2581), 2, + sym_comment, + sym_groovy_doc, + [116936] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3348), 1, + anon_sym_RBRACK, + ACTIONS(4117), 1, + anon_sym_COMMA, + STATE(2582), 2, + sym_comment, + sym_groovy_doc, + [116956] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3350), 1, + anon_sym_RBRACK, + ACTIONS(4119), 1, + anon_sym_COMMA, + STATE(2583), 2, + sym_comment, + sym_groovy_doc, + [116976] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(822), 1, + anon_sym_LBRACE, + STATE(1043), 1, + sym_closure, + STATE(2584), 2, + sym_comment, + sym_groovy_doc, + [116996] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2354), 1, + anon_sym_COMMA, + ACTIONS(2356), 1, + anon_sym_RPAREN, + STATE(2585), 2, + sym_comment, + sym_groovy_doc, + [117016] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4121), 1, + anon_sym_LBRACE, + STATE(747), 1, + sym_switch_block, + STATE(2586), 2, + sym_comment, + sym_groovy_doc, + [117036] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2424), 1, + anon_sym_COMMA, + ACTIONS(2426), 1, + anon_sym_RPAREN, + STATE(2587), 2, + sym_comment, + sym_groovy_doc, + [117056] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1249), 1, + anon_sym_LBRACE, + STATE(823), 1, + sym_closure, + STATE(2588), 2, + sym_comment, + sym_groovy_doc, + [117076] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3360), 1, + anon_sym_RBRACK, + ACTIONS(4123), 1, + anon_sym_COMMA, + STATE(2589), 2, + sym_comment, + sym_groovy_doc, + [117096] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2344), 1, + anon_sym_COMMA, + ACTIONS(2346), 1, + anon_sym_RPAREN, + STATE(2590), 2, + sym_comment, + sym_groovy_doc, + [117116] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2294), 1, + anon_sym_COMMA, + ACTIONS(2296), 1, + anon_sym_RPAREN, + STATE(2591), 2, + sym_comment, + sym_groovy_doc, + [117136] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2370), 1, + anon_sym_COMMA, + ACTIONS(2372), 1, + anon_sym_RPAREN, + STATE(2592), 2, + sym_comment, + sym_groovy_doc, + [117156] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(944), 1, + anon_sym_LBRACE, + STATE(1382), 1, + sym_closure, + STATE(2593), 2, + sym_comment, + sym_groovy_doc, + [117176] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2336), 1, + anon_sym_COMMA, + ACTIONS(2338), 1, + anon_sym_RPAREN, + STATE(2594), 2, + sym_comment, + sym_groovy_doc, + [117196] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2328), 1, + anon_sym_COMMA, + ACTIONS(2330), 1, + anon_sym_RPAREN, + STATE(2595), 2, + sym_comment, + sym_groovy_doc, + [117216] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3154), 1, + anon_sym_RPAREN, + ACTIONS(4125), 1, + anon_sym_COMMA, + STATE(2596), 2, + sym_comment, + sym_groovy_doc, + [117236] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4127), 1, + anon_sym_COMMA, + ACTIONS(4129), 1, + anon_sym_RPAREN, + STATE(2597), 2, + sym_comment, + sym_groovy_doc, + [117256] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2406), 1, + anon_sym_COMMA, + ACTIONS(2408), 1, + anon_sym_RPAREN, + STATE(2598), 2, + sym_comment, + sym_groovy_doc, + [117276] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2254), 1, + anon_sym_COMMA, + ACTIONS(2256), 1, + anon_sym_RPAREN, + STATE(2599), 2, + sym_comment, + sym_groovy_doc, + [117296] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4131), 1, + anon_sym_LPAREN, + STATE(593), 1, + sym_for_parameters, + STATE(2600), 2, + sym_comment, + sym_groovy_doc, + [117316] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2304), 1, + anon_sym_COMMA, + ACTIONS(2306), 1, + anon_sym_RPAREN, + STATE(2601), 2, + sym_comment, + sym_groovy_doc, + [117336] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3960), 1, + anon_sym_COMMA, + ACTIONS(4133), 1, + anon_sym_extends, + STATE(2602), 2, + sym_comment, + sym_groovy_doc, + [117356] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2308), 1, + anon_sym_COMMA, + ACTIONS(2310), 1, + anon_sym_RPAREN, + STATE(2603), 2, + sym_comment, + sym_groovy_doc, + [117376] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4135), 1, + anon_sym_COMMA, + ACTIONS(4137), 1, + anon_sym_RBRACK, + STATE(2604), 2, + sym_comment, + sym_groovy_doc, + [117396] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4139), 1, + anon_sym_GT, + ACTIONS(4141), 1, + anon_sym_COMMA, + STATE(2605), 2, + sym_comment, + sym_groovy_doc, + [117416] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4143), 1, + anon_sym_COMMA, + ACTIONS(4145), 1, + anon_sym_RBRACK, + STATE(2606), 2, + sym_comment, + sym_groovy_doc, + [117436] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4147), 1, + anon_sym_COMMA, + ACTIONS(4149), 1, + anon_sym_RPAREN, + STATE(2607), 2, + sym_comment, + sym_groovy_doc, + [117456] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(944), 1, + anon_sym_LBRACE, + STATE(1436), 1, + sym_closure, + STATE(2608), 2, + sym_comment, + sym_groovy_doc, + [117476] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3356), 1, + anon_sym_RBRACK, + ACTIONS(4151), 1, + anon_sym_COMMA, + STATE(2609), 2, + sym_comment, + sym_groovy_doc, + [117496] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4153), 1, + anon_sym_COMMA, + ACTIONS(4155), 1, + anon_sym_RPAREN, + STATE(2610), 2, + sym_comment, + sym_groovy_doc, + [117516] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4157), 1, + anon_sym_LPAREN, + STATE(609), 1, + sym_for_parameters, + STATE(2611), 2, + sym_comment, + sym_groovy_doc, + [117536] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4159), 1, + sym_identifier, + STATE(2612), 2, + sym_comment, + sym_groovy_doc, + [117553] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4161), 1, + anon_sym_DASH_GT, + STATE(2613), 2, + sym_comment, + sym_groovy_doc, + [117570] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4163), 1, + sym_identifier, + STATE(2614), 2, + sym_comment, + sym_groovy_doc, + [117587] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4165), 1, + anon_sym_COMMA, + STATE(2615), 2, + sym_comment, + sym_groovy_doc, + [117604] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4167), 1, + anon_sym_LPAREN, + STATE(2616), 2, + sym_comment, + sym_groovy_doc, + [117621] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4169), 1, + anon_sym_LPAREN, + STATE(2617), 2, + sym_comment, + sym_groovy_doc, + [117638] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4171), 1, + anon_sym_LPAREN, + STATE(2618), 2, + sym_comment, + sym_groovy_doc, + [117655] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4173), 1, + anon_sym_LPAREN, + STATE(2619), 2, + sym_comment, + sym_groovy_doc, + [117672] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4175), 1, + anon_sym_LPAREN, + STATE(2620), 2, + sym_comment, + sym_groovy_doc, + [117689] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4177), 1, + anon_sym_LPAREN, + STATE(2621), 2, + sym_comment, + sym_groovy_doc, + [117706] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4179), 1, + anon_sym_LPAREN, + STATE(2622), 2, + sym_comment, + sym_groovy_doc, + [117723] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4181), 1, + anon_sym_LPAREN, + STATE(2623), 2, + sym_comment, + sym_groovy_doc, + [117740] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4183), 1, + sym_identifier, + STATE(2624), 2, + sym_comment, + sym_groovy_doc, + [117757] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4185), 1, + sym_identifier, + STATE(2625), 2, + sym_comment, + sym_groovy_doc, + [117774] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4187), 1, + anon_sym_LPAREN, + STATE(2626), 2, + sym_comment, + sym_groovy_doc, + [117791] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4189), 1, + anon_sym_LPAREN, + STATE(2627), 2, + sym_comment, + sym_groovy_doc, + [117808] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4191), 1, + anon_sym_DASH_GT, + STATE(2628), 2, + sym_comment, + sym_groovy_doc, + [117825] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4193), 1, + sym_identifier, + STATE(2629), 2, + sym_comment, + sym_groovy_doc, + [117842] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4195), 1, + anon_sym_LPAREN, + STATE(2630), 2, + sym_comment, + sym_groovy_doc, + [117859] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4197), 1, + anon_sym_LPAREN, + STATE(2631), 2, + sym_comment, + sym_groovy_doc, + [117876] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1777), 1, + anon_sym_COLON, + STATE(2632), 2, + sym_comment, + sym_groovy_doc, + [117893] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4199), 1, + anon_sym_COMMA, + STATE(2633), 2, + sym_comment, + sym_groovy_doc, + [117910] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4201), 1, + anon_sym_LPAREN, + STATE(2634), 2, + sym_comment, + sym_groovy_doc, + [117927] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4203), 1, + anon_sym_LPAREN, + STATE(2635), 2, + sym_comment, + sym_groovy_doc, + [117944] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4205), 1, + anon_sym_LPAREN, + STATE(2636), 2, + sym_comment, + sym_groovy_doc, + [117961] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4207), 1, + sym_identifier, + STATE(2637), 2, + sym_comment, + sym_groovy_doc, + [117978] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4209), 1, + anon_sym_LPAREN, + STATE(2638), 2, + sym_comment, + sym_groovy_doc, + [117995] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4211), 1, + sym_identifier, + STATE(2639), 2, + sym_comment, + sym_groovy_doc, + [118012] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4213), 1, + anon_sym_LPAREN, + STATE(2640), 2, + sym_comment, + sym_groovy_doc, + [118029] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4215), 1, + anon_sym_LPAREN, + STATE(2641), 2, + sym_comment, + sym_groovy_doc, + [118046] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4217), 1, + anon_sym_LPAREN, + STATE(2642), 2, + sym_comment, + sym_groovy_doc, + [118063] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4219), 1, + anon_sym_LPAREN, + STATE(2643), 2, + sym_comment, + sym_groovy_doc, + [118080] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4221), 1, + anon_sym_LPAREN, + STATE(2644), 2, + sym_comment, + sym_groovy_doc, + [118097] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4223), 1, + anon_sym_LPAREN, + STATE(2645), 2, + sym_comment, + sym_groovy_doc, + [118114] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4225), 1, + anon_sym_LPAREN, + STATE(2646), 2, + sym_comment, + sym_groovy_doc, + [118131] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4227), 1, + anon_sym_LPAREN, + STATE(2647), 2, + sym_comment, + sym_groovy_doc, + [118148] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4229), 1, + sym_identifier, + STATE(2648), 2, + sym_comment, + sym_groovy_doc, + [118165] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4231), 1, + anon_sym_while, + STATE(2649), 2, + sym_comment, + sym_groovy_doc, + [118182] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4233), 1, + anon_sym_DASH_GT, + STATE(2650), 2, + sym_comment, + sym_groovy_doc, + [118199] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4235), 1, + sym_identifier, + STATE(2651), 2, + sym_comment, + sym_groovy_doc, + [118216] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2776), 1, + anon_sym_COMMA, + STATE(2652), 2, + sym_comment, + sym_groovy_doc, + [118233] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4237), 1, + sym_identifier, + STATE(2653), 2, + sym_comment, + sym_groovy_doc, + [118250] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2694), 1, + anon_sym_RPAREN, + STATE(2654), 2, + sym_comment, + sym_groovy_doc, + [118267] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4239), 1, + sym_identifier, + STATE(2655), 2, + sym_comment, + sym_groovy_doc, + [118284] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4241), 1, + anon_sym_DASH_GT, + STATE(2656), 2, + sym_comment, + sym_groovy_doc, + [118301] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1973), 1, + anon_sym_COLON, + STATE(2657), 2, + sym_comment, + sym_groovy_doc, + [118318] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4243), 1, + sym_identifier, + STATE(2658), 2, + sym_comment, + sym_groovy_doc, + [118335] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4245), 1, + sym_identifier, + STATE(2659), 2, + sym_comment, + sym_groovy_doc, + [118352] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4247), 1, + sym_identifier, + STATE(2660), 2, + sym_comment, + sym_groovy_doc, + [118369] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4249), 1, + anon_sym_COMMA, + STATE(2661), 2, + sym_comment, + sym_groovy_doc, + [118386] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4251), 1, + ts_builtin_sym_end, + STATE(2662), 2, + sym_comment, + sym_groovy_doc, + [118403] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4253), 1, + anon_sym_DASH_GT, + STATE(2663), 2, + sym_comment, + sym_groovy_doc, + [118420] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4255), 1, + anon_sym_LPAREN, + STATE(2664), 2, + sym_comment, + sym_groovy_doc, + [118437] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4257), 1, + sym_identifier, + STATE(2665), 2, + sym_comment, + sym_groovy_doc, + [118454] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4259), 1, + sym_identifier, + STATE(2666), 2, + sym_comment, + sym_groovy_doc, + [118471] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4261), 1, + anon_sym_COLON, + STATE(2667), 2, + sym_comment, + sym_groovy_doc, + [118488] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4263), 1, + sym_identifier, + STATE(2668), 2, + sym_comment, + sym_groovy_doc, + [118505] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4265), 1, + sym_identifier, + STATE(2669), 2, + sym_comment, + sym_groovy_doc, + [118522] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4267), 1, + sym_identifier, + STATE(2670), 2, + sym_comment, + sym_groovy_doc, + [118539] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4269), 1, + sym_escape_sequence, + STATE(2671), 2, + sym_comment, + sym_groovy_doc, + [118556] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4271), 1, + sym_identifier, + STATE(2672), 2, + sym_comment, + sym_groovy_doc, + [118573] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4005), 1, + anon_sym_RBRACK, + STATE(2673), 2, + sym_comment, + sym_groovy_doc, + [118590] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4273), 1, + anon_sym_DASH_GT, + STATE(2674), 2, + sym_comment, + sym_groovy_doc, + [118607] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4043), 1, + sym_identifier, + STATE(2675), 2, + sym_comment, + sym_groovy_doc, + [118624] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4275), 1, + sym_identifier, + STATE(2676), 2, + sym_comment, + sym_groovy_doc, + [118641] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4277), 1, + sym_identifier, + STATE(2677), 2, + sym_comment, + sym_groovy_doc, + [118658] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4279), 1, + sym_identifier, + STATE(2678), 2, + sym_comment, + sym_groovy_doc, + [118675] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4281), 1, + anon_sym_LPAREN, + STATE(2679), 2, + sym_comment, + sym_groovy_doc, + [118692] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4283), 1, + sym_identifier, + STATE(2680), 2, + sym_comment, + sym_groovy_doc, + [118709] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4285), 1, + sym_identifier, + STATE(2681), 2, + sym_comment, + sym_groovy_doc, + [118726] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4287), 1, + sym_identifier, + STATE(2682), 2, + sym_comment, + sym_groovy_doc, + [118743] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2588), 1, + anon_sym_RPAREN, + STATE(2683), 2, + sym_comment, + sym_groovy_doc, + [118760] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4289), 1, + sym_identifier, + STATE(2684), 2, + sym_comment, + sym_groovy_doc, + [118777] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4291), 1, + sym_identifier, + STATE(2685), 2, + sym_comment, + sym_groovy_doc, + [118794] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2448), 1, + anon_sym_RPAREN, + STATE(2686), 2, + sym_comment, + sym_groovy_doc, + [118811] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4293), 1, + sym_identifier, + STATE(2687), 2, + sym_comment, + sym_groovy_doc, + [118828] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4295), 1, + sym_identifier, + STATE(2688), 2, + sym_comment, + sym_groovy_doc, + [118845] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4297), 1, + anon_sym_DASH_GT, + STATE(2689), 2, + sym_comment, + sym_groovy_doc, + [118862] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4299), 1, + sym_identifier, + STATE(2690), 2, + sym_comment, + sym_groovy_doc, + [118879] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4301), 1, + sym_identifier, + STATE(2691), 2, + sym_comment, + sym_groovy_doc, + [118896] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4303), 1, + sym_identifier, + STATE(2692), 2, + sym_comment, + sym_groovy_doc, + [118913] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4305), 1, + sym_identifier, + STATE(2693), 2, + sym_comment, + sym_groovy_doc, + [118930] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4067), 1, + anon_sym_RBRACK, + STATE(2694), 2, + sym_comment, + sym_groovy_doc, + [118947] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4307), 1, + sym_identifier, + STATE(2695), 2, + sym_comment, + sym_groovy_doc, + [118964] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2476), 1, + anon_sym_RPAREN, + STATE(2696), 2, + sym_comment, + sym_groovy_doc, + [118981] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4309), 1, + sym_identifier, + STATE(2697), 2, + sym_comment, + sym_groovy_doc, + [118998] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4311), 1, + sym_identifier, + STATE(2698), 2, + sym_comment, + sym_groovy_doc, + [119015] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4313), 1, + sym_identifier, + STATE(2699), 2, + sym_comment, + sym_groovy_doc, + [119032] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4315), 1, + sym_identifier, + STATE(2700), 2, + sym_comment, + sym_groovy_doc, + [119049] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4317), 1, + sym_identifier, + STATE(2701), 2, + sym_comment, + sym_groovy_doc, + [119066] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4319), 1, + sym_identifier, + STATE(2702), 2, + sym_comment, + sym_groovy_doc, + [119083] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4321), 1, + sym_identifier, + STATE(2703), 2, + sym_comment, + sym_groovy_doc, + [119100] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4323), 1, + sym_identifier, + STATE(2704), 2, + sym_comment, + sym_groovy_doc, + [119117] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1054), 1, + ts_builtin_sym_end, + STATE(2705), 2, + sym_comment, + sym_groovy_doc, + [119134] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4325), 1, + sym_identifier, + STATE(2706), 2, + sym_comment, + sym_groovy_doc, + [119151] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4327), 1, + sym_identifier, + STATE(2707), 2, + sym_comment, + sym_groovy_doc, + [119168] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4329), 1, + sym_identifier, + STATE(2708), 2, + sym_comment, + sym_groovy_doc, + [119185] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4331), 1, + sym_identifier, + STATE(2709), 2, + sym_comment, + sym_groovy_doc, + [119202] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4333), 1, + sym_identifier, + STATE(2710), 2, + sym_comment, + sym_groovy_doc, + [119219] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4335), 1, + sym_identifier, + STATE(2711), 2, + sym_comment, + sym_groovy_doc, + [119236] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_RBRACK, + STATE(2712), 2, + sym_comment, + sym_groovy_doc, + [119253] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4337), 1, + sym_identifier, + STATE(2713), 2, + sym_comment, + sym_groovy_doc, + [119270] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4339), 1, + sym_identifier, + STATE(2714), 2, + sym_comment, + sym_groovy_doc, + [119287] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4341), 1, + sym_identifier, + STATE(2715), 2, + sym_comment, + sym_groovy_doc, + [119304] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4343), 1, + sym_identifier, + STATE(2716), 2, + sym_comment, + sym_groovy_doc, + [119321] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3902), 1, + sym_escape_sequence, + STATE(2717), 2, + sym_comment, + sym_groovy_doc, + [119338] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4345), 1, + aux_sym_annotation_token1, + STATE(2718), 2, + sym_comment, + sym_groovy_doc, + [119355] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4347), 1, + sym_identifier, + STATE(2719), 2, + sym_comment, + sym_groovy_doc, + [119372] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(2618), 1, + anon_sym_RPAREN, + STATE(2720), 2, + sym_comment, + sym_groovy_doc, + [119389] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4349), 1, + sym_identifier, + STATE(2721), 2, + sym_comment, + sym_groovy_doc, + [119406] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4351), 1, + ts_builtin_sym_end, + STATE(2722), 2, + sym_comment, + sym_groovy_doc, + [119423] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4353), 1, + sym_identifier, + STATE(2723), 2, + sym_comment, + sym_groovy_doc, + [119440] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4355), 1, + anon_sym_while, + STATE(2724), 2, + sym_comment, + sym_groovy_doc, + [119457] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4357), 1, + anon_sym_LPAREN, + STATE(2725), 2, + sym_comment, + sym_groovy_doc, + [119474] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4359), 1, + sym_identifier, + STATE(2726), 2, + sym_comment, + sym_groovy_doc, + [119491] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4361), 1, + sym_identifier, + STATE(2727), 2, + sym_comment, + sym_groovy_doc, + [119508] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4363), 1, + sym_identifier, + STATE(2728), 2, + sym_comment, + sym_groovy_doc, + [119525] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4365), 1, + anon_sym_LPAREN, + STATE(2729), 2, + sym_comment, + sym_groovy_doc, + [119542] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4367), 1, + anon_sym_DASH_GT, + STATE(2730), 2, + sym_comment, + sym_groovy_doc, + [119559] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4369), 1, + sym_identifier, + STATE(2731), 2, + sym_comment, + sym_groovy_doc, + [119576] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4371), 1, + sym_identifier, + STATE(2732), 2, + sym_comment, + sym_groovy_doc, + [119593] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4373), 1, + anon_sym_LPAREN, + STATE(2733), 2, + sym_comment, + sym_groovy_doc, + [119610] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4375), 1, + sym_identifier, + STATE(2734), 2, + sym_comment, + sym_groovy_doc, + [119627] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4377), 1, + anon_sym_LPAREN, + STATE(2735), 2, + sym_comment, + sym_groovy_doc, + [119644] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4379), 1, + sym_identifier, + STATE(2736), 2, + sym_comment, + sym_groovy_doc, + [119661] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4381), 1, + anon_sym_LPAREN, + STATE(2737), 2, + sym_comment, + sym_groovy_doc, + [119678] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4383), 1, + sym_identifier, + STATE(2738), 2, + sym_comment, + sym_groovy_doc, + [119695] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4385), 1, + anon_sym_LPAREN, + STATE(2739), 2, + sym_comment, + sym_groovy_doc, + [119712] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4387), 1, + sym_identifier, + STATE(2740), 2, + sym_comment, + sym_groovy_doc, + [119729] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4389), 1, + anon_sym_LPAREN, + STATE(2741), 2, + sym_comment, + sym_groovy_doc, + [119746] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4391), 1, + anon_sym_LPAREN, + STATE(2742), 2, + sym_comment, + sym_groovy_doc, + [119763] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4393), 1, + anon_sym_LPAREN, + STATE(2743), 2, + sym_comment, + sym_groovy_doc, + [119780] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4395), 1, + anon_sym_while, + STATE(2744), 2, + sym_comment, + sym_groovy_doc, + [119797] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4061), 1, + anon_sym_RBRACK, + STATE(2745), 2, + sym_comment, + sym_groovy_doc, + [119814] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4397), 1, + anon_sym_DASH_GT, + STATE(2746), 2, + sym_comment, + sym_groovy_doc, + [119831] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4399), 1, + anon_sym_LPAREN, + STATE(2747), 2, + sym_comment, + sym_groovy_doc, + [119848] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4401), 1, + anon_sym_LPAREN, + STATE(2748), 2, + sym_comment, + sym_groovy_doc, + [119865] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4403), 1, + anon_sym_LPAREN, + STATE(2749), 2, + sym_comment, + sym_groovy_doc, + [119882] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4405), 1, + anon_sym_LPAREN, + STATE(2750), 2, + sym_comment, + sym_groovy_doc, + [119899] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4407), 1, + anon_sym_while, + STATE(2751), 2, + sym_comment, + sym_groovy_doc, + [119916] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4409), 1, + sym_identifier, + STATE(2752), 2, + sym_comment, + sym_groovy_doc, + [119933] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4411), 1, + sym_identifier, + STATE(2753), 2, + sym_comment, + sym_groovy_doc, + [119950] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4413), 1, + anon_sym_LPAREN, + STATE(2754), 2, + sym_comment, + sym_groovy_doc, + [119967] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4415), 1, + anon_sym_LPAREN, + STATE(2755), 2, + sym_comment, + sym_groovy_doc, + [119984] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4417), 1, + sym_identifier, + STATE(2756), 2, + sym_comment, + sym_groovy_doc, + [120001] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4419), 1, + sym_identifier, + STATE(2757), 2, + sym_comment, + sym_groovy_doc, + [120018] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4421), 1, + anon_sym_LPAREN, + STATE(2758), 2, + sym_comment, + sym_groovy_doc, + [120035] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(2759), 2, + sym_comment, + sym_groovy_doc, + [120052] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4425), 1, + sym_identifier, + STATE(2760), 2, + sym_comment, + sym_groovy_doc, + [120069] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4427), 1, + sym_identifier, + STATE(2761), 2, + sym_comment, + sym_groovy_doc, + [120086] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4429), 1, + anon_sym_LPAREN, + STATE(2762), 2, + sym_comment, + sym_groovy_doc, + [120103] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4431), 1, + sym_identifier, + STATE(2763), 2, + sym_comment, + sym_groovy_doc, + [120120] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4433), 1, + anon_sym_LPAREN, + STATE(2764), 2, + sym_comment, + sym_groovy_doc, + [120137] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4435), 1, + sym_identifier, + STATE(2765), 2, + sym_comment, + sym_groovy_doc, + [120154] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4437), 1, + aux_sym_groovy_doc_token2, + STATE(2766), 2, + sym_comment, + sym_groovy_doc, + [120171] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4439), 1, + sym_identifier, + STATE(2767), 2, + sym_comment, + sym_groovy_doc, + [120188] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4441), 1, + sym_identifier, + STATE(2768), 2, + sym_comment, + sym_groovy_doc, + [120205] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4443), 1, + sym_identifier, + STATE(2769), 2, + sym_comment, + sym_groovy_doc, + [120222] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4445), 1, + sym_identifier, + STATE(2770), 2, + sym_comment, + sym_groovy_doc, + [120239] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(1056), 1, + ts_builtin_sym_end, + STATE(2771), 2, + sym_comment, + sym_groovy_doc, + [120256] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4447), 1, + sym_identifier, + STATE(2772), 2, + sym_comment, + sym_groovy_doc, + [120273] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4449), 1, + ts_builtin_sym_end, + STATE(2773), 2, + sym_comment, + sym_groovy_doc, + [120290] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4451), 1, + sym_identifier, + STATE(2774), 2, + sym_comment, + sym_groovy_doc, + [120307] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4453), 1, + anon_sym_LPAREN, + STATE(2775), 2, + sym_comment, + sym_groovy_doc, + [120324] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4455), 1, + sym_identifier, + STATE(2776), 2, + sym_comment, + sym_groovy_doc, + [120341] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4457), 1, + sym_identifier, + STATE(2777), 2, + sym_comment, + sym_groovy_doc, + [120358] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4459), 1, + sym_identifier, + STATE(2778), 2, + sym_comment, + sym_groovy_doc, + [120375] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4145), 1, + anon_sym_RBRACK, + STATE(2779), 2, + sym_comment, + sym_groovy_doc, + [120392] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4461), 1, + sym_identifier, + STATE(2780), 2, + sym_comment, + sym_groovy_doc, + [120409] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4463), 1, + sym_identifier, + STATE(2781), 2, + sym_comment, + sym_groovy_doc, + [120426] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4465), 1, + sym_identifier, + STATE(2782), 2, + sym_comment, + sym_groovy_doc, + [120443] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4467), 1, + anon_sym_LPAREN, + STATE(2783), 2, + sym_comment, + sym_groovy_doc, + [120460] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4469), 1, + sym_identifier, + STATE(2784), 2, + sym_comment, + sym_groovy_doc, + [120477] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4471), 1, + anon_sym_LPAREN, + STATE(2785), 2, + sym_comment, + sym_groovy_doc, + [120494] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4037), 1, + anon_sym_RBRACK, + STATE(2786), 2, + sym_comment, + sym_groovy_doc, + [120511] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4473), 1, + anon_sym_LPAREN, + STATE(2787), 2, + sym_comment, + sym_groovy_doc, + [120528] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4475), 1, + sym_identifier, + STATE(2788), 2, + sym_comment, + sym_groovy_doc, + [120545] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4477), 1, + sym_identifier, + STATE(2789), 2, + sym_comment, + sym_groovy_doc, + [120562] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4479), 1, + aux_sym_annotation_token1, + STATE(2790), 2, + sym_comment, + sym_groovy_doc, + [120579] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4481), 1, + sym_identifier, + STATE(2791), 2, + sym_comment, + sym_groovy_doc, + [120596] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4137), 1, + anon_sym_RBRACK, + STATE(2792), 2, + sym_comment, + sym_groovy_doc, + [120613] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4483), 1, + aux_sym_shebang_token1, + STATE(2793), 2, + sym_comment, + sym_groovy_doc, + [120630] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4485), 1, + aux_sym_groovy_doc_token1, + STATE(2794), 2, + sym_comment, + sym_groovy_doc, + [120647] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4487), 1, + anon_sym_LPAREN, + STATE(2795), 2, + sym_comment, + sym_groovy_doc, + [120664] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + aux_sym_comment_token1, + ACTIONS(3292), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4489), 1, + aux_sym_comment_token2, + STATE(2796), 2, + sym_comment, + sym_groovy_doc, + [120681] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4491), 1, + anon_sym_LPAREN, + STATE(2797), 2, + sym_comment, + sym_groovy_doc, + [120698] = 1, + ACTIONS(4493), 1, + ts_builtin_sym_end, + [120702] = 1, + ACTIONS(4495), 1, + ts_builtin_sym_end, + [120706] = 1, + ACTIONS(4497), 1, + ts_builtin_sym_end, + [120710] = 1, + ACTIONS(4499), 1, + ts_builtin_sym_end, +}; + +static const uint32_t ts_small_parse_table_map[] = { + [SMALL_STATE(834)] = 0, + [SMALL_STATE(835)] = 75, + [SMALL_STATE(836)] = 149, + [SMALL_STATE(837)] = 223, + [SMALL_STATE(838)] = 297, + [SMALL_STATE(839)] = 371, + [SMALL_STATE(840)] = 449, + [SMALL_STATE(841)] = 523, + [SMALL_STATE(842)] = 597, + [SMALL_STATE(843)] = 671, + [SMALL_STATE(844)] = 745, + [SMALL_STATE(845)] = 819, + [SMALL_STATE(846)] = 893, + [SMALL_STATE(847)] = 967, + [SMALL_STATE(848)] = 1048, + [SMALL_STATE(849)] = 1120, + [SMALL_STATE(850)] = 1192, + [SMALL_STATE(851)] = 1264, + [SMALL_STATE(852)] = 1336, + [SMALL_STATE(853)] = 1408, + [SMALL_STATE(854)] = 1480, + [SMALL_STATE(855)] = 1552, + [SMALL_STATE(856)] = 1624, + [SMALL_STATE(857)] = 1696, + [SMALL_STATE(858)] = 1768, + [SMALL_STATE(859)] = 1840, + [SMALL_STATE(860)] = 1912, + [SMALL_STATE(861)] = 1990, + [SMALL_STATE(862)] = 2062, + [SMALL_STATE(863)] = 2183, + [SMALL_STATE(864)] = 2262, + [SMALL_STATE(865)] = 2341, + [SMALL_STATE(866)] = 2415, + [SMALL_STATE(867)] = 2490, + [SMALL_STATE(868)] = 2565, + [SMALL_STATE(869)] = 2666, + [SMALL_STATE(870)] = 2793, + [SMALL_STATE(871)] = 2896, + [SMALL_STATE(872)] = 2969, + [SMALL_STATE(873)] = 3066, + [SMALL_STATE(874)] = 3161, + [SMALL_STATE(875)] = 3250, + [SMALL_STATE(876)] = 3319, + [SMALL_STATE(877)] = 3412, + [SMALL_STATE(878)] = 3539, + [SMALL_STATE(879)] = 3614, + [SMALL_STATE(880)] = 3689, + [SMALL_STATE(881)] = 3758, + [SMALL_STATE(882)] = 3827, + [SMALL_STATE(883)] = 3926, + [SMALL_STATE(884)] = 4007, + [SMALL_STATE(885)] = 4134, + [SMALL_STATE(886)] = 4211, + [SMALL_STATE(887)] = 4296, + [SMALL_STATE(888)] = 4369, + [SMALL_STATE(889)] = 4496, + [SMALL_STATE(890)] = 4565, + [SMALL_STATE(891)] = 4692, + [SMALL_STATE(892)] = 4761, + [SMALL_STATE(893)] = 4836, + [SMALL_STATE(894)] = 4911, + [SMALL_STATE(895)] = 4980, + [SMALL_STATE(896)] = 5049, + [SMALL_STATE(897)] = 5118, + [SMALL_STATE(898)] = 5195, + [SMALL_STATE(899)] = 5266, + [SMALL_STATE(900)] = 5341, + [SMALL_STATE(901)] = 5410, + [SMALL_STATE(902)] = 5479, + [SMALL_STATE(903)] = 5548, + [SMALL_STATE(904)] = 5617, + [SMALL_STATE(905)] = 5686, + [SMALL_STATE(906)] = 5813, + [SMALL_STATE(907)] = 5888, + [SMALL_STATE(908)] = 6015, + [SMALL_STATE(909)] = 6084, + [SMALL_STATE(910)] = 6153, + [SMALL_STATE(911)] = 6258, + [SMALL_STATE(912)] = 6327, + [SMALL_STATE(913)] = 6396, + [SMALL_STATE(914)] = 6473, + [SMALL_STATE(915)] = 6542, + [SMALL_STATE(916)] = 6661, + [SMALL_STATE(917)] = 6730, + [SMALL_STATE(918)] = 6799, + [SMALL_STATE(919)] = 6872, + [SMALL_STATE(920)] = 6946, + [SMALL_STATE(921)] = 7016, + [SMALL_STATE(922)] = 7090, + [SMALL_STATE(923)] = 7164, + [SMALL_STATE(924)] = 7238, + [SMALL_STATE(925)] = 7312, + [SMALL_STATE(926)] = 7384, + [SMALL_STATE(927)] = 7456, + [SMALL_STATE(928)] = 7530, + [SMALL_STATE(929)] = 7604, + [SMALL_STATE(930)] = 7678, + [SMALL_STATE(931)] = 7749, + [SMALL_STATE(932)] = 7870, + [SMALL_STATE(933)] = 7991, + [SMALL_STATE(934)] = 8112, + [SMALL_STATE(935)] = 8233, + [SMALL_STATE(936)] = 8354, + [SMALL_STATE(937)] = 8475, + [SMALL_STATE(938)] = 8548, + [SMALL_STATE(939)] = 8669, + [SMALL_STATE(940)] = 8742, + [SMALL_STATE(941)] = 8863, + [SMALL_STATE(942)] = 8932, + [SMALL_STATE(943)] = 9005, + [SMALL_STATE(944)] = 9126, + [SMALL_STATE(945)] = 9195, + [SMALL_STATE(946)] = 9316, + [SMALL_STATE(947)] = 9437, + [SMALL_STATE(948)] = 9510, + [SMALL_STATE(949)] = 9631, + [SMALL_STATE(950)] = 9702, + [SMALL_STATE(951)] = 9823, + [SMALL_STATE(952)] = 9944, + [SMALL_STATE(953)] = 10017, + [SMALL_STATE(954)] = 10088, + [SMALL_STATE(955)] = 10159, + [SMALL_STATE(956)] = 10232, + [SMALL_STATE(957)] = 10303, + [SMALL_STATE(958)] = 10372, + [SMALL_STATE(959)] = 10439, + [SMALL_STATE(960)] = 10560, + [SMALL_STATE(961)] = 10631, + [SMALL_STATE(962)] = 10704, + [SMALL_STATE(963)] = 10773, + [SMALL_STATE(964)] = 10842, + [SMALL_STATE(965)] = 10913, + [SMALL_STATE(966)] = 11034, + [SMALL_STATE(967)] = 11103, + [SMALL_STATE(968)] = 11224, + [SMALL_STATE(969)] = 11297, + [SMALL_STATE(970)] = 11370, + [SMALL_STATE(971)] = 11442, + [SMALL_STATE(972)] = 11560, + [SMALL_STATE(973)] = 11626, + [SMALL_STATE(974)] = 11692, + [SMALL_STATE(975)] = 11760, + [SMALL_STATE(976)] = 11878, + [SMALL_STATE(977)] = 11996, + [SMALL_STATE(978)] = 12112, + [SMALL_STATE(979)] = 12178, + [SMALL_STATE(980)] = 12244, + [SMALL_STATE(981)] = 12310, + [SMALL_STATE(982)] = 12376, + [SMALL_STATE(983)] = 12442, + [SMALL_STATE(984)] = 12508, + [SMALL_STATE(985)] = 12626, + [SMALL_STATE(986)] = 12726, + [SMALL_STATE(987)] = 12792, + [SMALL_STATE(988)] = 12908, + [SMALL_STATE(989)] = 13022, + [SMALL_STATE(990)] = 13088, + [SMALL_STATE(991)] = 13154, + [SMALL_STATE(992)] = 13272, + [SMALL_STATE(993)] = 13388, + [SMALL_STATE(994)] = 13454, + [SMALL_STATE(995)] = 13520, + [SMALL_STATE(996)] = 13638, + [SMALL_STATE(997)] = 13756, + [SMALL_STATE(998)] = 13826, + [SMALL_STATE(999)] = 13898, + [SMALL_STATE(1000)] = 13964, + [SMALL_STATE(1001)] = 14036, + [SMALL_STATE(1002)] = 14102, + [SMALL_STATE(1003)] = 14168, + [SMALL_STATE(1004)] = 14234, + [SMALL_STATE(1005)] = 14350, + [SMALL_STATE(1006)] = 14416, + [SMALL_STATE(1007)] = 14482, + [SMALL_STATE(1008)] = 14598, + [SMALL_STATE(1009)] = 14664, + [SMALL_STATE(1010)] = 14782, + [SMALL_STATE(1011)] = 14848, + [SMALL_STATE(1012)] = 14966, + [SMALL_STATE(1013)] = 15032, + [SMALL_STATE(1014)] = 15104, + [SMALL_STATE(1015)] = 15222, + [SMALL_STATE(1016)] = 15288, + [SMALL_STATE(1017)] = 15406, + [SMALL_STATE(1018)] = 15472, + [SMALL_STATE(1019)] = 15590, + [SMALL_STATE(1020)] = 15656, + [SMALL_STATE(1021)] = 15728, + [SMALL_STATE(1022)] = 15794, + [SMALL_STATE(1023)] = 15910, + [SMALL_STATE(1024)] = 15976, + [SMALL_STATE(1025)] = 16042, + [SMALL_STATE(1026)] = 16160, + [SMALL_STATE(1027)] = 16278, + [SMALL_STATE(1028)] = 16344, + [SMALL_STATE(1029)] = 16462, + [SMALL_STATE(1030)] = 16528, + [SMALL_STATE(1031)] = 16594, + [SMALL_STATE(1032)] = 16712, + [SMALL_STATE(1033)] = 16778, + [SMALL_STATE(1034)] = 16896, + [SMALL_STATE(1035)] = 16962, + [SMALL_STATE(1036)] = 17028, + [SMALL_STATE(1037)] = 17146, + [SMALL_STATE(1038)] = 17212, + [SMALL_STATE(1039)] = 17278, + [SMALL_STATE(1040)] = 17344, + [SMALL_STATE(1041)] = 17410, + [SMALL_STATE(1042)] = 17476, + [SMALL_STATE(1043)] = 17542, + [SMALL_STATE(1044)] = 17608, + [SMALL_STATE(1045)] = 17674, + [SMALL_STATE(1046)] = 17740, + [SMALL_STATE(1047)] = 17806, + [SMALL_STATE(1048)] = 17872, + [SMALL_STATE(1049)] = 17938, + [SMALL_STATE(1050)] = 18004, + [SMALL_STATE(1051)] = 18070, + [SMALL_STATE(1052)] = 18136, + [SMALL_STATE(1053)] = 18202, + [SMALL_STATE(1054)] = 18268, + [SMALL_STATE(1055)] = 18334, + [SMALL_STATE(1056)] = 18452, + [SMALL_STATE(1057)] = 18570, + [SMALL_STATE(1058)] = 18688, + [SMALL_STATE(1059)] = 18806, + [SMALL_STATE(1060)] = 18876, + [SMALL_STATE(1061)] = 18948, + [SMALL_STATE(1062)] = 19020, + [SMALL_STATE(1063)] = 19086, + [SMALL_STATE(1064)] = 19204, + [SMALL_STATE(1065)] = 19270, + [SMALL_STATE(1066)] = 19388, + [SMALL_STATE(1067)] = 19458, + [SMALL_STATE(1068)] = 19524, + [SMALL_STATE(1069)] = 19594, + [SMALL_STATE(1070)] = 19664, + [SMALL_STATE(1071)] = 19782, + [SMALL_STATE(1072)] = 19900, + [SMALL_STATE(1073)] = 19966, + [SMALL_STATE(1074)] = 20036, + [SMALL_STATE(1075)] = 20154, + [SMALL_STATE(1076)] = 20272, + [SMALL_STATE(1077)] = 20338, + [SMALL_STATE(1078)] = 20406, + [SMALL_STATE(1079)] = 20472, + [SMALL_STATE(1080)] = 20540, + [SMALL_STATE(1081)] = 20606, + [SMALL_STATE(1082)] = 20724, + [SMALL_STATE(1083)] = 20840, + [SMALL_STATE(1084)] = 20906, + [SMALL_STATE(1085)] = 21022, + [SMALL_STATE(1086)] = 21094, + [SMALL_STATE(1087)] = 21160, + [SMALL_STATE(1088)] = 21226, + [SMALL_STATE(1089)] = 21326, + [SMALL_STATE(1090)] = 21396, + [SMALL_STATE(1091)] = 21466, + [SMALL_STATE(1092)] = 21565, + [SMALL_STATE(1093)] = 21678, + [SMALL_STATE(1094)] = 21779, + [SMALL_STATE(1095)] = 21878, + [SMALL_STATE(1096)] = 21993, + [SMALL_STATE(1097)] = 22108, + [SMALL_STATE(1098)] = 22177, + [SMALL_STATE(1099)] = 22246, + [SMALL_STATE(1100)] = 22345, + [SMALL_STATE(1101)] = 22460, + [SMALL_STATE(1102)] = 22559, + [SMALL_STATE(1103)] = 22672, + [SMALL_STATE(1104)] = 22739, + [SMALL_STATE(1105)] = 22806, + [SMALL_STATE(1106)] = 22875, + [SMALL_STATE(1107)] = 22974, + [SMALL_STATE(1108)] = 23041, + [SMALL_STATE(1109)] = 23156, + [SMALL_STATE(1110)] = 23255, + [SMALL_STATE(1111)] = 23322, + [SMALL_STATE(1112)] = 23425, + [SMALL_STATE(1113)] = 23540, + [SMALL_STATE(1114)] = 23653, + [SMALL_STATE(1115)] = 23720, + [SMALL_STATE(1116)] = 23819, + [SMALL_STATE(1117)] = 23918, + [SMALL_STATE(1118)] = 23987, + [SMALL_STATE(1119)] = 24086, + [SMALL_STATE(1120)] = 24155, + [SMALL_STATE(1121)] = 24270, + [SMALL_STATE(1122)] = 24339, + [SMALL_STATE(1123)] = 24454, + [SMALL_STATE(1124)] = 24569, + [SMALL_STATE(1125)] = 24668, + [SMALL_STATE(1126)] = 24767, + [SMALL_STATE(1127)] = 24866, + [SMALL_STATE(1128)] = 24931, + [SMALL_STATE(1129)] = 24995, + [SMALL_STATE(1130)] = 25105, + [SMALL_STATE(1131)] = 25215, + [SMALL_STATE(1132)] = 25325, + [SMALL_STATE(1133)] = 25389, + [SMALL_STATE(1134)] = 25455, + [SMALL_STATE(1135)] = 25565, + [SMALL_STATE(1136)] = 25675, + [SMALL_STATE(1137)] = 25785, + [SMALL_STATE(1138)] = 25895, + [SMALL_STATE(1139)] = 26005, + [SMALL_STATE(1140)] = 26069, + [SMALL_STATE(1141)] = 26179, + [SMALL_STATE(1142)] = 26289, + [SMALL_STATE(1143)] = 26399, + [SMALL_STATE(1144)] = 26509, + [SMALL_STATE(1145)] = 26573, + [SMALL_STATE(1146)] = 26683, + [SMALL_STATE(1147)] = 26793, + [SMALL_STATE(1148)] = 26903, + [SMALL_STATE(1149)] = 26967, + [SMALL_STATE(1150)] = 27077, + [SMALL_STATE(1151)] = 27187, + [SMALL_STATE(1152)] = 27251, + [SMALL_STATE(1153)] = 27361, + [SMALL_STATE(1154)] = 27471, + [SMALL_STATE(1155)] = 27553, + [SMALL_STATE(1156)] = 27663, + [SMALL_STATE(1157)] = 27773, + [SMALL_STATE(1158)] = 27883, + [SMALL_STATE(1159)] = 27993, + [SMALL_STATE(1160)] = 28103, + [SMALL_STATE(1161)] = 28213, + [SMALL_STATE(1162)] = 28323, + [SMALL_STATE(1163)] = 28433, + [SMALL_STATE(1164)] = 28543, + [SMALL_STATE(1165)] = 28653, + [SMALL_STATE(1166)] = 28763, + [SMALL_STATE(1167)] = 28873, + [SMALL_STATE(1168)] = 28983, + [SMALL_STATE(1169)] = 29093, + [SMALL_STATE(1170)] = 29203, + [SMALL_STATE(1171)] = 29313, + [SMALL_STATE(1172)] = 29423, + [SMALL_STATE(1173)] = 29533, + [SMALL_STATE(1174)] = 29643, + [SMALL_STATE(1175)] = 29753, + [SMALL_STATE(1176)] = 29863, + [SMALL_STATE(1177)] = 29973, + [SMALL_STATE(1178)] = 30083, + [SMALL_STATE(1179)] = 30193, + [SMALL_STATE(1180)] = 30303, + [SMALL_STATE(1181)] = 30413, + [SMALL_STATE(1182)] = 30523, + [SMALL_STATE(1183)] = 30633, + [SMALL_STATE(1184)] = 30743, + [SMALL_STATE(1185)] = 30853, + [SMALL_STATE(1186)] = 30963, + [SMALL_STATE(1187)] = 31073, + [SMALL_STATE(1188)] = 31183, + [SMALL_STATE(1189)] = 31293, + [SMALL_STATE(1190)] = 31403, + [SMALL_STATE(1191)] = 31513, + [SMALL_STATE(1192)] = 31623, + [SMALL_STATE(1193)] = 31733, + [SMALL_STATE(1194)] = 31843, + [SMALL_STATE(1195)] = 31953, + [SMALL_STATE(1196)] = 32063, + [SMALL_STATE(1197)] = 32173, + [SMALL_STATE(1198)] = 32283, + [SMALL_STATE(1199)] = 32393, + [SMALL_STATE(1200)] = 32503, + [SMALL_STATE(1201)] = 32613, + [SMALL_STATE(1202)] = 32723, + [SMALL_STATE(1203)] = 32833, + [SMALL_STATE(1204)] = 32943, + [SMALL_STATE(1205)] = 33053, + [SMALL_STATE(1206)] = 33163, + [SMALL_STATE(1207)] = 33273, + [SMALL_STATE(1208)] = 33383, + [SMALL_STATE(1209)] = 33493, + [SMALL_STATE(1210)] = 33603, + [SMALL_STATE(1211)] = 33713, + [SMALL_STATE(1212)] = 33823, + [SMALL_STATE(1213)] = 33933, + [SMALL_STATE(1214)] = 34043, + [SMALL_STATE(1215)] = 34153, + [SMALL_STATE(1216)] = 34263, + [SMALL_STATE(1217)] = 34373, + [SMALL_STATE(1218)] = 34483, + [SMALL_STATE(1219)] = 34593, + [SMALL_STATE(1220)] = 34703, + [SMALL_STATE(1221)] = 34813, + [SMALL_STATE(1222)] = 34923, + [SMALL_STATE(1223)] = 34987, + [SMALL_STATE(1224)] = 35097, + [SMALL_STATE(1225)] = 35207, + [SMALL_STATE(1226)] = 35317, + [SMALL_STATE(1227)] = 35427, + [SMALL_STATE(1228)] = 35537, + [SMALL_STATE(1229)] = 35647, + [SMALL_STATE(1230)] = 35757, + [SMALL_STATE(1231)] = 35821, + [SMALL_STATE(1232)] = 35931, + [SMALL_STATE(1233)] = 35995, + [SMALL_STATE(1234)] = 36105, + [SMALL_STATE(1235)] = 36215, + [SMALL_STATE(1236)] = 36325, + [SMALL_STATE(1237)] = 36435, + [SMALL_STATE(1238)] = 36545, + [SMALL_STATE(1239)] = 36655, + [SMALL_STATE(1240)] = 36765, + [SMALL_STATE(1241)] = 36875, + [SMALL_STATE(1242)] = 36985, + [SMALL_STATE(1243)] = 37095, + [SMALL_STATE(1244)] = 37205, + [SMALL_STATE(1245)] = 37315, + [SMALL_STATE(1246)] = 37397, + [SMALL_STATE(1247)] = 37461, + [SMALL_STATE(1248)] = 37571, + [SMALL_STATE(1249)] = 37681, + [SMALL_STATE(1250)] = 37791, + [SMALL_STATE(1251)] = 37855, + [SMALL_STATE(1252)] = 37965, + [SMALL_STATE(1253)] = 38075, + [SMALL_STATE(1254)] = 38185, + [SMALL_STATE(1255)] = 38295, + [SMALL_STATE(1256)] = 38405, + [SMALL_STATE(1257)] = 38515, + [SMALL_STATE(1258)] = 38625, + [SMALL_STATE(1259)] = 38707, + [SMALL_STATE(1260)] = 38817, + [SMALL_STATE(1261)] = 38927, + [SMALL_STATE(1262)] = 39037, + [SMALL_STATE(1263)] = 39147, + [SMALL_STATE(1264)] = 39257, + [SMALL_STATE(1265)] = 39367, + [SMALL_STATE(1266)] = 39477, + [SMALL_STATE(1267)] = 39587, + [SMALL_STATE(1268)] = 39697, + [SMALL_STATE(1269)] = 39807, + [SMALL_STATE(1270)] = 39917, + [SMALL_STATE(1271)] = 40027, + [SMALL_STATE(1272)] = 40137, + [SMALL_STATE(1273)] = 40247, + [SMALL_STATE(1274)] = 40357, + [SMALL_STATE(1275)] = 40467, + [SMALL_STATE(1276)] = 40531, + [SMALL_STATE(1277)] = 40641, + [SMALL_STATE(1278)] = 40751, + [SMALL_STATE(1279)] = 40815, + [SMALL_STATE(1280)] = 40925, + [SMALL_STATE(1281)] = 40989, + [SMALL_STATE(1282)] = 41099, + [SMALL_STATE(1283)] = 41209, + [SMALL_STATE(1284)] = 41273, + [SMALL_STATE(1285)] = 41383, + [SMALL_STATE(1286)] = 41447, + [SMALL_STATE(1287)] = 41511, + [SMALL_STATE(1288)] = 41621, + [SMALL_STATE(1289)] = 41731, + [SMALL_STATE(1290)] = 41841, + [SMALL_STATE(1291)] = 41951, + [SMALL_STATE(1292)] = 42061, + [SMALL_STATE(1293)] = 42171, + [SMALL_STATE(1294)] = 42281, + [SMALL_STATE(1295)] = 42345, + [SMALL_STATE(1296)] = 42455, + [SMALL_STATE(1297)] = 42565, + [SMALL_STATE(1298)] = 42675, + [SMALL_STATE(1299)] = 42785, + [SMALL_STATE(1300)] = 42849, + [SMALL_STATE(1301)] = 42959, + [SMALL_STATE(1302)] = 43069, + [SMALL_STATE(1303)] = 43179, + [SMALL_STATE(1304)] = 43289, + [SMALL_STATE(1305)] = 43399, + [SMALL_STATE(1306)] = 43509, + [SMALL_STATE(1307)] = 43619, + [SMALL_STATE(1308)] = 43729, + [SMALL_STATE(1309)] = 43839, + [SMALL_STATE(1310)] = 43903, + [SMALL_STATE(1311)] = 44013, + [SMALL_STATE(1312)] = 44123, + [SMALL_STATE(1313)] = 44233, + [SMALL_STATE(1314)] = 44343, + [SMALL_STATE(1315)] = 44453, + [SMALL_STATE(1316)] = 44563, + [SMALL_STATE(1317)] = 44673, + [SMALL_STATE(1318)] = 44783, + [SMALL_STATE(1319)] = 44893, + [SMALL_STATE(1320)] = 45003, + [SMALL_STATE(1321)] = 45113, + [SMALL_STATE(1322)] = 45177, + [SMALL_STATE(1323)] = 45259, + [SMALL_STATE(1324)] = 45369, + [SMALL_STATE(1325)] = 45479, + [SMALL_STATE(1326)] = 45589, + [SMALL_STATE(1327)] = 45699, + [SMALL_STATE(1328)] = 45809, + [SMALL_STATE(1329)] = 45919, + [SMALL_STATE(1330)] = 46029, + [SMALL_STATE(1331)] = 46139, + [SMALL_STATE(1332)] = 46221, + [SMALL_STATE(1333)] = 46285, + [SMALL_STATE(1334)] = 46395, + [SMALL_STATE(1335)] = 46505, + [SMALL_STATE(1336)] = 46615, + [SMALL_STATE(1337)] = 46725, + [SMALL_STATE(1338)] = 46835, + [SMALL_STATE(1339)] = 46945, + [SMALL_STATE(1340)] = 47009, + [SMALL_STATE(1341)] = 47119, + [SMALL_STATE(1342)] = 47229, + [SMALL_STATE(1343)] = 47339, + [SMALL_STATE(1344)] = 47449, + [SMALL_STATE(1345)] = 47559, + [SMALL_STATE(1346)] = 47669, + [SMALL_STATE(1347)] = 47779, + [SMALL_STATE(1348)] = 47889, + [SMALL_STATE(1349)] = 47999, + [SMALL_STATE(1350)] = 48063, + [SMALL_STATE(1351)] = 48173, + [SMALL_STATE(1352)] = 48283, + [SMALL_STATE(1353)] = 48393, + [SMALL_STATE(1354)] = 48503, + [SMALL_STATE(1355)] = 48613, + [SMALL_STATE(1356)] = 48723, + [SMALL_STATE(1357)] = 48833, + [SMALL_STATE(1358)] = 48943, + [SMALL_STATE(1359)] = 49053, + [SMALL_STATE(1360)] = 49163, + [SMALL_STATE(1361)] = 49273, + [SMALL_STATE(1362)] = 49383, + [SMALL_STATE(1363)] = 49493, + [SMALL_STATE(1364)] = 49603, + [SMALL_STATE(1365)] = 49713, + [SMALL_STATE(1366)] = 49823, + [SMALL_STATE(1367)] = 49887, + [SMALL_STATE(1368)] = 49997, + [SMALL_STATE(1369)] = 50061, + [SMALL_STATE(1370)] = 50171, + [SMALL_STATE(1371)] = 50281, + [SMALL_STATE(1372)] = 50345, + [SMALL_STATE(1373)] = 50455, + [SMALL_STATE(1374)] = 50519, + [SMALL_STATE(1375)] = 50629, + [SMALL_STATE(1376)] = 50739, + [SMALL_STATE(1377)] = 50849, + [SMALL_STATE(1378)] = 50959, + [SMALL_STATE(1379)] = 51069, + [SMALL_STATE(1380)] = 51179, + [SMALL_STATE(1381)] = 51289, + [SMALL_STATE(1382)] = 51399, + [SMALL_STATE(1383)] = 51463, + [SMALL_STATE(1384)] = 51527, + [SMALL_STATE(1385)] = 51637, + [SMALL_STATE(1386)] = 51747, + [SMALL_STATE(1387)] = 51857, + [SMALL_STATE(1388)] = 51967, + [SMALL_STATE(1389)] = 52077, + [SMALL_STATE(1390)] = 52187, + [SMALL_STATE(1391)] = 52251, + [SMALL_STATE(1392)] = 52361, + [SMALL_STATE(1393)] = 52471, + [SMALL_STATE(1394)] = 52581, + [SMALL_STATE(1395)] = 52691, + [SMALL_STATE(1396)] = 52801, + [SMALL_STATE(1397)] = 52911, + [SMALL_STATE(1398)] = 53021, + [SMALL_STATE(1399)] = 53131, + [SMALL_STATE(1400)] = 53241, + [SMALL_STATE(1401)] = 53351, + [SMALL_STATE(1402)] = 53461, + [SMALL_STATE(1403)] = 53571, + [SMALL_STATE(1404)] = 53681, + [SMALL_STATE(1405)] = 53791, + [SMALL_STATE(1406)] = 53901, + [SMALL_STATE(1407)] = 54011, + [SMALL_STATE(1408)] = 54121, + [SMALL_STATE(1409)] = 54231, + [SMALL_STATE(1410)] = 54341, + [SMALL_STATE(1411)] = 54451, + [SMALL_STATE(1412)] = 54561, + [SMALL_STATE(1413)] = 54671, + [SMALL_STATE(1414)] = 54753, + [SMALL_STATE(1415)] = 54863, + [SMALL_STATE(1416)] = 54973, + [SMALL_STATE(1417)] = 55083, + [SMALL_STATE(1418)] = 55147, + [SMALL_STATE(1419)] = 55257, + [SMALL_STATE(1420)] = 55321, + [SMALL_STATE(1421)] = 55431, + [SMALL_STATE(1422)] = 55541, + [SMALL_STATE(1423)] = 55651, + [SMALL_STATE(1424)] = 55715, + [SMALL_STATE(1425)] = 55825, + [SMALL_STATE(1426)] = 55935, + [SMALL_STATE(1427)] = 56045, + [SMALL_STATE(1428)] = 56155, + [SMALL_STATE(1429)] = 56265, + [SMALL_STATE(1430)] = 56329, + [SMALL_STATE(1431)] = 56439, + [SMALL_STATE(1432)] = 56549, + [SMALL_STATE(1433)] = 56659, + [SMALL_STATE(1434)] = 56769, + [SMALL_STATE(1435)] = 56833, + [SMALL_STATE(1436)] = 56897, + [SMALL_STATE(1437)] = 56961, + [SMALL_STATE(1438)] = 57025, + [SMALL_STATE(1439)] = 57135, + [SMALL_STATE(1440)] = 57245, + [SMALL_STATE(1441)] = 57355, + [SMALL_STATE(1442)] = 57465, + [SMALL_STATE(1443)] = 57575, + [SMALL_STATE(1444)] = 57639, + [SMALL_STATE(1445)] = 57703, + [SMALL_STATE(1446)] = 57767, + [SMALL_STATE(1447)] = 57877, + [SMALL_STATE(1448)] = 57987, + [SMALL_STATE(1449)] = 58097, + [SMALL_STATE(1450)] = 58207, + [SMALL_STATE(1451)] = 58271, + [SMALL_STATE(1452)] = 58381, + [SMALL_STATE(1453)] = 58491, + [SMALL_STATE(1454)] = 58601, + [SMALL_STATE(1455)] = 58665, + [SMALL_STATE(1456)] = 58775, + [SMALL_STATE(1457)] = 58885, + [SMALL_STATE(1458)] = 58949, + [SMALL_STATE(1459)] = 59059, + [SMALL_STATE(1460)] = 59141, + [SMALL_STATE(1461)] = 59205, + [SMALL_STATE(1462)] = 59269, + [SMALL_STATE(1463)] = 59333, + [SMALL_STATE(1464)] = 59443, + [SMALL_STATE(1465)] = 59553, + [SMALL_STATE(1466)] = 59617, + [SMALL_STATE(1467)] = 59681, + [SMALL_STATE(1468)] = 59745, + [SMALL_STATE(1469)] = 59855, + [SMALL_STATE(1470)] = 59965, + [SMALL_STATE(1471)] = 60075, + [SMALL_STATE(1472)] = 60139, + [SMALL_STATE(1473)] = 60249, + [SMALL_STATE(1474)] = 60359, + [SMALL_STATE(1475)] = 60469, + [SMALL_STATE(1476)] = 60579, + [SMALL_STATE(1477)] = 60643, + [SMALL_STATE(1478)] = 60753, + [SMALL_STATE(1479)] = 60863, + [SMALL_STATE(1480)] = 60973, + [SMALL_STATE(1481)] = 61083, + [SMALL_STATE(1482)] = 61165, + [SMALL_STATE(1483)] = 61275, + [SMALL_STATE(1484)] = 61385, + [SMALL_STATE(1485)] = 61495, + [SMALL_STATE(1486)] = 61605, + [SMALL_STATE(1487)] = 61715, + [SMALL_STATE(1488)] = 61825, + [SMALL_STATE(1489)] = 61935, + [SMALL_STATE(1490)] = 62045, + [SMALL_STATE(1491)] = 62109, + [SMALL_STATE(1492)] = 62191, + [SMALL_STATE(1493)] = 62301, + [SMALL_STATE(1494)] = 62411, + [SMALL_STATE(1495)] = 62521, + [SMALL_STATE(1496)] = 62631, + [SMALL_STATE(1497)] = 62741, + [SMALL_STATE(1498)] = 62805, + [SMALL_STATE(1499)] = 62915, + [SMALL_STATE(1500)] = 63025, + [SMALL_STATE(1501)] = 63089, + [SMALL_STATE(1502)] = 63199, + [SMALL_STATE(1503)] = 63309, + [SMALL_STATE(1504)] = 63419, + [SMALL_STATE(1505)] = 63529, + [SMALL_STATE(1506)] = 63639, + [SMALL_STATE(1507)] = 63749, + [SMALL_STATE(1508)] = 63859, + [SMALL_STATE(1509)] = 63969, + [SMALL_STATE(1510)] = 64079, + [SMALL_STATE(1511)] = 64178, + [SMALL_STATE(1512)] = 64279, + [SMALL_STATE(1513)] = 64344, + [SMALL_STATE(1514)] = 64409, + [SMALL_STATE(1515)] = 64471, + [SMALL_STATE(1516)] = 64568, + [SMALL_STATE(1517)] = 64665, + [SMALL_STATE(1518)] = 64726, + [SMALL_STATE(1519)] = 64822, + [SMALL_STATE(1520)] = 64918, + [SMALL_STATE(1521)] = 65014, + [SMALL_STATE(1522)] = 65110, + [SMALL_STATE(1523)] = 65206, + [SMALL_STATE(1524)] = 65302, + [SMALL_STATE(1525)] = 65398, + [SMALL_STATE(1526)] = 65494, + [SMALL_STATE(1527)] = 65590, + [SMALL_STATE(1528)] = 65686, + [SMALL_STATE(1529)] = 65782, + [SMALL_STATE(1530)] = 65878, + [SMALL_STATE(1531)] = 65974, + [SMALL_STATE(1532)] = 66070, + [SMALL_STATE(1533)] = 66166, + [SMALL_STATE(1534)] = 66262, + [SMALL_STATE(1535)] = 66358, + [SMALL_STATE(1536)] = 66454, + [SMALL_STATE(1537)] = 66550, + [SMALL_STATE(1538)] = 66646, + [SMALL_STATE(1539)] = 66742, + [SMALL_STATE(1540)] = 66838, + [SMALL_STATE(1541)] = 66934, + [SMALL_STATE(1542)] = 67030, + [SMALL_STATE(1543)] = 67126, + [SMALL_STATE(1544)] = 67222, + [SMALL_STATE(1545)] = 67318, + [SMALL_STATE(1546)] = 67414, + [SMALL_STATE(1547)] = 67510, + [SMALL_STATE(1548)] = 67606, + [SMALL_STATE(1549)] = 67702, + [SMALL_STATE(1550)] = 67798, + [SMALL_STATE(1551)] = 67894, + [SMALL_STATE(1552)] = 67990, + [SMALL_STATE(1553)] = 68086, + [SMALL_STATE(1554)] = 68182, + [SMALL_STATE(1555)] = 68278, + [SMALL_STATE(1556)] = 68374, + [SMALL_STATE(1557)] = 68470, + [SMALL_STATE(1558)] = 68566, + [SMALL_STATE(1559)] = 68662, + [SMALL_STATE(1560)] = 68758, + [SMALL_STATE(1561)] = 68854, + [SMALL_STATE(1562)] = 68950, + [SMALL_STATE(1563)] = 69046, + [SMALL_STATE(1564)] = 69142, + [SMALL_STATE(1565)] = 69238, + [SMALL_STATE(1566)] = 69334, + [SMALL_STATE(1567)] = 69430, + [SMALL_STATE(1568)] = 69526, + [SMALL_STATE(1569)] = 69622, + [SMALL_STATE(1570)] = 69718, + [SMALL_STATE(1571)] = 69811, + [SMALL_STATE(1572)] = 69904, + [SMALL_STATE(1573)] = 69997, + [SMALL_STATE(1574)] = 70090, + [SMALL_STATE(1575)] = 70183, + [SMALL_STATE(1576)] = 70276, + [SMALL_STATE(1577)] = 70369, + [SMALL_STATE(1578)] = 70462, + [SMALL_STATE(1579)] = 70555, + [SMALL_STATE(1580)] = 70648, + [SMALL_STATE(1581)] = 70741, + [SMALL_STATE(1582)] = 70834, + [SMALL_STATE(1583)] = 70927, + [SMALL_STATE(1584)] = 71020, + [SMALL_STATE(1585)] = 71113, + [SMALL_STATE(1586)] = 71206, + [SMALL_STATE(1587)] = 71299, + [SMALL_STATE(1588)] = 71392, + [SMALL_STATE(1589)] = 71485, + [SMALL_STATE(1590)] = 71578, + [SMALL_STATE(1591)] = 71671, + [SMALL_STATE(1592)] = 71764, + [SMALL_STATE(1593)] = 71857, + [SMALL_STATE(1594)] = 71950, + [SMALL_STATE(1595)] = 72043, + [SMALL_STATE(1596)] = 72136, + [SMALL_STATE(1597)] = 72229, + [SMALL_STATE(1598)] = 72322, + [SMALL_STATE(1599)] = 72381, + [SMALL_STATE(1600)] = 72440, + [SMALL_STATE(1601)] = 72533, + [SMALL_STATE(1602)] = 72626, + [SMALL_STATE(1603)] = 72719, + [SMALL_STATE(1604)] = 72812, + [SMALL_STATE(1605)] = 72871, + [SMALL_STATE(1606)] = 72930, + [SMALL_STATE(1607)] = 73023, + [SMALL_STATE(1608)] = 73082, + [SMALL_STATE(1609)] = 73141, + [SMALL_STATE(1610)] = 73200, + [SMALL_STATE(1611)] = 73293, + [SMALL_STATE(1612)] = 73386, + [SMALL_STATE(1613)] = 73445, + [SMALL_STATE(1614)] = 73538, + [SMALL_STATE(1615)] = 73631, + [SMALL_STATE(1616)] = 73724, + [SMALL_STATE(1617)] = 73817, + [SMALL_STATE(1618)] = 73910, + [SMALL_STATE(1619)] = 74003, + [SMALL_STATE(1620)] = 74096, + [SMALL_STATE(1621)] = 74189, + [SMALL_STATE(1622)] = 74282, + [SMALL_STATE(1623)] = 74375, + [SMALL_STATE(1624)] = 74468, + [SMALL_STATE(1625)] = 74527, + [SMALL_STATE(1626)] = 74620, + [SMALL_STATE(1627)] = 74713, + [SMALL_STATE(1628)] = 74772, + [SMALL_STATE(1629)] = 74831, + [SMALL_STATE(1630)] = 74924, + [SMALL_STATE(1631)] = 75017, + [SMALL_STATE(1632)] = 75110, + [SMALL_STATE(1633)] = 75203, + [SMALL_STATE(1634)] = 75296, + [SMALL_STATE(1635)] = 75389, + [SMALL_STATE(1636)] = 75482, + [SMALL_STATE(1637)] = 75575, + [SMALL_STATE(1638)] = 75668, + [SMALL_STATE(1639)] = 75761, + [SMALL_STATE(1640)] = 75854, + [SMALL_STATE(1641)] = 75947, + [SMALL_STATE(1642)] = 76040, + [SMALL_STATE(1643)] = 76133, + [SMALL_STATE(1644)] = 76192, + [SMALL_STATE(1645)] = 76251, + [SMALL_STATE(1646)] = 76344, + [SMALL_STATE(1647)] = 76437, + [SMALL_STATE(1648)] = 76530, + [SMALL_STATE(1649)] = 76623, + [SMALL_STATE(1650)] = 76716, + [SMALL_STATE(1651)] = 76809, + [SMALL_STATE(1652)] = 76902, + [SMALL_STATE(1653)] = 76995, + [SMALL_STATE(1654)] = 77088, + [SMALL_STATE(1655)] = 77181, + [SMALL_STATE(1656)] = 77274, + [SMALL_STATE(1657)] = 77367, + [SMALL_STATE(1658)] = 77460, + [SMALL_STATE(1659)] = 77553, + [SMALL_STATE(1660)] = 77646, + [SMALL_STATE(1661)] = 77739, + [SMALL_STATE(1662)] = 77832, + [SMALL_STATE(1663)] = 77925, + [SMALL_STATE(1664)] = 78018, + [SMALL_STATE(1665)] = 78111, + [SMALL_STATE(1666)] = 78204, + [SMALL_STATE(1667)] = 78297, + [SMALL_STATE(1668)] = 78390, + [SMALL_STATE(1669)] = 78483, + [SMALL_STATE(1670)] = 78576, + [SMALL_STATE(1671)] = 78669, + [SMALL_STATE(1672)] = 78728, + [SMALL_STATE(1673)] = 78821, + [SMALL_STATE(1674)] = 78914, + [SMALL_STATE(1675)] = 79007, + [SMALL_STATE(1676)] = 79100, + [SMALL_STATE(1677)] = 79193, + [SMALL_STATE(1678)] = 79286, + [SMALL_STATE(1679)] = 79379, + [SMALL_STATE(1680)] = 79472, + [SMALL_STATE(1681)] = 79565, + [SMALL_STATE(1682)] = 79658, + [SMALL_STATE(1683)] = 79751, + [SMALL_STATE(1684)] = 79844, + [SMALL_STATE(1685)] = 79937, + [SMALL_STATE(1686)] = 80030, + [SMALL_STATE(1687)] = 80123, + [SMALL_STATE(1688)] = 80216, + [SMALL_STATE(1689)] = 80309, + [SMALL_STATE(1690)] = 80402, + [SMALL_STATE(1691)] = 80495, + [SMALL_STATE(1692)] = 80588, + [SMALL_STATE(1693)] = 80681, + [SMALL_STATE(1694)] = 80774, + [SMALL_STATE(1695)] = 80833, + [SMALL_STATE(1696)] = 80926, + [SMALL_STATE(1697)] = 81019, + [SMALL_STATE(1698)] = 81112, + [SMALL_STATE(1699)] = 81205, + [SMALL_STATE(1700)] = 81298, + [SMALL_STATE(1701)] = 81391, + [SMALL_STATE(1702)] = 81484, + [SMALL_STATE(1703)] = 81577, + [SMALL_STATE(1704)] = 81670, + [SMALL_STATE(1705)] = 81763, + [SMALL_STATE(1706)] = 81822, + [SMALL_STATE(1707)] = 81881, + [SMALL_STATE(1708)] = 81974, + [SMALL_STATE(1709)] = 82067, + [SMALL_STATE(1710)] = 82160, + [SMALL_STATE(1711)] = 82253, + [SMALL_STATE(1712)] = 82346, + [SMALL_STATE(1713)] = 82439, + [SMALL_STATE(1714)] = 82532, + [SMALL_STATE(1715)] = 82625, + [SMALL_STATE(1716)] = 82718, + [SMALL_STATE(1717)] = 82811, + [SMALL_STATE(1718)] = 82904, + [SMALL_STATE(1719)] = 82997, + [SMALL_STATE(1720)] = 83090, + [SMALL_STATE(1721)] = 83183, + [SMALL_STATE(1722)] = 83276, + [SMALL_STATE(1723)] = 83369, + [SMALL_STATE(1724)] = 83462, + [SMALL_STATE(1725)] = 83555, + [SMALL_STATE(1726)] = 83648, + [SMALL_STATE(1727)] = 83741, + [SMALL_STATE(1728)] = 83834, + [SMALL_STATE(1729)] = 83927, + [SMALL_STATE(1730)] = 84020, + [SMALL_STATE(1731)] = 84113, + [SMALL_STATE(1732)] = 84206, + [SMALL_STATE(1733)] = 84299, + [SMALL_STATE(1734)] = 84392, + [SMALL_STATE(1735)] = 84451, + [SMALL_STATE(1736)] = 84544, + [SMALL_STATE(1737)] = 84637, + [SMALL_STATE(1738)] = 84730, + [SMALL_STATE(1739)] = 84823, + [SMALL_STATE(1740)] = 84916, + [SMALL_STATE(1741)] = 85009, + [SMALL_STATE(1742)] = 85102, + [SMALL_STATE(1743)] = 85195, + [SMALL_STATE(1744)] = 85288, + [SMALL_STATE(1745)] = 85388, + [SMALL_STATE(1746)] = 85488, + [SMALL_STATE(1747)] = 85588, + [SMALL_STATE(1748)] = 85688, + [SMALL_STATE(1749)] = 85788, + [SMALL_STATE(1750)] = 85888, + [SMALL_STATE(1751)] = 85988, + [SMALL_STATE(1752)] = 86088, + [SMALL_STATE(1753)] = 86188, + [SMALL_STATE(1754)] = 86288, + [SMALL_STATE(1755)] = 86388, + [SMALL_STATE(1756)] = 86488, + [SMALL_STATE(1757)] = 86588, + [SMALL_STATE(1758)] = 86688, + [SMALL_STATE(1759)] = 86788, + [SMALL_STATE(1760)] = 86888, + [SMALL_STATE(1761)] = 86988, + [SMALL_STATE(1762)] = 87088, + [SMALL_STATE(1763)] = 87188, + [SMALL_STATE(1764)] = 87288, + [SMALL_STATE(1765)] = 87383, + [SMALL_STATE(1766)] = 87478, + [SMALL_STATE(1767)] = 87573, + [SMALL_STATE(1768)] = 87668, + [SMALL_STATE(1769)] = 87763, + [SMALL_STATE(1770)] = 87858, + [SMALL_STATE(1771)] = 87953, + [SMALL_STATE(1772)] = 88048, + [SMALL_STATE(1773)] = 88136, + [SMALL_STATE(1774)] = 88223, + [SMALL_STATE(1775)] = 88310, + [SMALL_STATE(1776)] = 88397, + [SMALL_STATE(1777)] = 88484, + [SMALL_STATE(1778)] = 88571, + [SMALL_STATE(1779)] = 88658, + [SMALL_STATE(1780)] = 88745, + [SMALL_STATE(1781)] = 88832, + [SMALL_STATE(1782)] = 88919, + [SMALL_STATE(1783)] = 89006, + [SMALL_STATE(1784)] = 89093, + [SMALL_STATE(1785)] = 89180, + [SMALL_STATE(1786)] = 89267, + [SMALL_STATE(1787)] = 89354, + [SMALL_STATE(1788)] = 89441, + [SMALL_STATE(1789)] = 89528, + [SMALL_STATE(1790)] = 89615, + [SMALL_STATE(1791)] = 89702, + [SMALL_STATE(1792)] = 89789, + [SMALL_STATE(1793)] = 89876, + [SMALL_STATE(1794)] = 89963, + [SMALL_STATE(1795)] = 90050, + [SMALL_STATE(1796)] = 90137, + [SMALL_STATE(1797)] = 90224, + [SMALL_STATE(1798)] = 90311, + [SMALL_STATE(1799)] = 90398, + [SMALL_STATE(1800)] = 90485, + [SMALL_STATE(1801)] = 90572, + [SMALL_STATE(1802)] = 90659, + [SMALL_STATE(1803)] = 90746, + [SMALL_STATE(1804)] = 90833, + [SMALL_STATE(1805)] = 90920, + [SMALL_STATE(1806)] = 91007, + [SMALL_STATE(1807)] = 91094, + [SMALL_STATE(1808)] = 91181, + [SMALL_STATE(1809)] = 91268, + [SMALL_STATE(1810)] = 91355, + [SMALL_STATE(1811)] = 91442, + [SMALL_STATE(1812)] = 91529, + [SMALL_STATE(1813)] = 91616, + [SMALL_STATE(1814)] = 91696, + [SMALL_STATE(1815)] = 91776, + [SMALL_STATE(1816)] = 91856, + [SMALL_STATE(1817)] = 91936, + [SMALL_STATE(1818)] = 92016, + [SMALL_STATE(1819)] = 92091, + [SMALL_STATE(1820)] = 92138, + [SMALL_STATE(1821)] = 92187, + [SMALL_STATE(1822)] = 92236, + [SMALL_STATE(1823)] = 92285, + [SMALL_STATE(1824)] = 92334, + [SMALL_STATE(1825)] = 92383, + [SMALL_STATE(1826)] = 92432, + [SMALL_STATE(1827)] = 92481, + [SMALL_STATE(1828)] = 92530, + [SMALL_STATE(1829)] = 92579, + [SMALL_STATE(1830)] = 92628, + [SMALL_STATE(1831)] = 92677, + [SMALL_STATE(1832)] = 92726, + [SMALL_STATE(1833)] = 92801, + [SMALL_STATE(1834)] = 92850, + [SMALL_STATE(1835)] = 92899, + [SMALL_STATE(1836)] = 92948, + [SMALL_STATE(1837)] = 92997, + [SMALL_STATE(1838)] = 93046, + [SMALL_STATE(1839)] = 93095, + [SMALL_STATE(1840)] = 93144, + [SMALL_STATE(1841)] = 93193, + [SMALL_STATE(1842)] = 93242, + [SMALL_STATE(1843)] = 93291, + [SMALL_STATE(1844)] = 93340, + [SMALL_STATE(1845)] = 93389, + [SMALL_STATE(1846)] = 93438, + [SMALL_STATE(1847)] = 93487, + [SMALL_STATE(1848)] = 93536, + [SMALL_STATE(1849)] = 93585, + [SMALL_STATE(1850)] = 93634, + [SMALL_STATE(1851)] = 93683, + [SMALL_STATE(1852)] = 93758, + [SMALL_STATE(1853)] = 93807, + [SMALL_STATE(1854)] = 93856, + [SMALL_STATE(1855)] = 93905, + [SMALL_STATE(1856)] = 93954, + [SMALL_STATE(1857)] = 94003, + [SMALL_STATE(1858)] = 94052, + [SMALL_STATE(1859)] = 94101, + [SMALL_STATE(1860)] = 94150, + [SMALL_STATE(1861)] = 94199, + [SMALL_STATE(1862)] = 94248, + [SMALL_STATE(1863)] = 94297, + [SMALL_STATE(1864)] = 94346, + [SMALL_STATE(1865)] = 94421, + [SMALL_STATE(1866)] = 94470, + [SMALL_STATE(1867)] = 94519, + [SMALL_STATE(1868)] = 94568, + [SMALL_STATE(1869)] = 94617, + [SMALL_STATE(1870)] = 94666, + [SMALL_STATE(1871)] = 94715, + [SMALL_STATE(1872)] = 94764, + [SMALL_STATE(1873)] = 94813, + [SMALL_STATE(1874)] = 94862, + [SMALL_STATE(1875)] = 94911, + [SMALL_STATE(1876)] = 94957, + [SMALL_STATE(1877)] = 95027, + [SMALL_STATE(1878)] = 95099, + [SMALL_STATE(1879)] = 95171, + [SMALL_STATE(1880)] = 95243, + [SMALL_STATE(1881)] = 95315, + [SMALL_STATE(1882)] = 95387, + [SMALL_STATE(1883)] = 95436, + [SMALL_STATE(1884)] = 95505, + [SMALL_STATE(1885)] = 95572, + [SMALL_STATE(1886)] = 95641, + [SMALL_STATE(1887)] = 95707, + [SMALL_STATE(1888)] = 95773, + [SMALL_STATE(1889)] = 95816, + [SMALL_STATE(1890)] = 95862, + [SMALL_STATE(1891)] = 95908, + [SMALL_STATE(1892)] = 95948, + [SMALL_STATE(1893)] = 95988, + [SMALL_STATE(1894)] = 96028, + [SMALL_STATE(1895)] = 96068, + [SMALL_STATE(1896)] = 96108, + [SMALL_STATE(1897)] = 96148, + [SMALL_STATE(1898)] = 96188, + [SMALL_STATE(1899)] = 96228, + [SMALL_STATE(1900)] = 96271, + [SMALL_STATE(1901)] = 96317, + [SMALL_STATE(1902)] = 96352, + [SMALL_STATE(1903)] = 96389, + [SMALL_STATE(1904)] = 96424, + [SMALL_STATE(1905)] = 96459, + [SMALL_STATE(1906)] = 96494, + [SMALL_STATE(1907)] = 96529, + [SMALL_STATE(1908)] = 96564, + [SMALL_STATE(1909)] = 96599, + [SMALL_STATE(1910)] = 96634, + [SMALL_STATE(1911)] = 96669, + [SMALL_STATE(1912)] = 96706, + [SMALL_STATE(1913)] = 96741, + [SMALL_STATE(1914)] = 96778, + [SMALL_STATE(1915)] = 96813, + [SMALL_STATE(1916)] = 96848, + [SMALL_STATE(1917)] = 96883, + [SMALL_STATE(1918)] = 96941, + [SMALL_STATE(1919)] = 96999, + [SMALL_STATE(1920)] = 97057, + [SMALL_STATE(1921)] = 97115, + [SMALL_STATE(1922)] = 97173, + [SMALL_STATE(1923)] = 97231, + [SMALL_STATE(1924)] = 97289, + [SMALL_STATE(1925)] = 97347, + [SMALL_STATE(1926)] = 97405, + [SMALL_STATE(1927)] = 97441, + [SMALL_STATE(1928)] = 97477, + [SMALL_STATE(1929)] = 97513, + [SMALL_STATE(1930)] = 97549, + [SMALL_STATE(1931)] = 97585, + [SMALL_STATE(1932)] = 97621, + [SMALL_STATE(1933)] = 97657, + [SMALL_STATE(1934)] = 97693, + [SMALL_STATE(1935)] = 97729, + [SMALL_STATE(1936)] = 97765, + [SMALL_STATE(1937)] = 97801, + [SMALL_STATE(1938)] = 97837, + [SMALL_STATE(1939)] = 97870, + [SMALL_STATE(1940)] = 97903, + [SMALL_STATE(1941)] = 97951, + [SMALL_STATE(1942)] = 97999, + [SMALL_STATE(1943)] = 98047, + [SMALL_STATE(1944)] = 98097, + [SMALL_STATE(1945)] = 98147, + [SMALL_STATE(1946)] = 98195, + [SMALL_STATE(1947)] = 98243, + [SMALL_STATE(1948)] = 98291, + [SMALL_STATE(1949)] = 98341, + [SMALL_STATE(1950)] = 98389, + [SMALL_STATE(1951)] = 98437, + [SMALL_STATE(1952)] = 98487, + [SMALL_STATE(1953)] = 98535, + [SMALL_STATE(1954)] = 98583, + [SMALL_STATE(1955)] = 98631, + [SMALL_STATE(1956)] = 98681, + [SMALL_STATE(1957)] = 98729, + [SMALL_STATE(1958)] = 98777, + [SMALL_STATE(1959)] = 98827, + [SMALL_STATE(1960)] = 98877, + [SMALL_STATE(1961)] = 98925, + [SMALL_STATE(1962)] = 98973, + [SMALL_STATE(1963)] = 99021, + [SMALL_STATE(1964)] = 99071, + [SMALL_STATE(1965)] = 99121, + [SMALL_STATE(1966)] = 99169, + [SMALL_STATE(1967)] = 99217, + [SMALL_STATE(1968)] = 99265, + [SMALL_STATE(1969)] = 99315, + [SMALL_STATE(1970)] = 99363, + [SMALL_STATE(1971)] = 99411, + [SMALL_STATE(1972)] = 99459, + [SMALL_STATE(1973)] = 99507, + [SMALL_STATE(1974)] = 99555, + [SMALL_STATE(1975)] = 99603, + [SMALL_STATE(1976)] = 99651, + [SMALL_STATE(1977)] = 99701, + [SMALL_STATE(1978)] = 99749, + [SMALL_STATE(1979)] = 99797, + [SMALL_STATE(1980)] = 99845, + [SMALL_STATE(1981)] = 99895, + [SMALL_STATE(1982)] = 99943, + [SMALL_STATE(1983)] = 99991, + [SMALL_STATE(1984)] = 100039, + [SMALL_STATE(1985)] = 100087, + [SMALL_STATE(1986)] = 100135, + [SMALL_STATE(1987)] = 100183, + [SMALL_STATE(1988)] = 100231, + [SMALL_STATE(1989)] = 100279, + [SMALL_STATE(1990)] = 100327, + [SMALL_STATE(1991)] = 100375, + [SMALL_STATE(1992)] = 100423, + [SMALL_STATE(1993)] = 100473, + [SMALL_STATE(1994)] = 100523, + [SMALL_STATE(1995)] = 100571, + [SMALL_STATE(1996)] = 100619, + [SMALL_STATE(1997)] = 100667, + [SMALL_STATE(1998)] = 100715, + [SMALL_STATE(1999)] = 100763, + [SMALL_STATE(2000)] = 100811, + [SMALL_STATE(2001)] = 100859, + [SMALL_STATE(2002)] = 100907, + [SMALL_STATE(2003)] = 100955, + [SMALL_STATE(2004)] = 101003, + [SMALL_STATE(2005)] = 101051, + [SMALL_STATE(2006)] = 101101, + [SMALL_STATE(2007)] = 101137, + [SMALL_STATE(2008)] = 101173, + [SMALL_STATE(2009)] = 101208, + [SMALL_STATE(2010)] = 101240, + [SMALL_STATE(2011)] = 101272, + [SMALL_STATE(2012)] = 101304, + [SMALL_STATE(2013)] = 101338, + [SMALL_STATE(2014)] = 101372, + [SMALL_STATE(2015)] = 101404, + [SMALL_STATE(2016)] = 101436, + [SMALL_STATE(2017)] = 101468, + [SMALL_STATE(2018)] = 101506, + [SMALL_STATE(2019)] = 101544, + [SMALL_STATE(2020)] = 101582, + [SMALL_STATE(2021)] = 101614, + [SMALL_STATE(2022)] = 101646, + [SMALL_STATE(2023)] = 101684, + [SMALL_STATE(2024)] = 101716, + [SMALL_STATE(2025)] = 101754, + [SMALL_STATE(2026)] = 101792, + [SMALL_STATE(2027)] = 101830, + [SMALL_STATE(2028)] = 101866, + [SMALL_STATE(2029)] = 101899, + [SMALL_STATE(2030)] = 101934, + [SMALL_STATE(2031)] = 101969, + [SMALL_STATE(2032)] = 102002, + [SMALL_STATE(2033)] = 102037, + [SMALL_STATE(2034)] = 102063, + [SMALL_STATE(2035)] = 102091, + [SMALL_STATE(2036)] = 102117, + [SMALL_STATE(2037)] = 102143, + [SMALL_STATE(2038)] = 102169, + [SMALL_STATE(2039)] = 102195, + [SMALL_STATE(2040)] = 102221, + [SMALL_STATE(2041)] = 102247, + [SMALL_STATE(2042)] = 102273, + [SMALL_STATE(2043)] = 102299, + [SMALL_STATE(2044)] = 102329, + [SMALL_STATE(2045)] = 102355, + [SMALL_STATE(2046)] = 102381, + [SMALL_STATE(2047)] = 102407, + [SMALL_STATE(2048)] = 102433, + [SMALL_STATE(2049)] = 102459, + [SMALL_STATE(2050)] = 102489, + [SMALL_STATE(2051)] = 102519, + [SMALL_STATE(2052)] = 102545, + [SMALL_STATE(2053)] = 102571, + [SMALL_STATE(2054)] = 102599, + [SMALL_STATE(2055)] = 102627, + [SMALL_STATE(2056)] = 102655, + [SMALL_STATE(2057)] = 102683, + [SMALL_STATE(2058)] = 102711, + [SMALL_STATE(2059)] = 102739, + [SMALL_STATE(2060)] = 102769, + [SMALL_STATE(2061)] = 102799, + [SMALL_STATE(2062)] = 102829, + [SMALL_STATE(2063)] = 102857, + [SMALL_STATE(2064)] = 102885, + [SMALL_STATE(2065)] = 102913, + [SMALL_STATE(2066)] = 102943, + [SMALL_STATE(2067)] = 102973, + [SMALL_STATE(2068)] = 103001, + [SMALL_STATE(2069)] = 103029, + [SMALL_STATE(2070)] = 103057, + [SMALL_STATE(2071)] = 103085, + [SMALL_STATE(2072)] = 103118, + [SMALL_STATE(2073)] = 103145, + [SMALL_STATE(2074)] = 103172, + [SMALL_STATE(2075)] = 103199, + [SMALL_STATE(2076)] = 103226, + [SMALL_STATE(2077)] = 103253, + [SMALL_STATE(2078)] = 103288, + [SMALL_STATE(2079)] = 103323, + [SMALL_STATE(2080)] = 103356, + [SMALL_STATE(2081)] = 103381, + [SMALL_STATE(2082)] = 103416, + [SMALL_STATE(2083)] = 103443, + [SMALL_STATE(2084)] = 103478, + [SMALL_STATE(2085)] = 103511, + [SMALL_STATE(2086)] = 103538, + [SMALL_STATE(2087)] = 103569, + [SMALL_STATE(2088)] = 103604, + [SMALL_STATE(2089)] = 103637, + [SMALL_STATE(2090)] = 103670, + [SMALL_STATE(2091)] = 103701, + [SMALL_STATE(2092)] = 103726, + [SMALL_STATE(2093)] = 103759, + [SMALL_STATE(2094)] = 103792, + [SMALL_STATE(2095)] = 103819, + [SMALL_STATE(2096)] = 103852, + [SMALL_STATE(2097)] = 103885, + [SMALL_STATE(2098)] = 103918, + [SMALL_STATE(2099)] = 103951, + [SMALL_STATE(2100)] = 103986, + [SMALL_STATE(2101)] = 104019, + [SMALL_STATE(2102)] = 104054, + [SMALL_STATE(2103)] = 104087, + [SMALL_STATE(2104)] = 104122, + [SMALL_STATE(2105)] = 104157, + [SMALL_STATE(2106)] = 104190, + [SMALL_STATE(2107)] = 104225, + [SMALL_STATE(2108)] = 104258, + [SMALL_STATE(2109)] = 104293, + [SMALL_STATE(2110)] = 104328, + [SMALL_STATE(2111)] = 104361, + [SMALL_STATE(2112)] = 104396, + [SMALL_STATE(2113)] = 104423, + [SMALL_STATE(2114)] = 104450, + [SMALL_STATE(2115)] = 104477, + [SMALL_STATE(2116)] = 104510, + [SMALL_STATE(2117)] = 104545, + [SMALL_STATE(2118)] = 104578, + [SMALL_STATE(2119)] = 104605, + [SMALL_STATE(2120)] = 104640, + [SMALL_STATE(2121)] = 104675, + [SMALL_STATE(2122)] = 104710, + [SMALL_STATE(2123)] = 104737, + [SMALL_STATE(2124)] = 104772, + [SMALL_STATE(2125)] = 104805, + [SMALL_STATE(2126)] = 104838, + [SMALL_STATE(2127)] = 104873, + [SMALL_STATE(2128)] = 104900, + [SMALL_STATE(2129)] = 104927, + [SMALL_STATE(2130)] = 104960, + [SMALL_STATE(2131)] = 104993, + [SMALL_STATE(2132)] = 105028, + [SMALL_STATE(2133)] = 105061, + [SMALL_STATE(2134)] = 105096, + [SMALL_STATE(2135)] = 105131, + [SMALL_STATE(2136)] = 105164, + [SMALL_STATE(2137)] = 105191, + [SMALL_STATE(2138)] = 105226, + [SMALL_STATE(2139)] = 105253, + [SMALL_STATE(2140)] = 105280, + [SMALL_STATE(2141)] = 105307, + [SMALL_STATE(2142)] = 105342, + [SMALL_STATE(2143)] = 105377, + [SMALL_STATE(2144)] = 105402, + [SMALL_STATE(2145)] = 105435, + [SMALL_STATE(2146)] = 105470, + [SMALL_STATE(2147)] = 105503, + [SMALL_STATE(2148)] = 105530, + [SMALL_STATE(2149)] = 105565, + [SMALL_STATE(2150)] = 105598, + [SMALL_STATE(2151)] = 105631, + [SMALL_STATE(2152)] = 105666, + [SMALL_STATE(2153)] = 105701, + [SMALL_STATE(2154)] = 105728, + [SMALL_STATE(2155)] = 105755, + [SMALL_STATE(2156)] = 105788, + [SMALL_STATE(2157)] = 105823, + [SMALL_STATE(2158)] = 105856, + [SMALL_STATE(2159)] = 105889, + [SMALL_STATE(2160)] = 105913, + [SMALL_STATE(2161)] = 105945, + [SMALL_STATE(2162)] = 105977, + [SMALL_STATE(2163)] = 106009, + [SMALL_STATE(2164)] = 106041, + [SMALL_STATE(2165)] = 106073, + [SMALL_STATE(2166)] = 106105, + [SMALL_STATE(2167)] = 106137, + [SMALL_STATE(2168)] = 106169, + [SMALL_STATE(2169)] = 106201, + [SMALL_STATE(2170)] = 106233, + [SMALL_STATE(2171)] = 106265, + [SMALL_STATE(2172)] = 106297, + [SMALL_STATE(2173)] = 106329, + [SMALL_STATE(2174)] = 106361, + [SMALL_STATE(2175)] = 106393, + [SMALL_STATE(2176)] = 106425, + [SMALL_STATE(2177)] = 106457, + [SMALL_STATE(2178)] = 106489, + [SMALL_STATE(2179)] = 106521, + [SMALL_STATE(2180)] = 106545, + [SMALL_STATE(2181)] = 106577, + [SMALL_STATE(2182)] = 106609, + [SMALL_STATE(2183)] = 106641, + [SMALL_STATE(2184)] = 106673, + [SMALL_STATE(2185)] = 106705, + [SMALL_STATE(2186)] = 106735, + [SMALL_STATE(2187)] = 106767, + [SMALL_STATE(2188)] = 106799, + [SMALL_STATE(2189)] = 106831, + [SMALL_STATE(2190)] = 106863, + [SMALL_STATE(2191)] = 106895, + [SMALL_STATE(2192)] = 106927, + [SMALL_STATE(2193)] = 106959, + [SMALL_STATE(2194)] = 106991, + [SMALL_STATE(2195)] = 107015, + [SMALL_STATE(2196)] = 107047, + [SMALL_STATE(2197)] = 107077, + [SMALL_STATE(2198)] = 107109, + [SMALL_STATE(2199)] = 107141, + [SMALL_STATE(2200)] = 107173, + [SMALL_STATE(2201)] = 107205, + [SMALL_STATE(2202)] = 107237, + [SMALL_STATE(2203)] = 107269, + [SMALL_STATE(2204)] = 107301, + [SMALL_STATE(2205)] = 107333, + [SMALL_STATE(2206)] = 107365, + [SMALL_STATE(2207)] = 107397, + [SMALL_STATE(2208)] = 107429, + [SMALL_STATE(2209)] = 107461, + [SMALL_STATE(2210)] = 107493, + [SMALL_STATE(2211)] = 107525, + [SMALL_STATE(2212)] = 107557, + [SMALL_STATE(2213)] = 107587, + [SMALL_STATE(2214)] = 107617, + [SMALL_STATE(2215)] = 107649, + [SMALL_STATE(2216)] = 107673, + [SMALL_STATE(2217)] = 107705, + [SMALL_STATE(2218)] = 107737, + [SMALL_STATE(2219)] = 107769, + [SMALL_STATE(2220)] = 107801, + [SMALL_STATE(2221)] = 107833, + [SMALL_STATE(2222)] = 107865, + [SMALL_STATE(2223)] = 107897, + [SMALL_STATE(2224)] = 107929, + [SMALL_STATE(2225)] = 107961, + [SMALL_STATE(2226)] = 107993, + [SMALL_STATE(2227)] = 108025, + [SMALL_STATE(2228)] = 108057, + [SMALL_STATE(2229)] = 108089, + [SMALL_STATE(2230)] = 108119, + [SMALL_STATE(2231)] = 108143, + [SMALL_STATE(2232)] = 108175, + [SMALL_STATE(2233)] = 108207, + [SMALL_STATE(2234)] = 108231, + [SMALL_STATE(2235)] = 108263, + [SMALL_STATE(2236)] = 108295, + [SMALL_STATE(2237)] = 108327, + [SMALL_STATE(2238)] = 108359, + [SMALL_STATE(2239)] = 108391, + [SMALL_STATE(2240)] = 108415, + [SMALL_STATE(2241)] = 108445, + [SMALL_STATE(2242)] = 108477, + [SMALL_STATE(2243)] = 108509, + [SMALL_STATE(2244)] = 108541, + [SMALL_STATE(2245)] = 108573, + [SMALL_STATE(2246)] = 108605, + [SMALL_STATE(2247)] = 108637, + [SMALL_STATE(2248)] = 108669, + [SMALL_STATE(2249)] = 108699, + [SMALL_STATE(2250)] = 108731, + [SMALL_STATE(2251)] = 108763, + [SMALL_STATE(2252)] = 108795, + [SMALL_STATE(2253)] = 108827, + [SMALL_STATE(2254)] = 108859, + [SMALL_STATE(2255)] = 108891, + [SMALL_STATE(2256)] = 108923, + [SMALL_STATE(2257)] = 108955, + [SMALL_STATE(2258)] = 108987, + [SMALL_STATE(2259)] = 109019, + [SMALL_STATE(2260)] = 109051, + [SMALL_STATE(2261)] = 109083, + [SMALL_STATE(2262)] = 109115, + [SMALL_STATE(2263)] = 109147, + [SMALL_STATE(2264)] = 109179, + [SMALL_STATE(2265)] = 109211, + [SMALL_STATE(2266)] = 109243, + [SMALL_STATE(2267)] = 109275, + [SMALL_STATE(2268)] = 109307, + [SMALL_STATE(2269)] = 109339, + [SMALL_STATE(2270)] = 109371, + [SMALL_STATE(2271)] = 109403, + [SMALL_STATE(2272)] = 109435, + [SMALL_STATE(2273)] = 109467, + [SMALL_STATE(2274)] = 109499, + [SMALL_STATE(2275)] = 109531, + [SMALL_STATE(2276)] = 109563, + [SMALL_STATE(2277)] = 109593, + [SMALL_STATE(2278)] = 109625, + [SMALL_STATE(2279)] = 109657, + [SMALL_STATE(2280)] = 109689, + [SMALL_STATE(2281)] = 109721, + [SMALL_STATE(2282)] = 109753, + [SMALL_STATE(2283)] = 109785, + [SMALL_STATE(2284)] = 109817, + [SMALL_STATE(2285)] = 109849, + [SMALL_STATE(2286)] = 109881, + [SMALL_STATE(2287)] = 109913, + [SMALL_STATE(2288)] = 109943, + [SMALL_STATE(2289)] = 109975, + [SMALL_STATE(2290)] = 110005, + [SMALL_STATE(2291)] = 110037, + [SMALL_STATE(2292)] = 110060, + [SMALL_STATE(2293)] = 110083, + [SMALL_STATE(2294)] = 110112, + [SMALL_STATE(2295)] = 110141, + [SMALL_STATE(2296)] = 110164, + [SMALL_STATE(2297)] = 110193, + [SMALL_STATE(2298)] = 110222, + [SMALL_STATE(2299)] = 110243, + [SMALL_STATE(2300)] = 110272, + [SMALL_STATE(2301)] = 110301, + [SMALL_STATE(2302)] = 110330, + [SMALL_STATE(2303)] = 110359, + [SMALL_STATE(2304)] = 110388, + [SMALL_STATE(2305)] = 110417, + [SMALL_STATE(2306)] = 110446, + [SMALL_STATE(2307)] = 110475, + [SMALL_STATE(2308)] = 110504, + [SMALL_STATE(2309)] = 110533, + [SMALL_STATE(2310)] = 110562, + [SMALL_STATE(2311)] = 110591, + [SMALL_STATE(2312)] = 110620, + [SMALL_STATE(2313)] = 110649, + [SMALL_STATE(2314)] = 110678, + [SMALL_STATE(2315)] = 110707, + [SMALL_STATE(2316)] = 110736, + [SMALL_STATE(2317)] = 110765, + [SMALL_STATE(2318)] = 110786, + [SMALL_STATE(2319)] = 110815, + [SMALL_STATE(2320)] = 110844, + [SMALL_STATE(2321)] = 110871, + [SMALL_STATE(2322)] = 110900, + [SMALL_STATE(2323)] = 110929, + [SMALL_STATE(2324)] = 110958, + [SMALL_STATE(2325)] = 110987, + [SMALL_STATE(2326)] = 111016, + [SMALL_STATE(2327)] = 111045, + [SMALL_STATE(2328)] = 111074, + [SMALL_STATE(2329)] = 111103, + [SMALL_STATE(2330)] = 111126, + [SMALL_STATE(2331)] = 111151, + [SMALL_STATE(2332)] = 111172, + [SMALL_STATE(2333)] = 111193, + [SMALL_STATE(2334)] = 111222, + [SMALL_STATE(2335)] = 111251, + [SMALL_STATE(2336)] = 111278, + [SMALL_STATE(2337)] = 111307, + [SMALL_STATE(2338)] = 111330, + [SMALL_STATE(2339)] = 111359, + [SMALL_STATE(2340)] = 111388, + [SMALL_STATE(2341)] = 111409, + [SMALL_STATE(2342)] = 111438, + [SMALL_STATE(2343)] = 111461, + [SMALL_STATE(2344)] = 111484, + [SMALL_STATE(2345)] = 111513, + [SMALL_STATE(2346)] = 111542, + [SMALL_STATE(2347)] = 111571, + [SMALL_STATE(2348)] = 111594, + [SMALL_STATE(2349)] = 111623, + [SMALL_STATE(2350)] = 111646, + [SMALL_STATE(2351)] = 111669, + [SMALL_STATE(2352)] = 111698, + [SMALL_STATE(2353)] = 111719, + [SMALL_STATE(2354)] = 111748, + [SMALL_STATE(2355)] = 111771, + [SMALL_STATE(2356)] = 111792, + [SMALL_STATE(2357)] = 111815, + [SMALL_STATE(2358)] = 111844, + [SMALL_STATE(2359)] = 111869, + [SMALL_STATE(2360)] = 111892, + [SMALL_STATE(2361)] = 111915, + [SMALL_STATE(2362)] = 111941, + [SMALL_STATE(2363)] = 111967, + [SMALL_STATE(2364)] = 111993, + [SMALL_STATE(2365)] = 112019, + [SMALL_STATE(2366)] = 112045, + [SMALL_STATE(2367)] = 112071, + [SMALL_STATE(2368)] = 112097, + [SMALL_STATE(2369)] = 112119, + [SMALL_STATE(2370)] = 112141, + [SMALL_STATE(2371)] = 112167, + [SMALL_STATE(2372)] = 112189, + [SMALL_STATE(2373)] = 112215, + [SMALL_STATE(2374)] = 112241, + [SMALL_STATE(2375)] = 112267, + [SMALL_STATE(2376)] = 112289, + [SMALL_STATE(2377)] = 112315, + [SMALL_STATE(2378)] = 112341, + [SMALL_STATE(2379)] = 112367, + [SMALL_STATE(2380)] = 112393, + [SMALL_STATE(2381)] = 112415, + [SMALL_STATE(2382)] = 112437, + [SMALL_STATE(2383)] = 112463, + [SMALL_STATE(2384)] = 112489, + [SMALL_STATE(2385)] = 112515, + [SMALL_STATE(2386)] = 112541, + [SMALL_STATE(2387)] = 112567, + [SMALL_STATE(2388)] = 112593, + [SMALL_STATE(2389)] = 112619, + [SMALL_STATE(2390)] = 112641, + [SMALL_STATE(2391)] = 112663, + [SMALL_STATE(2392)] = 112689, + [SMALL_STATE(2393)] = 112715, + [SMALL_STATE(2394)] = 112741, + [SMALL_STATE(2395)] = 112767, + [SMALL_STATE(2396)] = 112793, + [SMALL_STATE(2397)] = 112819, + [SMALL_STATE(2398)] = 112845, + [SMALL_STATE(2399)] = 112871, + [SMALL_STATE(2400)] = 112897, + [SMALL_STATE(2401)] = 112923, + [SMALL_STATE(2402)] = 112949, + [SMALL_STATE(2403)] = 112975, + [SMALL_STATE(2404)] = 113001, + [SMALL_STATE(2405)] = 113027, + [SMALL_STATE(2406)] = 113053, + [SMALL_STATE(2407)] = 113079, + [SMALL_STATE(2408)] = 113105, + [SMALL_STATE(2409)] = 113131, + [SMALL_STATE(2410)] = 113157, + [SMALL_STATE(2411)] = 113183, + [SMALL_STATE(2412)] = 113209, + [SMALL_STATE(2413)] = 113235, + [SMALL_STATE(2414)] = 113261, + [SMALL_STATE(2415)] = 113287, + [SMALL_STATE(2416)] = 113309, + [SMALL_STATE(2417)] = 113331, + [SMALL_STATE(2418)] = 113357, + [SMALL_STATE(2419)] = 113383, + [SMALL_STATE(2420)] = 113409, + [SMALL_STATE(2421)] = 113431, + [SMALL_STATE(2422)] = 113457, + [SMALL_STATE(2423)] = 113483, + [SMALL_STATE(2424)] = 113509, + [SMALL_STATE(2425)] = 113535, + [SMALL_STATE(2426)] = 113561, + [SMALL_STATE(2427)] = 113587, + [SMALL_STATE(2428)] = 113613, + [SMALL_STATE(2429)] = 113639, + [SMALL_STATE(2430)] = 113665, + [SMALL_STATE(2431)] = 113691, + [SMALL_STATE(2432)] = 113717, + [SMALL_STATE(2433)] = 113743, + [SMALL_STATE(2434)] = 113769, + [SMALL_STATE(2435)] = 113795, + [SMALL_STATE(2436)] = 113821, + [SMALL_STATE(2437)] = 113847, + [SMALL_STATE(2438)] = 113871, + [SMALL_STATE(2439)] = 113897, + [SMALL_STATE(2440)] = 113923, + [SMALL_STATE(2441)] = 113945, + [SMALL_STATE(2442)] = 113971, + [SMALL_STATE(2443)] = 113993, + [SMALL_STATE(2444)] = 114019, + [SMALL_STATE(2445)] = 114045, + [SMALL_STATE(2446)] = 114071, + [SMALL_STATE(2447)] = 114093, + [SMALL_STATE(2448)] = 114115, + [SMALL_STATE(2449)] = 114141, + [SMALL_STATE(2450)] = 114163, + [SMALL_STATE(2451)] = 114189, + [SMALL_STATE(2452)] = 114215, + [SMALL_STATE(2453)] = 114241, + [SMALL_STATE(2454)] = 114267, + [SMALL_STATE(2455)] = 114290, + [SMALL_STATE(2456)] = 114313, + [SMALL_STATE(2457)] = 114336, + [SMALL_STATE(2458)] = 114359, + [SMALL_STATE(2459)] = 114382, + [SMALL_STATE(2460)] = 114405, + [SMALL_STATE(2461)] = 114428, + [SMALL_STATE(2462)] = 114451, + [SMALL_STATE(2463)] = 114474, + [SMALL_STATE(2464)] = 114497, + [SMALL_STATE(2465)] = 114520, + [SMALL_STATE(2466)] = 114543, + [SMALL_STATE(2467)] = 114566, + [SMALL_STATE(2468)] = 114589, + [SMALL_STATE(2469)] = 114612, + [SMALL_STATE(2470)] = 114635, + [SMALL_STATE(2471)] = 114658, + [SMALL_STATE(2472)] = 114681, + [SMALL_STATE(2473)] = 114704, + [SMALL_STATE(2474)] = 114727, + [SMALL_STATE(2475)] = 114750, + [SMALL_STATE(2476)] = 114773, + [SMALL_STATE(2477)] = 114794, + [SMALL_STATE(2478)] = 114817, + [SMALL_STATE(2479)] = 114840, + [SMALL_STATE(2480)] = 114863, + [SMALL_STATE(2481)] = 114884, + [SMALL_STATE(2482)] = 114905, + [SMALL_STATE(2483)] = 114928, + [SMALL_STATE(2484)] = 114951, + [SMALL_STATE(2485)] = 114972, + [SMALL_STATE(2486)] = 114995, + [SMALL_STATE(2487)] = 115018, + [SMALL_STATE(2488)] = 115039, + [SMALL_STATE(2489)] = 115062, + [SMALL_STATE(2490)] = 115085, + [SMALL_STATE(2491)] = 115108, + [SMALL_STATE(2492)] = 115131, + [SMALL_STATE(2493)] = 115152, + [SMALL_STATE(2494)] = 115175, + [SMALL_STATE(2495)] = 115198, + [SMALL_STATE(2496)] = 115221, + [SMALL_STATE(2497)] = 115240, + [SMALL_STATE(2498)] = 115263, + [SMALL_STATE(2499)] = 115286, + [SMALL_STATE(2500)] = 115306, + [SMALL_STATE(2501)] = 115326, + [SMALL_STATE(2502)] = 115346, + [SMALL_STATE(2503)] = 115366, + [SMALL_STATE(2504)] = 115386, + [SMALL_STATE(2505)] = 115406, + [SMALL_STATE(2506)] = 115426, + [SMALL_STATE(2507)] = 115446, + [SMALL_STATE(2508)] = 115466, + [SMALL_STATE(2509)] = 115486, + [SMALL_STATE(2510)] = 115506, + [SMALL_STATE(2511)] = 115526, + [SMALL_STATE(2512)] = 115546, + [SMALL_STATE(2513)] = 115566, + [SMALL_STATE(2514)] = 115586, + [SMALL_STATE(2515)] = 115606, + [SMALL_STATE(2516)] = 115626, + [SMALL_STATE(2517)] = 115646, + [SMALL_STATE(2518)] = 115666, + [SMALL_STATE(2519)] = 115686, + [SMALL_STATE(2520)] = 115706, + [SMALL_STATE(2521)] = 115726, + [SMALL_STATE(2522)] = 115746, + [SMALL_STATE(2523)] = 115766, + [SMALL_STATE(2524)] = 115786, + [SMALL_STATE(2525)] = 115806, + [SMALL_STATE(2526)] = 115826, + [SMALL_STATE(2527)] = 115846, + [SMALL_STATE(2528)] = 115864, + [SMALL_STATE(2529)] = 115884, + [SMALL_STATE(2530)] = 115904, + [SMALL_STATE(2531)] = 115924, + [SMALL_STATE(2532)] = 115944, + [SMALL_STATE(2533)] = 115964, + [SMALL_STATE(2534)] = 115984, + [SMALL_STATE(2535)] = 116004, + [SMALL_STATE(2536)] = 116024, + [SMALL_STATE(2537)] = 116044, + [SMALL_STATE(2538)] = 116064, + [SMALL_STATE(2539)] = 116084, + [SMALL_STATE(2540)] = 116102, + [SMALL_STATE(2541)] = 116122, + [SMALL_STATE(2542)] = 116142, + [SMALL_STATE(2543)] = 116162, + [SMALL_STATE(2544)] = 116182, + [SMALL_STATE(2545)] = 116202, + [SMALL_STATE(2546)] = 116222, + [SMALL_STATE(2547)] = 116242, + [SMALL_STATE(2548)] = 116260, + [SMALL_STATE(2549)] = 116280, + [SMALL_STATE(2550)] = 116300, + [SMALL_STATE(2551)] = 116320, + [SMALL_STATE(2552)] = 116338, + [SMALL_STATE(2553)] = 116358, + [SMALL_STATE(2554)] = 116378, + [SMALL_STATE(2555)] = 116398, + [SMALL_STATE(2556)] = 116418, + [SMALL_STATE(2557)] = 116438, + [SMALL_STATE(2558)] = 116458, + [SMALL_STATE(2559)] = 116478, + [SMALL_STATE(2560)] = 116498, + [SMALL_STATE(2561)] = 116518, + [SMALL_STATE(2562)] = 116538, + [SMALL_STATE(2563)] = 116558, + [SMALL_STATE(2564)] = 116578, + [SMALL_STATE(2565)] = 116598, + [SMALL_STATE(2566)] = 116618, + [SMALL_STATE(2567)] = 116638, + [SMALL_STATE(2568)] = 116656, + [SMALL_STATE(2569)] = 116676, + [SMALL_STATE(2570)] = 116696, + [SMALL_STATE(2571)] = 116716, + [SMALL_STATE(2572)] = 116736, + [SMALL_STATE(2573)] = 116756, + [SMALL_STATE(2574)] = 116776, + [SMALL_STATE(2575)] = 116796, + [SMALL_STATE(2576)] = 116816, + [SMALL_STATE(2577)] = 116836, + [SMALL_STATE(2578)] = 116856, + [SMALL_STATE(2579)] = 116876, + [SMALL_STATE(2580)] = 116896, + [SMALL_STATE(2581)] = 116916, + [SMALL_STATE(2582)] = 116936, + [SMALL_STATE(2583)] = 116956, + [SMALL_STATE(2584)] = 116976, + [SMALL_STATE(2585)] = 116996, + [SMALL_STATE(2586)] = 117016, + [SMALL_STATE(2587)] = 117036, + [SMALL_STATE(2588)] = 117056, + [SMALL_STATE(2589)] = 117076, + [SMALL_STATE(2590)] = 117096, + [SMALL_STATE(2591)] = 117116, + [SMALL_STATE(2592)] = 117136, + [SMALL_STATE(2593)] = 117156, + [SMALL_STATE(2594)] = 117176, + [SMALL_STATE(2595)] = 117196, + [SMALL_STATE(2596)] = 117216, + [SMALL_STATE(2597)] = 117236, + [SMALL_STATE(2598)] = 117256, + [SMALL_STATE(2599)] = 117276, + [SMALL_STATE(2600)] = 117296, + [SMALL_STATE(2601)] = 117316, + [SMALL_STATE(2602)] = 117336, + [SMALL_STATE(2603)] = 117356, + [SMALL_STATE(2604)] = 117376, + [SMALL_STATE(2605)] = 117396, + [SMALL_STATE(2606)] = 117416, + [SMALL_STATE(2607)] = 117436, + [SMALL_STATE(2608)] = 117456, + [SMALL_STATE(2609)] = 117476, + [SMALL_STATE(2610)] = 117496, + [SMALL_STATE(2611)] = 117516, + [SMALL_STATE(2612)] = 117536, + [SMALL_STATE(2613)] = 117553, + [SMALL_STATE(2614)] = 117570, + [SMALL_STATE(2615)] = 117587, + [SMALL_STATE(2616)] = 117604, + [SMALL_STATE(2617)] = 117621, + [SMALL_STATE(2618)] = 117638, + [SMALL_STATE(2619)] = 117655, + [SMALL_STATE(2620)] = 117672, + [SMALL_STATE(2621)] = 117689, + [SMALL_STATE(2622)] = 117706, + [SMALL_STATE(2623)] = 117723, + [SMALL_STATE(2624)] = 117740, + [SMALL_STATE(2625)] = 117757, + [SMALL_STATE(2626)] = 117774, + [SMALL_STATE(2627)] = 117791, + [SMALL_STATE(2628)] = 117808, + [SMALL_STATE(2629)] = 117825, + [SMALL_STATE(2630)] = 117842, + [SMALL_STATE(2631)] = 117859, + [SMALL_STATE(2632)] = 117876, + [SMALL_STATE(2633)] = 117893, + [SMALL_STATE(2634)] = 117910, + [SMALL_STATE(2635)] = 117927, + [SMALL_STATE(2636)] = 117944, + [SMALL_STATE(2637)] = 117961, + [SMALL_STATE(2638)] = 117978, + [SMALL_STATE(2639)] = 117995, + [SMALL_STATE(2640)] = 118012, + [SMALL_STATE(2641)] = 118029, + [SMALL_STATE(2642)] = 118046, + [SMALL_STATE(2643)] = 118063, + [SMALL_STATE(2644)] = 118080, + [SMALL_STATE(2645)] = 118097, + [SMALL_STATE(2646)] = 118114, + [SMALL_STATE(2647)] = 118131, + [SMALL_STATE(2648)] = 118148, + [SMALL_STATE(2649)] = 118165, + [SMALL_STATE(2650)] = 118182, + [SMALL_STATE(2651)] = 118199, + [SMALL_STATE(2652)] = 118216, + [SMALL_STATE(2653)] = 118233, + [SMALL_STATE(2654)] = 118250, + [SMALL_STATE(2655)] = 118267, + [SMALL_STATE(2656)] = 118284, + [SMALL_STATE(2657)] = 118301, + [SMALL_STATE(2658)] = 118318, + [SMALL_STATE(2659)] = 118335, + [SMALL_STATE(2660)] = 118352, + [SMALL_STATE(2661)] = 118369, + [SMALL_STATE(2662)] = 118386, + [SMALL_STATE(2663)] = 118403, + [SMALL_STATE(2664)] = 118420, + [SMALL_STATE(2665)] = 118437, + [SMALL_STATE(2666)] = 118454, + [SMALL_STATE(2667)] = 118471, + [SMALL_STATE(2668)] = 118488, + [SMALL_STATE(2669)] = 118505, + [SMALL_STATE(2670)] = 118522, + [SMALL_STATE(2671)] = 118539, + [SMALL_STATE(2672)] = 118556, + [SMALL_STATE(2673)] = 118573, + [SMALL_STATE(2674)] = 118590, + [SMALL_STATE(2675)] = 118607, + [SMALL_STATE(2676)] = 118624, + [SMALL_STATE(2677)] = 118641, + [SMALL_STATE(2678)] = 118658, + [SMALL_STATE(2679)] = 118675, + [SMALL_STATE(2680)] = 118692, + [SMALL_STATE(2681)] = 118709, + [SMALL_STATE(2682)] = 118726, + [SMALL_STATE(2683)] = 118743, + [SMALL_STATE(2684)] = 118760, + [SMALL_STATE(2685)] = 118777, + [SMALL_STATE(2686)] = 118794, + [SMALL_STATE(2687)] = 118811, + [SMALL_STATE(2688)] = 118828, + [SMALL_STATE(2689)] = 118845, + [SMALL_STATE(2690)] = 118862, + [SMALL_STATE(2691)] = 118879, + [SMALL_STATE(2692)] = 118896, + [SMALL_STATE(2693)] = 118913, + [SMALL_STATE(2694)] = 118930, + [SMALL_STATE(2695)] = 118947, + [SMALL_STATE(2696)] = 118964, + [SMALL_STATE(2697)] = 118981, + [SMALL_STATE(2698)] = 118998, + [SMALL_STATE(2699)] = 119015, + [SMALL_STATE(2700)] = 119032, + [SMALL_STATE(2701)] = 119049, + [SMALL_STATE(2702)] = 119066, + [SMALL_STATE(2703)] = 119083, + [SMALL_STATE(2704)] = 119100, + [SMALL_STATE(2705)] = 119117, + [SMALL_STATE(2706)] = 119134, + [SMALL_STATE(2707)] = 119151, + [SMALL_STATE(2708)] = 119168, + [SMALL_STATE(2709)] = 119185, + [SMALL_STATE(2710)] = 119202, + [SMALL_STATE(2711)] = 119219, + [SMALL_STATE(2712)] = 119236, + [SMALL_STATE(2713)] = 119253, + [SMALL_STATE(2714)] = 119270, + [SMALL_STATE(2715)] = 119287, + [SMALL_STATE(2716)] = 119304, + [SMALL_STATE(2717)] = 119321, + [SMALL_STATE(2718)] = 119338, + [SMALL_STATE(2719)] = 119355, + [SMALL_STATE(2720)] = 119372, + [SMALL_STATE(2721)] = 119389, + [SMALL_STATE(2722)] = 119406, + [SMALL_STATE(2723)] = 119423, + [SMALL_STATE(2724)] = 119440, + [SMALL_STATE(2725)] = 119457, + [SMALL_STATE(2726)] = 119474, + [SMALL_STATE(2727)] = 119491, + [SMALL_STATE(2728)] = 119508, + [SMALL_STATE(2729)] = 119525, + [SMALL_STATE(2730)] = 119542, + [SMALL_STATE(2731)] = 119559, + [SMALL_STATE(2732)] = 119576, + [SMALL_STATE(2733)] = 119593, + [SMALL_STATE(2734)] = 119610, + [SMALL_STATE(2735)] = 119627, + [SMALL_STATE(2736)] = 119644, + [SMALL_STATE(2737)] = 119661, + [SMALL_STATE(2738)] = 119678, + [SMALL_STATE(2739)] = 119695, + [SMALL_STATE(2740)] = 119712, + [SMALL_STATE(2741)] = 119729, + [SMALL_STATE(2742)] = 119746, + [SMALL_STATE(2743)] = 119763, + [SMALL_STATE(2744)] = 119780, + [SMALL_STATE(2745)] = 119797, + [SMALL_STATE(2746)] = 119814, + [SMALL_STATE(2747)] = 119831, + [SMALL_STATE(2748)] = 119848, + [SMALL_STATE(2749)] = 119865, + [SMALL_STATE(2750)] = 119882, + [SMALL_STATE(2751)] = 119899, + [SMALL_STATE(2752)] = 119916, + [SMALL_STATE(2753)] = 119933, + [SMALL_STATE(2754)] = 119950, + [SMALL_STATE(2755)] = 119967, + [SMALL_STATE(2756)] = 119984, + [SMALL_STATE(2757)] = 120001, + [SMALL_STATE(2758)] = 120018, + [SMALL_STATE(2759)] = 120035, + [SMALL_STATE(2760)] = 120052, + [SMALL_STATE(2761)] = 120069, + [SMALL_STATE(2762)] = 120086, + [SMALL_STATE(2763)] = 120103, + [SMALL_STATE(2764)] = 120120, + [SMALL_STATE(2765)] = 120137, + [SMALL_STATE(2766)] = 120154, + [SMALL_STATE(2767)] = 120171, + [SMALL_STATE(2768)] = 120188, + [SMALL_STATE(2769)] = 120205, + [SMALL_STATE(2770)] = 120222, + [SMALL_STATE(2771)] = 120239, + [SMALL_STATE(2772)] = 120256, + [SMALL_STATE(2773)] = 120273, + [SMALL_STATE(2774)] = 120290, + [SMALL_STATE(2775)] = 120307, + [SMALL_STATE(2776)] = 120324, + [SMALL_STATE(2777)] = 120341, + [SMALL_STATE(2778)] = 120358, + [SMALL_STATE(2779)] = 120375, + [SMALL_STATE(2780)] = 120392, + [SMALL_STATE(2781)] = 120409, + [SMALL_STATE(2782)] = 120426, + [SMALL_STATE(2783)] = 120443, + [SMALL_STATE(2784)] = 120460, + [SMALL_STATE(2785)] = 120477, + [SMALL_STATE(2786)] = 120494, + [SMALL_STATE(2787)] = 120511, + [SMALL_STATE(2788)] = 120528, + [SMALL_STATE(2789)] = 120545, + [SMALL_STATE(2790)] = 120562, + [SMALL_STATE(2791)] = 120579, + [SMALL_STATE(2792)] = 120596, + [SMALL_STATE(2793)] = 120613, + [SMALL_STATE(2794)] = 120630, + [SMALL_STATE(2795)] = 120647, + [SMALL_STATE(2796)] = 120664, + [SMALL_STATE(2797)] = 120681, + [SMALL_STATE(2798)] = 120698, + [SMALL_STATE(2799)] = 120702, + [SMALL_STATE(2800)] = 120706, + [SMALL_STATE(2801)] = 120710, +}; + +static const TSParseActionEntry ts_parse_actions[] = { + [0] = {.entry = {.count = 0, .reusable = false}}, + [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [9] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [69] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [71] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [73] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 6), + [75] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 6), + [77] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [79] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [81] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [83] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [85] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), + [87] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), + [89] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [93] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [95] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [97] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__prefix_expression, 1), + [99] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__prefix_expression, 1), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_increment_op, 2), + [261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_increment_op, 2), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_literal, 1), + [269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_literal, 1), + [271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plain_string, 3), + [273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_string, 3), + [275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1), + [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1), + [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 4), + [281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 4), + [283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dotted_identifier, 3), + [285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_identifier, 3), + [287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__juxt_argument_list, 1), + [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__juxt_argument_list, 1), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3), + [331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolate_string, 2), + [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolate_string, 2), + [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plain_string, 2), + [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_string, 2), + [343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolate_string, 3), + [345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolate_string, 3), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_op, 3), + [353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_op, 3), + [355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 5), + [357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 5), + [359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure, 3), + [365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure, 3), + [367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_item, 5, .production_id = 56), + [369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_item, 5, .production_id = 56), + [371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_item, 3, .production_id = 26), + [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_item, 3, .production_id = 26), + [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__juxt_argument_list_repeat1, 2), + [377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__juxt_argument_list_repeat1, 2), + [379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure, 6), + [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure, 6), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure, 2), + [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure, 2), + [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_op, 5, .production_id = 42), + [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_op, 5, .production_id = 42), + [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4), + [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 4), + [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4), + [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4), + [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_op, 3), + [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_op, 3), + [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), + [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), + [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_op, 2), + [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_op, 2), + [417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure, 5), + [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure, 5), + [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5), + [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5), + [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure, 4), + [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure, 4), + [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_op, 2), + [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_op, 2), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), + [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, .production_id = 36), + [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, .production_id = 36), + [483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, .production_id = 34), + [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, .production_id = 34), + [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 2), + [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 2), + [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 27), + [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 27), + [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assertion, 2), + [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assertion, 2), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 19), + [503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 19), + [505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 7, .production_id = 70), + [507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 7, .production_id = 70), + [509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 7, .production_id = 68), + [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 7, .production_id = 68), + [513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, .production_id = 53), + [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, .production_id = 53), + [517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, .production_id = 51), + [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, .production_id = 51), + [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 27), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1230), + [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(790), + [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), + [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1924), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1963), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2790), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1469), + [545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1947), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2294), + [551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2756), + [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2756), + [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(13), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2753), + [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(537), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2645), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2565), + [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2646), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(514), + [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2432), + [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2209), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2226), + [587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2152), + [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2149), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2775), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(603), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2352), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1896), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1897), + [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 1), + [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 1), + [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 1), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 2), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 3), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 3), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 2), + [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 2), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1513), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1921), + [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1948), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1243), + [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1974), + [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2692), + [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2692), + [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(12), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2710), + [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(536), + [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2630), + [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2518), + [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2640), + [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(489), + [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2743), + [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(559), + [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 4, .production_id = 76), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 4, .production_id = 76), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 3, .production_id = 76), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 3, .production_id = 76), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1922), + [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1968), + [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1302), + [1149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1971), + [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2789), + [1155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2789), + [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(15), + [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2788), + [1164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2787), + [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2545), + [1170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2783), + [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(502), + [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(550), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 23), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 23), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 55), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 55), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_groovy_import, 2, .production_id = 1), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_groovy_import, 2, .production_id = 1), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_groovy_import, 3, .production_id = 9), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_groovy_import, 3, .production_id = 9), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 11), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 11), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 38), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 38), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_groovy_package, 2), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_groovy_package, 2), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 31), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 31), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, .production_id = 77), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, .production_id = 77), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 30), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 30), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 5, .production_id = 31), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 5, .production_id = 31), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_juxt_function_call, 2, .production_id = 6), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_juxt_function_call, 2, .production_id = 6), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 5, .production_id = 32), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 5, .production_id = 32), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 33), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 33), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 3, .production_id = 10), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 3, .production_id = 10), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 35), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 35), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 37), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 37), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_loop, 3, .production_id = 12), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_loop, 3, .production_id = 12), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_groovy_import, 5, .production_id = 29), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_groovy_import, 5, .production_id = 29), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_groovy_import, 5, .production_id = 28), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_groovy_import, 5, .production_id = 28), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_groovy_import, 4, .production_id = 15), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_groovy_import, 4, .production_id = 15), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_groovy_import, 6, .production_id = 41), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_groovy_import, 6, .production_id = 41), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 5), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 5), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 44), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 44), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_loop, 6, .production_id = 45), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_loop, 6, .production_id = 45), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, .production_id = 78), + [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, .production_id = 78), + [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 9, .production_id = 82), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 9, .production_id = 82), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 49), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 49), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 50), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 50), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, .production_id = 83), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, .production_id = 83), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 52), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 52), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 54), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 54), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 20), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 20), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, .production_id = 22), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, .production_id = 22), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 5), + [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 5), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_loop, 7, .production_id = 59), + [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_loop, 7, .production_id = 59), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 63), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 63), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), + [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), + [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, .production_id = 64), + [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, .production_id = 64), + [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, .production_id = 65), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, .production_id = 65), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, .production_id = 66), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, .production_id = 66), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, .production_id = 67), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, .production_id = 67), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, .production_id = 17), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, .production_id = 17), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 69), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 69), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 21), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 21), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_groovy_import, 3, .production_id = 8), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_groovy_import, 3, .production_id = 8), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_groovy_import, 4, .production_id = 16), + [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_groovy_import, 4, .production_id = 16), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2), + [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2), + [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, .production_id = 39), + [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, .production_id = 39), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 25), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 25), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 24), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 24), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__juxt_argument_list, 2), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__juxt_argument_list, 2), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 14), + [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 14), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 13), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 13), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__juxt_argument_list_repeat1, 2), SHIFT_REPEAT(1108), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 2, .production_id = 7), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 2, .production_id = 7), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 2, .production_id = 3), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 2, .production_id = 3), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, .production_id = 40), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, .production_id = 40), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 7), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [1746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__juxt_argument_list_repeat1, 2), SHIFT_REPEAT(1100), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), + [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [1899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__juxt_argument_list_repeat1, 2), SHIFT_REPEAT(1122), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__juxt_argument_list_repeat1, 2), SHIFT_REPEAT(1096), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__juxt_argument_list_repeat1, 2), SHIFT_REPEAT(1123), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(839), + [2001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1485), + [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1485), + [2007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1945), + [2010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(2333), + [2013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1486), + [2016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(908), + [2019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(16), + [2022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(911), + [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1455), + [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(905), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), + [2033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(912), + [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(912), + [2039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(2404), + [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(2256), + [2045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(2278), + [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(2121), + [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(2125), + [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1199), + [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1199), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [2064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(860), + [2067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1485), + [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1485), + [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1945), + [2076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2333), + [2079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1486), + [2082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(908), + [2085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(16), + [2088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(911), + [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1504), + [2094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(905), + [2097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(912), + [2100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(912), + [2103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2404), + [2106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2256), + [2109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2278), + [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2121), + [2115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2125), + [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1199), + [2121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1199), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [2176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__juxt_argument_list_repeat1, 2), SHIFT_REPEAT(1120), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [2189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__juxt_function_name, 1), REDUCE(sym__type, 1), + [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__juxt_function_name, 1), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__juxt_function_name, 1), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 18), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2), + [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_parameters, 9, .production_id = 84), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_parameters, 9, .production_id = 84), + [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_parameters, 8, .production_id = 81), + [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_parameters, 8, .production_id = 81), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_parameters, 8, .production_id = 80), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_parameters, 8, .production_id = 80), + [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_parameters, 8, .production_id = 79), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_parameters, 8, .production_id = 79), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_parameters, 7, .production_id = 75), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_parameters, 7, .production_id = 75), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_parameters, 7, .production_id = 73), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_parameters, 7, .production_id = 73), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_parameters, 7, .production_id = 72), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_parameters, 7, .production_id = 72), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_parameters, 7, .production_id = 71), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_parameters, 7, .production_id = 71), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_parameters, 6, .production_id = 62), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_parameters, 6, .production_id = 62), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_parameters, 6, .production_id = 61), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_parameters, 6, .production_id = 61), + [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_parameters, 6, .production_id = 60), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_parameters, 6, .production_id = 60), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_parameters, 6, .production_id = 58), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_parameters, 6, .production_id = 58), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_parameters, 6, .production_id = 57), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_parameters, 6, .production_id = 57), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_parameters, 7, .production_id = 74), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_parameters, 7, .production_id = 74), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_parameters, 5, .production_id = 48), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_parameters, 5, .production_id = 48), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_parameters, 5, .production_id = 47), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_parameters, 5, .production_id = 47), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_parameters, 5, .production_id = 46), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_parameters, 5, .production_id = 46), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_parameters, 4), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_parameters, 4), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), + [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), + [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__param_list_repeat1, 2), SHIFT_REPEAT(2023), + [3019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__param_list_repeat1, 2), SHIFT_REPEAT(2336), + [3022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__param_list_repeat1, 2), SHIFT_REPEAT(2405), + [3025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__param_list_repeat1, 2), SHIFT_REPEAT(2247), + [3028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__param_list_repeat1, 2), SHIFT_REPEAT(2246), + [3031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__param_list_repeat1, 2), SHIFT_REPEAT(2142), + [3034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__param_list_repeat1, 2), SHIFT_REPEAT(2093), + [3037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__param_list_repeat1, 2), SHIFT_REPEAT(2352), + [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 2), + [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 2), + [3044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_generics_repeat1, 2), SHIFT_REPEAT(1230), + [3047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_generics_repeat1, 2), SHIFT_REPEAT(2294), + [3050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_generics_repeat1, 2), SHIFT_REPEAT(2432), + [3053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generics_repeat1, 2), SHIFT_REPEAT(2209), + [3056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_generics_repeat1, 2), SHIFT_REPEAT(2226), + [3059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generics_repeat1, 2), SHIFT_REPEAT(2152), + [3062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generics_repeat1, 2), SHIFT_REPEAT(2149), + [3065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_generics_repeat1, 2), SHIFT_REPEAT(2352), + [3068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3), + [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat1, 2), + [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat1, 2), + [3078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat1, 2), SHIFT_REPEAT(1897), + [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_modifier, 1), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_modifier, 1), + [3085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifier, 1), + [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier, 1), + [3089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat1, 1), + [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat1, 1), + [3093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat1, 2), SHIFT_REPEAT(1913), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [3128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__param_list_repeat1, 2), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__param_list_repeat1, 2), + [3134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_generics_repeat1, 2), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generics_repeat1, 2), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_list, 3), + [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_list, 2), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(2632), + [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(1420), + [3284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(402), + [3287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(402), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [3294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_groovy_doc_repeat1, 2), SHIFT_REPEAT(2194), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_groovy_doc_repeat1, 2), + [3299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_groovy_doc_repeat1, 2), SHIFT_REPEAT(2653), + [3302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_groovy_doc_repeat1, 2), SHIFT_REPEAT(2651), + [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 2), + [3335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__juxt_argument_list_repeat1, 2), SHIFT_REPEAT(1095), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [3404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolate_string_repeat4, 2), SHIFT_REPEAT(2350), + [3407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolate_string_repeat4, 2), SHIFT_REPEAT(2354), + [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolate_string_repeat4, 2), + [3412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolate_string_repeat4, 2), SHIFT_REPEAT(2524), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolate_string_repeat2, 2), + [3419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolate_string_repeat2, 2), SHIFT_REPEAT(2359), + [3422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolate_string_repeat2, 2), SHIFT_REPEAT(2478), + [3425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolate_string_repeat2, 2), SHIFT_REPEAT(2359), + [3428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolate_string_repeat2, 2), SHIFT_REPEAT(2560), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [3507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_groovy_doc_throws, 2), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_groovy_doc_throws, 2), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [3525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [3539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_groovy_doc_param, 2), + [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_groovy_doc_param, 2), + [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_groovy_doc_repeat1, 1), + [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_groovy_doc_repeat1, 1), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [3569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolate_string_repeat1, 2), + [3571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolate_string_repeat1, 2), SHIFT_REPEAT(2381), + [3574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolate_string_repeat1, 2), SHIFT_REPEAT(2381), + [3577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolate_string_repeat1, 2), SHIFT_REPEAT(2510), + [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__plain_string_repeat2, 2), + [3582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__plain_string_repeat2, 2), SHIFT_REPEAT(2457), + [3585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__plain_string_repeat2, 2), SHIFT_REPEAT(2291), + [3588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__plain_string_repeat2, 2), SHIFT_REPEAT(2717), + [3591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__plain_string_repeat2, 2), SHIFT_REPEAT(2291), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [3606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolate_string_repeat3, 2), + [3608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolate_string_repeat3, 2), SHIFT_REPEAT(2375), + [3611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolate_string_repeat3, 2), SHIFT_REPEAT(2375), + [3614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolate_string_repeat3, 2), SHIFT_REPEAT(2569), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [3625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__juxt_argument_list_repeat1, 2), SHIFT_REPEAT(1112), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__plain_string_repeat2, 1), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__plain_string_repeat2, 1), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__plain_string_repeat2, 2), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__plain_string_repeat2, 3), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__plain_string_repeat2, 3), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generics, 3), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generics, 4), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_param, 3, .production_id = 43), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolate_string_repeat2, 2), + [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generics, 5), + [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 2), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), + [3742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1282), + [3745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2667), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [3754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_with_generics, 2), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 2), + [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 2), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [3768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4), + [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [3774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolate_string_repeat4, 1, .production_id = 4), + [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolate_string_repeat4, 1, .production_id = 4), + [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_builtintype, 1), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolate_string_repeat4, 1), + [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolate_string_repeat4, 1), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [3788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolate_string_repeat2, 1), + [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolate_string_repeat2, 1), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolate_string_repeat3, 1), + [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolate_string_repeat3, 1), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolate_string_repeat1, 1), + [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolate_string_repeat1, 1), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [3874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__plain_string_repeat1, 2), + [3876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__plain_string_repeat1, 2), SHIFT_REPEAT(2487), + [3879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__plain_string_repeat1, 2), SHIFT_REPEAT(2487), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [3944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), SHIFT_REPEAT(2602), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_parameters_repeat1, 2), + [3957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_parameters_repeat1, 2), SHIFT_REPEAT(1925), + [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_param, 1, .production_id = 2), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [3968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_parameters_repeat2, 2), SHIFT_REPEAT(560), + [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_parameters_repeat2, 2), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [3977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__plain_string_repeat1, 1), + [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__plain_string_repeat1, 1), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 1), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_list, 1), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [4047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 4), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 5), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 3), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [4449] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_groovy_doc, 4), + [4495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_groovy_doc, 5), + [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), + [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1), +}; + +#ifdef __cplusplus +extern "C" { +#endif +#ifdef _WIN32 +#define extern __declspec(dllexport) +#endif + +extern const TSLanguage *tree_sitter_groovy(void) { + static const TSLanguage language = { + .version = LANGUAGE_VERSION, + .symbol_count = SYMBOL_COUNT, + .alias_count = ALIAS_COUNT, + .token_count = TOKEN_COUNT, + .external_token_count = EXTERNAL_TOKEN_COUNT, + .state_count = STATE_COUNT, + .large_state_count = LARGE_STATE_COUNT, + .production_id_count = PRODUCTION_ID_COUNT, + .field_count = FIELD_COUNT, + .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, + .parse_table = &ts_parse_table[0][0], + .small_parse_table = ts_small_parse_table, + .small_parse_table_map = ts_small_parse_table_map, + .parse_actions = ts_parse_actions, + .symbol_names = ts_symbol_names, + .field_names = ts_field_names, + .field_map_slices = ts_field_map_slices, + .field_map_entries = ts_field_map_entries, + .symbol_metadata = ts_symbol_metadata, + .public_symbol_map = ts_symbol_map, + .alias_map = ts_non_terminal_alias_map, + .alias_sequences = &ts_alias_sequences[0][0], + .lex_modes = ts_lex_modes, + .lex_fn = ts_lex, + .keyword_lex_fn = ts_lex_keywords, + .keyword_capture_token = sym_identifier, + .primary_state_ids = ts_primary_state_ids, + }; + return &language; +} +#ifdef __cplusplus +} +#endif diff --git a/groovy/parser.h b/groovy/parser.h new file mode 100644 index 00000000..2b14ac10 --- /dev/null +++ b/groovy/parser.h @@ -0,0 +1,224 @@ +#ifndef TREE_SITTER_PARSER_H_ +#define TREE_SITTER_PARSER_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +#define ts_builtin_sym_error ((TSSymbol)-1) +#define ts_builtin_sym_end 0 +#define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 + +typedef uint16_t TSStateId; + +#ifndef TREE_SITTER_API_H_ +typedef uint16_t TSSymbol; +typedef uint16_t TSFieldId; +typedef struct TSLanguage TSLanguage; +#endif + +typedef struct { + TSFieldId field_id; + uint8_t child_index; + bool inherited; +} TSFieldMapEntry; + +typedef struct { + uint16_t index; + uint16_t length; +} TSFieldMapSlice; + +typedef struct { + bool visible; + bool named; + bool supertype; +} TSSymbolMetadata; + +typedef struct TSLexer TSLexer; + +struct TSLexer { + int32_t lookahead; + TSSymbol result_symbol; + void (*advance)(TSLexer *, bool); + void (*mark_end)(TSLexer *); + uint32_t (*get_column)(TSLexer *); + bool (*is_at_included_range_start)(const TSLexer *); + bool (*eof)(const TSLexer *); +}; + +typedef enum { + TSParseActionTypeShift, + TSParseActionTypeReduce, + TSParseActionTypeAccept, + TSParseActionTypeRecover, +} TSParseActionType; + +typedef union { + struct { + uint8_t type; + TSStateId state; + bool extra; + bool repetition; + } shift; + struct { + uint8_t type; + uint8_t child_count; + TSSymbol symbol; + int16_t dynamic_precedence; + uint16_t production_id; + } reduce; + uint8_t type; +} TSParseAction; + +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; +} TSLexMode; + +typedef union { + TSParseAction action; + struct { + uint8_t count; + bool reusable; + } entry; +} TSParseActionEntry; + +struct TSLanguage { + uint32_t version; + uint32_t symbol_count; + uint32_t alias_count; + uint32_t token_count; + uint32_t external_token_count; + uint32_t state_count; + uint32_t large_state_count; + uint32_t production_id_count; + uint32_t field_count; + uint16_t max_alias_sequence_length; + const uint16_t *parse_table; + const uint16_t *small_parse_table; + const uint32_t *small_parse_table_map; + const TSParseActionEntry *parse_actions; + const char * const *symbol_names; + const char * const *field_names; + const TSFieldMapSlice *field_map_slices; + const TSFieldMapEntry *field_map_entries; + const TSSymbolMetadata *symbol_metadata; + const TSSymbol *public_symbol_map; + const uint16_t *alias_map; + const TSSymbol *alias_sequences; + const TSLexMode *lex_modes; + bool (*lex_fn)(TSLexer *, TSStateId); + bool (*keyword_lex_fn)(TSLexer *, TSStateId); + TSSymbol keyword_capture_token; + struct { + const bool *states; + const TSSymbol *symbol_map; + void *(*create)(void); + void (*destroy)(void *); + bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist); + unsigned (*serialize)(void *, char *); + void (*deserialize)(void *, const char *, unsigned); + } external_scanner; + const TSStateId *primary_state_ids; +}; + +/* + * Lexer Macros + */ + +#define START_LEXER() \ + bool result = false; \ + bool skip = false; \ + bool eof = false; \ + int32_t lookahead; \ + goto start; \ + next_state: \ + lexer->advance(lexer, skip); \ + start: \ + skip = false; \ + lookahead = lexer->lookahead; + +#define ADVANCE(state_value) \ + { \ + state = state_value; \ + goto next_state; \ + } + +#define SKIP(state_value) \ + { \ + skip = true; \ + state = state_value; \ + goto next_state; \ + } + +#define ACCEPT_TOKEN(symbol_value) \ + result = true; \ + lexer->result_symbol = symbol_value; \ + lexer->mark_end(lexer); + +#define END_STATE() return result; + +/* + * Parse Table Macros + */ + +#define SMALL_STATE(id) id - LARGE_STATE_COUNT + +#define STATE(id) id + +#define ACTIONS(id) id + +#define SHIFT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = state_value \ + } \ + }} + +#define SHIFT_REPEAT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = state_value, \ + .repetition = true \ + } \ + }} + +#define SHIFT_EXTRA() \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .extra = true \ + } \ + }} + +#define REDUCE(symbol_val, child_count_val, ...) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_val, \ + .child_count = child_count_val, \ + __VA_ARGS__ \ + }, \ + }} + +#define RECOVER() \ + {{ \ + .type = TSParseActionTypeRecover \ + }} + +#define ACCEPT_INPUT() \ + {{ \ + .type = TSParseActionTypeAccept \ + }} + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_PARSER_H_ diff --git a/groovy/scanner.c b/groovy/scanner.c new file mode 100644 index 00000000..effe3077 --- /dev/null +++ b/groovy/scanner.c @@ -0,0 +1,15 @@ +#include "parser.h" +#include +#include + +enum TokenType { + BLOCK_COMMENT_START, + BLOCK_COMMENT_CONTENT, + BLOCK_COMMENT_END, + + STRING_DQ_START, + STRING_DQ_CONTENT, + STRING_DQ_END, +}; + +