#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 1880
#define LARGE_STATE_COUNT 2
#define SYMBOL_COUNT 206
#define ALIAS_COUNT 17
#define TOKEN_COUNT 106
#define EXTERNAL_TOKEN_COUNT 6
#define FIELD_COUNT 22
#define MAX_ALIAS_SEQUENCE_LENGTH 10
#define PRODUCTION_ID_COUNT 100

enum {
  anon_sym_ = 1,
  anon_sym_SEMI = 2,
  sym_shebang = 3,
  sym_nil = 4,
  anon_sym_true = 5,
  anon_sym_false = 6,
  sym_number = 7,
  sym_ellipsis = 8,
  anon_sym_DOT = 9,
  anon_sym_COLON = 10,
  anon_sym_end = 11,
  aux_sym_parameter_list_token1 = 12,
  anon_sym_COMMA = 13,
  anon_sym_or = 14,
  anon_sym_and = 15,
  anon_sym_LT = 16,
  anon_sym_LT_EQ = 17,
  anon_sym_EQ_EQ = 18,
  anon_sym_TILDE_EQ = 19,
  anon_sym_GT_EQ = 20,
  anon_sym_GT = 21,
  anon_sym_PIPE = 22,
  anon_sym_TILDE = 23,
  anon_sym_AMP = 24,
  anon_sym_LT_LT = 25,
  anon_sym_GT_GT = 26,
  anon_sym_PLUS = 27,
  anon_sym_DASH = 28,
  anon_sym_STAR = 29,
  anon_sym_SLASH = 30,
  anon_sym_SLASH_SLASH = 31,
  anon_sym_PERCENT = 32,
  anon_sym_DOT_DOT = 33,
  anon_sym_CARET = 34,
  anon_sym_not = 35,
  anon_sym_POUND = 36,
  anon_sym_local = 37,
  anon_sym_EQ = 38,
  anon_sym_LBRACK = 39,
  anon_sym_RBRACK = 40,
  anon_sym_return = 41,
  sym_break_statement = 42,
  anon_sym_do = 43,
  anon_sym_while = 44,
  anon_sym_repeat = 45,
  anon_sym_until = 46,
  anon_sym_if = 47,
  anon_sym_then = 48,
  anon_sym_elseif = 49,
  anon_sym_else = 50,
  anon_sym_for = 51,
  anon_sym_in = 52,
  sym_function_start = 53,
  aux_sym_function_statement_token1 = 54,
  anon_sym_LBRACE = 55,
  anon_sym_RBRACE = 56,
  sym__identifier = 57,
  sym_left_paren = 58,
  anon_sym_RPAREN = 59,
  aux_sym_documentation_tag_token1 = 60,
  aux_sym__documentation_tag_container_token1 = 61,
  aux_sym__documentation_config_container_token1 = 62,
  aux_sym__documentation_brief_container_token1 = 63,
  aux_sym__documentation_brief_container_token2 = 64,
  aux_sym__documentation_brief_container_token3 = 65,
  sym_documentation_command_content = 66,
  aux_sym_documentation_command_token1 = 67,
  aux_sym_documentation_command_token2 = 68,
  aux_sym_documentation_command_token3 = 69,
  sym_emmy_ignore = 70,
  sym_emmy_comment = 71,
  anon_sym_LBRACK_RBRACK = 72,
  anon_sym_table_LT = 73,
  anon_sym_QMARK = 74,
  anon_sym_function_LPAREN = 75,
  anon_sym_fun_LPAREN = 76,
  aux_sym_emmy_class_token1 = 77,
  aux_sym_emmy_class_token2 = 78,
  aux_sym_emmy_class_token3 = 79,
  aux_sym_emmy_class_token4 = 80,
  aux_sym_emmy_parameter_token1 = 81,
  aux_sym_emmy_parameter_token2 = 82,
  aux_sym_emmy_field_token1 = 83,
  anon_sym_public = 84,
  anon_sym_protected = 85,
  anon_sym_private = 86,
  aux_sym__multiline_emmy_string_token1 = 87,
  aux_sym__multiline_emmy_string_token2 = 88,
  aux_sym_emmy_return_token1 = 89,
  anon_sym_ATcomment = 90,
  aux_sym__emmy_eval_container_token1 = 91,
  aux_sym_emmy_typedecl_token1 = 92,
  aux_sym_emmy_note_token1 = 93,
  aux_sym_emmy_see_token1 = 94,
  aux_sym_emmy_todo_token1 = 95,
  aux_sym_emmy_usage_token1 = 96,
  aux_sym_emmy_varargs_token1 = 97,
  anon_sym_DASH_DASH = 98,
  aux_sym_comment_token1 = 99,
  sym__block_comment_start = 100,
  sym__block_comment_content = 101,
  sym__block_comment_end = 102,
  sym__string_start = 103,
  sym__string_content = 104,
  sym__string_end = 105,
  sym_program = 106,
  sym_string = 107,
  sym__statement = 108,
  sym__last_statement = 109,
  sym__chunk = 110,
  sym__block = 111,
  sym_boolean = 112,
  sym_function_name = 113,
  sym_function = 114,
  sym_parameter_list = 115,
  sym__expression_list = 116,
  sym_binary_operation = 117,
  sym_unary_operation = 118,
  sym_local = 119,
  sym_variable_declaration = 120,
  sym_variable_declarator = 121,
  sym__var = 122,
  sym__identifier_list = 123,
  sym_return_statement = 124,
  sym_do_statement = 125,
  sym_while_statement = 126,
  sym_repeat_statement = 127,
  sym_if_statement = 128,
  sym_for_statement = 129,
  sym_for_numeric = 130,
  sym_for_generic = 131,
  sym_function_statement = 132,
  sym_tableconstructor = 133,
  sym_fieldlist = 134,
  sym_field = 135,
  sym__named_field_expression = 136,
  sym__expression_field_expression = 137,
  sym__prefix_exp = 138,
  sym_function_call = 139,
  sym__args = 140,
  sym__parentheses_call = 141,
  sym__string_call = 142,
  sym__table_call = 143,
  sym__self_call = 144,
  sym_function_arguments = 145,
  sym_identifier = 146,
  sym_right_paren = 147,
  sym_left_bracket = 148,
  sym_right_bracket = 149,
  sym_documentation_tag = 150,
  sym__documentation_tag_container = 151,
  sym_documentation_config = 152,
  sym__documentation_config_container = 153,
  sym_documentation_brief = 154,
  sym__documentation_brief_container = 155,
  sym_documentation_command = 156,
  sym_emmy_type_array = 157,
  sym_emmy_type_key_value = 158,
  sym_emmy_type = 159,
  sym_emmy_type_dictionary = 160,
  sym_emmy_type_dictionary_value = 161,
  sym__bar = 162,
  sym__emmy_type = 163,
  sym_emmy_function = 164,
  sym_emmy_function_parameter = 165,
  sym_emmy_identifier = 166,
  sym_emmy_class = 167,
  sym_documentation_class = 168,
  sym_emmy_parameter = 169,
  sym_emmy_field = 170,
  sym_emmy_visibility = 171,
  sym__multiline_emmy_string = 172,
  sym_class_description = 173,
  sym_field_description = 174,
  sym_parameter_description = 175,
  sym_emmy_return_description = 176,
  sym_emmy_return = 177,
  sym_emmy_eval = 178,
  sym__emmy_eval_container = 179,
  sym_emmy_typedecl = 180,
  sym_emmy_note = 181,
  sym_emmy_see = 182,
  sym_emmy_todo = 183,
  sym_emmy_usage = 184,
  sym_emmy_varargs = 185,
  sym_emmy_documentation = 186,
  sym_comment = 187,
  aux_sym_program_repeat1 = 188,
  aux_sym__chunk_repeat1 = 189,
  aux_sym_function_name_repeat1 = 190,
  aux_sym_parameter_list_repeat1 = 191,
  aux_sym__expression_list_repeat1 = 192,
  aux_sym_variable_declaration_repeat1 = 193,
  aux_sym_variable_declaration_repeat2 = 194,
  aux_sym_if_statement_repeat1 = 195,
  aux_sym_fieldlist_repeat1 = 196,
  aux_sym__documentation_brief_container_repeat1 = 197,
  aux_sym_documentation_command_repeat1 = 198,
  aux_sym_emmy_type_dictionary_repeat1 = 199,
  aux_sym__emmy_type_repeat1 = 200,
  aux_sym_emmy_function_repeat1 = 201,
  aux_sym_emmy_identifier_repeat1 = 202,
  aux_sym_documentation_class_repeat1 = 203,
  aux_sym__multiline_emmy_string_repeat1 = 204,
  aux_sym_emmy_documentation_repeat1 = 205,
  alias_sym_do_end = 206,
  alias_sym_do_start = 207,
  alias_sym_documentation_usage = 208,
  alias_sym_emmy_literal = 209,
  alias_sym_for_end = 210,
  alias_sym_function_body = 211,
  alias_sym_function_body_paren = 212,
  alias_sym_function_call_paren = 213,
  alias_sym_function_end = 214,
  alias_sym_module_return_statement = 215,
  alias_sym_self_call_colon = 216,
  alias_sym_string_argument = 217,
  alias_sym_table_argument = 218,
  alias_sym_table_colon = 219,
  alias_sym_table_dot = 220,
  alias_sym_while_do = 221,
  alias_sym_while_end = 222,
};

static const char * const ts_symbol_names[] = {
  [ts_builtin_sym_end] = "end",
  [anon_sym_] = " ",
  [anon_sym_SEMI] = ";",
  [sym_shebang] = "shebang",
  [sym_nil] = "nil",
  [anon_sym_true] = "true",
  [anon_sym_false] = "false",
  [sym_number] = "number",
  [sym_ellipsis] = "ellipsis",
  [anon_sym_DOT] = ".",
  [anon_sym_COLON] = ":",
  [anon_sym_end] = "if_end",
  [aux_sym_parameter_list_token1] = "parameter_list_token1",
  [anon_sym_COMMA] = ",",
  [anon_sym_or] = "or",
  [anon_sym_and] = "and",
  [anon_sym_LT] = "<",
  [anon_sym_LT_EQ] = "<=",
  [anon_sym_EQ_EQ] = "==",
  [anon_sym_TILDE_EQ] = "~=",
  [anon_sym_GT_EQ] = ">=",
  [anon_sym_GT] = ">",
  [anon_sym_PIPE] = "|",
  [anon_sym_TILDE] = "~",
  [anon_sym_AMP] = "&",
  [anon_sym_LT_LT] = "<<",
  [anon_sym_GT_GT] = ">>",
  [anon_sym_PLUS] = "+",
  [anon_sym_DASH] = "-",
  [anon_sym_STAR] = "*",
  [anon_sym_SLASH] = "/",
  [anon_sym_SLASH_SLASH] = "//",
  [anon_sym_PERCENT] = "%",
  [anon_sym_DOT_DOT] = "..",
  [anon_sym_CARET] = "^",
  [anon_sym_not] = "not",
  [anon_sym_POUND] = "#",
  [anon_sym_local] = "local",
  [anon_sym_EQ] = "=",
  [anon_sym_LBRACK] = "[",
  [anon_sym_RBRACK] = "]",
  [anon_sym_return] = "return",
  [sym_break_statement] = "break_statement",
  [anon_sym_do] = "for_do",
  [anon_sym_while] = "while_start",
  [anon_sym_repeat] = "repeat_start",
  [anon_sym_until] = "repeat_until",
  [anon_sym_if] = "if_start",
  [anon_sym_then] = "if_then",
  [anon_sym_elseif] = "if_elseif",
  [anon_sym_else] = "if_else",
  [anon_sym_for] = "for_start",
  [anon_sym_in] = "for_in",
  [sym_function_start] = "function_start",
  [aux_sym_function_statement_token1] = "function_statement_token1",
  [anon_sym_LBRACE] = "{",
  [anon_sym_RBRACE] = "}",
  [sym__identifier] = "_identifier",
  [sym_left_paren] = "left_paren",
  [anon_sym_RPAREN] = ")",
  [aux_sym_documentation_tag_token1] = "documentation_tag_token1",
  [aux_sym__documentation_tag_container_token1] = "_documentation_tag_container_token1",
  [aux_sym__documentation_config_container_token1] = "_documentation_config_container_token1",
  [aux_sym__documentation_brief_container_token1] = "_documentation_brief_container_token1",
  [aux_sym__documentation_brief_container_token2] = "_documentation_brief_container_token2",
  [aux_sym__documentation_brief_container_token3] = "_documentation_brief_container_token3",
  [sym_documentation_command_content] = "documentation_command_content",
  [aux_sym_documentation_command_token1] = "documentation_command_token1",
  [aux_sym_documentation_command_token2] = "documentation_command_token2",
  [aux_sym_documentation_command_token3] = "documentation_command_token3",
  [sym_emmy_ignore] = "emmy_ignore",
  [sym_emmy_comment] = "emmy_header",
  [anon_sym_LBRACK_RBRACK] = "[]",
  [anon_sym_table_LT] = "table<",
  [anon_sym_QMARK] = "\?",
  [anon_sym_function_LPAREN] = "function(",
  [anon_sym_fun_LPAREN] = "fun(",
  [aux_sym_emmy_class_token1] = "emmy_class_token1",
  [aux_sym_emmy_class_token2] = "emmy_class_token2",
  [aux_sym_emmy_class_token3] = "emmy_class_token3",
  [aux_sym_emmy_class_token4] = "emmy_class_token4",
  [aux_sym_emmy_parameter_token1] = "emmy_parameter_token1",
  [aux_sym_emmy_parameter_token2] = "emmy_parameter_token2",
  [aux_sym_emmy_field_token1] = "emmy_field_token1",
  [anon_sym_public] = "public",
  [anon_sym_protected] = "protected",
  [anon_sym_private] = "private",
  [aux_sym__multiline_emmy_string_token1] = "_multiline_emmy_string_token1",
  [aux_sym__multiline_emmy_string_token2] = "_multiline_emmy_string_token2",
  [aux_sym_emmy_return_token1] = "emmy_return_token1",
  [anon_sym_ATcomment] = "@comment",
  [aux_sym__emmy_eval_container_token1] = "_emmy_eval_container_token1",
  [aux_sym_emmy_typedecl_token1] = "emmy_typedecl_token1",
  [aux_sym_emmy_note_token1] = "emmy_note_token1",
  [aux_sym_emmy_see_token1] = "emmy_see_token1",
  [aux_sym_emmy_todo_token1] = "emmy_todo_token1",
  [aux_sym_emmy_usage_token1] = "emmy_usage_token1",
  [aux_sym_emmy_varargs_token1] = "emmy_varargs_token1",
  [anon_sym_DASH_DASH] = "comment_start",
  [aux_sym_comment_token1] = "comment_content",
  [sym__block_comment_start] = "comment_start",
  [sym__block_comment_content] = "comment_content",
  [sym__block_comment_end] = "comment_end",
  [sym__string_start] = "string_start",
  [sym__string_content] = "string_content",
  [sym__string_end] = "string_end",
  [sym_program] = "program",
  [sym_string] = "string",
  [sym__statement] = "_statement",
  [sym__last_statement] = "_last_statement",
  [sym__chunk] = "_chunk",
  [sym__block] = "_block",
  [sym_boolean] = "boolean",
  [sym_function_name] = "function_name",
  [sym_function] = "function",
  [sym_parameter_list] = "parameter_list",
  [sym__expression_list] = "_expression_list",
  [sym_binary_operation] = "binary_operation",
  [sym_unary_operation] = "unary_operation",
  [sym_local] = "local",
  [sym_variable_declaration] = "variable_declaration",
  [sym_variable_declarator] = "variable_declarator",
  [sym__var] = "_var",
  [sym__identifier_list] = "identifier_list",
  [sym_return_statement] = "return_statement",
  [sym_do_statement] = "do_statement",
  [sym_while_statement] = "while_statement",
  [sym_repeat_statement] = "repeat_statement",
  [sym_if_statement] = "if_statement",
  [sym_for_statement] = "for_statement",
  [sym_for_numeric] = "for_numeric",
  [sym_for_generic] = "for_generic",
  [sym_function_statement] = "function_statement",
  [sym_tableconstructor] = "tableconstructor",
  [sym_fieldlist] = "fieldlist",
  [sym_field] = "field",
  [sym__named_field_expression] = "_named_field_expression",
  [sym__expression_field_expression] = "_expression_field_expression",
  [sym__prefix_exp] = "_prefix_exp",
  [sym_function_call] = "function_call",
  [sym__args] = "_args",
  [sym__parentheses_call] = "_parentheses_call",
  [sym__string_call] = "_string_call",
  [sym__table_call] = "_table_call",
  [sym__self_call] = "_self_call",
  [sym_function_arguments] = "function_arguments",
  [sym_identifier] = "identifier",
  [sym_right_paren] = "right_paren",
  [sym_left_bracket] = "field_left_bracket",
  [sym_right_bracket] = "field_right_bracket",
  [sym_documentation_tag] = "documentation_tag",
  [sym__documentation_tag_container] = "_documentation_tag_container",
  [sym_documentation_config] = "documentation_config",
  [sym__documentation_config_container] = "_documentation_config_container",
  [sym_documentation_brief] = "documentation_brief",
  [sym__documentation_brief_container] = "_documentation_brief_container",
  [sym_documentation_command] = "documentation_command",
  [sym_emmy_type_array] = "emmy_type_array",
  [sym_emmy_type_key_value] = "emmy_type_key_value",
  [sym_emmy_type] = "emmy_type",
  [sym_emmy_type_dictionary] = "emmy_type_dictionary",
  [sym_emmy_type_dictionary_value] = "emmy_type_dictionary_value",
  [sym__bar] = "_bar",
  [sym__emmy_type] = "_emmy_type",
  [sym_emmy_function] = "emmy_function",
  [sym_emmy_function_parameter] = "emmy_function_parameter",
  [sym_emmy_identifier] = "emmy_identifier",
  [sym_emmy_class] = "emmy_class",
  [sym_documentation_class] = "documentation_class",
  [sym_emmy_parameter] = "emmy_parameter",
  [sym_emmy_field] = "emmy_field",
  [sym_emmy_visibility] = "emmy_visibility",
  [sym__multiline_emmy_string] = "_multiline_emmy_string",
  [sym_class_description] = "class_description",
  [sym_field_description] = "field_description",
  [sym_parameter_description] = "parameter_description",
  [sym_emmy_return_description] = "emmy_return_description",
  [sym_emmy_return] = "emmy_return",
  [sym_emmy_eval] = "emmy_eval",
  [sym__emmy_eval_container] = "_emmy_eval_container",
  [sym_emmy_typedecl] = "emmy_typedecl",
  [sym_emmy_note] = "emmy_note",
  [sym_emmy_see] = "emmy_see",
  [sym_emmy_todo] = "emmy_todo",
  [sym_emmy_usage] = "emmy_usage",
  [sym_emmy_varargs] = "emmy_varargs",
  [sym_emmy_documentation] = "emmy_documentation",
  [sym_comment] = "comment",
  [aux_sym_program_repeat1] = "program_repeat1",
  [aux_sym__chunk_repeat1] = "_chunk_repeat1",
  [aux_sym_function_name_repeat1] = "function_name_repeat1",
  [aux_sym_parameter_list_repeat1] = "parameter_list_repeat1",
  [aux_sym__expression_list_repeat1] = "_expression_list_repeat1",
  [aux_sym_variable_declaration_repeat1] = "variable_declaration_repeat1",
  [aux_sym_variable_declaration_repeat2] = "variable_declaration_repeat2",
  [aux_sym_if_statement_repeat1] = "if_statement_repeat1",
  [aux_sym_fieldlist_repeat1] = "fieldlist_repeat1",
  [aux_sym__documentation_brief_container_repeat1] = "_documentation_brief_container_repeat1",
  [aux_sym_documentation_command_repeat1] = "documentation_command_repeat1",
  [aux_sym_emmy_type_dictionary_repeat1] = "emmy_type_dictionary_repeat1",
  [aux_sym__emmy_type_repeat1] = "_emmy_type_repeat1",
  [aux_sym_emmy_function_repeat1] = "emmy_function_repeat1",
  [aux_sym_emmy_identifier_repeat1] = "emmy_identifier_repeat1",
  [aux_sym_documentation_class_repeat1] = "documentation_class_repeat1",
  [aux_sym__multiline_emmy_string_repeat1] = "_multiline_emmy_string_repeat1",
  [aux_sym_emmy_documentation_repeat1] = "emmy_documentation_repeat1",
  [alias_sym_do_end] = "do_end",
  [alias_sym_do_start] = "do_start",
  [alias_sym_documentation_usage] = "documentation_usage",
  [alias_sym_emmy_literal] = "emmy_literal",
  [alias_sym_for_end] = "for_end",
  [alias_sym_function_body] = "function_body",
  [alias_sym_function_body_paren] = "function_body_paren",
  [alias_sym_function_call_paren] = "function_call_paren",
  [alias_sym_function_end] = "function_end",
  [alias_sym_module_return_statement] = "module_return_statement",
  [alias_sym_self_call_colon] = "self_call_colon",
  [alias_sym_string_argument] = "string_argument",
  [alias_sym_table_argument] = "table_argument",
  [alias_sym_table_colon] = "table_colon",
  [alias_sym_table_dot] = "table_dot",
  [alias_sym_while_do] = "while_do",
  [alias_sym_while_end] = "while_end",
};

static const TSSymbol ts_symbol_map[] = {
  [ts_builtin_sym_end] = ts_builtin_sym_end,
  [anon_sym_] = anon_sym_,
  [anon_sym_SEMI] = anon_sym_SEMI,
  [sym_shebang] = sym_shebang,
  [sym_nil] = sym_nil,
  [anon_sym_true] = anon_sym_true,
  [anon_sym_false] = anon_sym_false,
  [sym_number] = sym_number,
  [sym_ellipsis] = sym_ellipsis,
  [anon_sym_DOT] = anon_sym_DOT,
  [anon_sym_COLON] = anon_sym_COLON,
  [anon_sym_end] = anon_sym_end,
  [aux_sym_parameter_list_token1] = aux_sym_parameter_list_token1,
  [anon_sym_COMMA] = anon_sym_COMMA,
  [anon_sym_or] = anon_sym_or,
  [anon_sym_and] = anon_sym_and,
  [anon_sym_LT] = anon_sym_LT,
  [anon_sym_LT_EQ] = anon_sym_LT_EQ,
  [anon_sym_EQ_EQ] = anon_sym_EQ_EQ,
  [anon_sym_TILDE_EQ] = anon_sym_TILDE_EQ,
  [anon_sym_GT_EQ] = anon_sym_GT_EQ,
  [anon_sym_GT] = anon_sym_GT,
  [anon_sym_PIPE] = anon_sym_PIPE,
  [anon_sym_TILDE] = anon_sym_TILDE,
  [anon_sym_AMP] = anon_sym_AMP,
  [anon_sym_LT_LT] = anon_sym_LT_LT,
  [anon_sym_GT_GT] = anon_sym_GT_GT,
  [anon_sym_PLUS] = anon_sym_PLUS,
  [anon_sym_DASH] = anon_sym_DASH,
  [anon_sym_STAR] = anon_sym_STAR,
  [anon_sym_SLASH] = anon_sym_SLASH,
  [anon_sym_SLASH_SLASH] = anon_sym_SLASH_SLASH,
  [anon_sym_PERCENT] = anon_sym_PERCENT,
  [anon_sym_DOT_DOT] = anon_sym_DOT_DOT,
  [anon_sym_CARET] = anon_sym_CARET,
  [anon_sym_not] = anon_sym_not,
  [anon_sym_POUND] = anon_sym_POUND,
  [anon_sym_local] = anon_sym_local,
  [anon_sym_EQ] = anon_sym_EQ,
  [anon_sym_LBRACK] = anon_sym_LBRACK,
  [anon_sym_RBRACK] = anon_sym_RBRACK,
  [anon_sym_return] = anon_sym_return,
  [sym_break_statement] = sym_break_statement,
  [anon_sym_do] = anon_sym_do,
  [anon_sym_while] = anon_sym_while,
  [anon_sym_repeat] = anon_sym_repeat,
  [anon_sym_until] = anon_sym_until,
  [anon_sym_if] = anon_sym_if,
  [anon_sym_then] = anon_sym_then,
  [anon_sym_elseif] = anon_sym_elseif,
  [anon_sym_else] = anon_sym_else,
  [anon_sym_for] = anon_sym_for,
  [anon_sym_in] = anon_sym_in,
  [sym_function_start] = sym_function_start,
  [aux_sym_function_statement_token1] = aux_sym_function_statement_token1,
  [anon_sym_LBRACE] = anon_sym_LBRACE,
  [anon_sym_RBRACE] = anon_sym_RBRACE,
  [sym__identifier] = sym__identifier,
  [sym_left_paren] = sym_left_paren,
  [anon_sym_RPAREN] = anon_sym_RPAREN,
  [aux_sym_documentation_tag_token1] = aux_sym_documentation_tag_token1,
  [aux_sym__documentation_tag_container_token1] = aux_sym__documentation_tag_container_token1,
  [aux_sym__documentation_config_container_token1] = aux_sym__documentation_config_container_token1,
  [aux_sym__documentation_brief_container_token1] = aux_sym__documentation_brief_container_token1,
  [aux_sym__documentation_brief_container_token2] = aux_sym__documentation_brief_container_token2,
  [aux_sym__documentation_brief_container_token3] = aux_sym__documentation_brief_container_token3,
  [sym_documentation_command_content] = sym_documentation_command_content,
  [aux_sym_documentation_command_token1] = aux_sym_documentation_command_token1,
  [aux_sym_documentation_command_token2] = aux_sym_documentation_command_token2,
  [aux_sym_documentation_command_token3] = aux_sym_documentation_command_token3,
  [sym_emmy_ignore] = sym_emmy_ignore,
  [sym_emmy_comment] = sym_emmy_comment,
  [anon_sym_LBRACK_RBRACK] = anon_sym_LBRACK_RBRACK,
  [anon_sym_table_LT] = anon_sym_table_LT,
  [anon_sym_QMARK] = anon_sym_QMARK,
  [anon_sym_function_LPAREN] = anon_sym_function_LPAREN,
  [anon_sym_fun_LPAREN] = anon_sym_fun_LPAREN,
  [aux_sym_emmy_class_token1] = aux_sym_emmy_class_token1,
  [aux_sym_emmy_class_token2] = aux_sym_emmy_class_token2,
  [aux_sym_emmy_class_token3] = aux_sym_emmy_class_token3,
  [aux_sym_emmy_class_token4] = aux_sym_emmy_class_token4,
  [aux_sym_emmy_parameter_token1] = aux_sym_emmy_parameter_token1,
  [aux_sym_emmy_parameter_token2] = aux_sym_emmy_parameter_token2,
  [aux_sym_emmy_field_token1] = aux_sym_emmy_field_token1,
  [anon_sym_public] = anon_sym_public,
  [anon_sym_protected] = anon_sym_protected,
  [anon_sym_private] = anon_sym_private,
  [aux_sym__multiline_emmy_string_token1] = aux_sym__multiline_emmy_string_token1,
  [aux_sym__multiline_emmy_string_token2] = aux_sym__multiline_emmy_string_token2,
  [aux_sym_emmy_return_token1] = aux_sym_emmy_return_token1,
  [anon_sym_ATcomment] = anon_sym_ATcomment,
  [aux_sym__emmy_eval_container_token1] = aux_sym__emmy_eval_container_token1,
  [aux_sym_emmy_typedecl_token1] = aux_sym_emmy_typedecl_token1,
  [aux_sym_emmy_note_token1] = aux_sym_emmy_note_token1,
  [aux_sym_emmy_see_token1] = aux_sym_emmy_see_token1,
  [aux_sym_emmy_todo_token1] = aux_sym_emmy_todo_token1,
  [aux_sym_emmy_usage_token1] = aux_sym_emmy_usage_token1,
  [aux_sym_emmy_varargs_token1] = aux_sym_emmy_varargs_token1,
  [anon_sym_DASH_DASH] = sym__block_comment_start,
  [aux_sym_comment_token1] = sym__block_comment_content,
  [sym__block_comment_start] = sym__block_comment_start,
  [sym__block_comment_content] = sym__block_comment_content,
  [sym__block_comment_end] = sym__block_comment_end,
  [sym__string_start] = sym__string_start,
  [sym__string_content] = sym__string_content,
  [sym__string_end] = sym__string_end,
  [sym_program] = sym_program,
  [sym_string] = sym_string,
  [sym__statement] = sym__statement,
  [sym__last_statement] = sym__last_statement,
  [sym__chunk] = sym__chunk,
  [sym__block] = sym__block,
  [sym_boolean] = sym_boolean,
  [sym_function_name] = sym_function_name,
  [sym_function] = sym_function,
  [sym_parameter_list] = sym_parameter_list,
  [sym__expression_list] = sym__expression_list,
  [sym_binary_operation] = sym_binary_operation,
  [sym_unary_operation] = sym_unary_operation,
  [sym_local] = sym_local,
  [sym_variable_declaration] = sym_variable_declaration,
  [sym_variable_declarator] = sym_variable_declarator,
  [sym__var] = sym__var,
  [sym__identifier_list] = sym__identifier_list,
  [sym_return_statement] = sym_return_statement,
  [sym_do_statement] = sym_do_statement,
  [sym_while_statement] = sym_while_statement,
  [sym_repeat_statement] = sym_repeat_statement,
  [sym_if_statement] = sym_if_statement,
  [sym_for_statement] = sym_for_statement,
  [sym_for_numeric] = sym_for_numeric,
  [sym_for_generic] = sym_for_generic,
  [sym_function_statement] = sym_function_statement,
  [sym_tableconstructor] = sym_tableconstructor,
  [sym_fieldlist] = sym_fieldlist,
  [sym_field] = sym_field,
  [sym__named_field_expression] = sym__named_field_expression,
  [sym__expression_field_expression] = sym__expression_field_expression,
  [sym__prefix_exp] = sym__prefix_exp,
  [sym_function_call] = sym_function_call,
  [sym__args] = sym__args,
  [sym__parentheses_call] = sym__parentheses_call,
  [sym__string_call] = sym__string_call,
  [sym__table_call] = sym__table_call,
  [sym__self_call] = sym__self_call,
  [sym_function_arguments] = sym_function_arguments,
  [sym_identifier] = sym_identifier,
  [sym_right_paren] = sym_right_paren,
  [sym_left_bracket] = sym_left_bracket,
  [sym_right_bracket] = sym_right_bracket,
  [sym_documentation_tag] = sym_documentation_tag,
  [sym__documentation_tag_container] = sym__documentation_tag_container,
  [sym_documentation_config] = sym_documentation_config,
  [sym__documentation_config_container] = sym__documentation_config_container,
  [sym_documentation_brief] = sym_documentation_brief,
  [sym__documentation_brief_container] = sym__documentation_brief_container,
  [sym_documentation_command] = sym_documentation_command,
  [sym_emmy_type_array] = sym_emmy_type_array,
  [sym_emmy_type_key_value] = sym_emmy_type_key_value,
  [sym_emmy_type] = sym_emmy_type,
  [sym_emmy_type_dictionary] = sym_emmy_type_dictionary,
  [sym_emmy_type_dictionary_value] = sym_emmy_type_dictionary_value,
  [sym__bar] = sym__bar,
  [sym__emmy_type] = sym__emmy_type,
  [sym_emmy_function] = sym_emmy_function,
  [sym_emmy_function_parameter] = sym_emmy_function_parameter,
  [sym_emmy_identifier] = sym_emmy_identifier,
  [sym_emmy_class] = sym_emmy_class,
  [sym_documentation_class] = sym_documentation_class,
  [sym_emmy_parameter] = sym_emmy_parameter,
  [sym_emmy_field] = sym_emmy_field,
  [sym_emmy_visibility] = sym_emmy_visibility,
  [sym__multiline_emmy_string] = sym__multiline_emmy_string,
  [sym_class_description] = sym_class_description,
  [sym_field_description] = sym_field_description,
  [sym_parameter_description] = sym_parameter_description,
  [sym_emmy_return_description] = sym_emmy_return_description,
  [sym_emmy_return] = sym_emmy_return,
  [sym_emmy_eval] = sym_emmy_eval,
  [sym__emmy_eval_container] = sym__emmy_eval_container,
  [sym_emmy_typedecl] = sym_emmy_typedecl,
  [sym_emmy_note] = sym_emmy_note,
  [sym_emmy_see] = sym_emmy_see,
  [sym_emmy_todo] = sym_emmy_todo,
  [sym_emmy_usage] = sym_emmy_usage,
  [sym_emmy_varargs] = sym_emmy_varargs,
  [sym_emmy_documentation] = sym_emmy_documentation,
  [sym_comment] = sym_comment,
  [aux_sym_program_repeat1] = aux_sym_program_repeat1,
  [aux_sym__chunk_repeat1] = aux_sym__chunk_repeat1,
  [aux_sym_function_name_repeat1] = aux_sym_function_name_repeat1,
  [aux_sym_parameter_list_repeat1] = aux_sym_parameter_list_repeat1,
  [aux_sym__expression_list_repeat1] = aux_sym__expression_list_repeat1,
  [aux_sym_variable_declaration_repeat1] = aux_sym_variable_declaration_repeat1,
  [aux_sym_variable_declaration_repeat2] = aux_sym_variable_declaration_repeat2,
  [aux_sym_if_statement_repeat1] = aux_sym_if_statement_repeat1,
  [aux_sym_fieldlist_repeat1] = aux_sym_fieldlist_repeat1,
  [aux_sym__documentation_brief_container_repeat1] = aux_sym__documentation_brief_container_repeat1,
  [aux_sym_documentation_command_repeat1] = aux_sym_documentation_command_repeat1,
  [aux_sym_emmy_type_dictionary_repeat1] = aux_sym_emmy_type_dictionary_repeat1,
  [aux_sym__emmy_type_repeat1] = aux_sym__emmy_type_repeat1,
  [aux_sym_emmy_function_repeat1] = aux_sym_emmy_function_repeat1,
  [aux_sym_emmy_identifier_repeat1] = aux_sym_emmy_identifier_repeat1,
  [aux_sym_documentation_class_repeat1] = aux_sym_documentation_class_repeat1,
  [aux_sym__multiline_emmy_string_repeat1] = aux_sym__multiline_emmy_string_repeat1,
  [aux_sym_emmy_documentation_repeat1] = aux_sym_emmy_documentation_repeat1,
  [alias_sym_do_end] = alias_sym_do_end,
  [alias_sym_do_start] = alias_sym_do_start,
  [alias_sym_documentation_usage] = alias_sym_documentation_usage,
  [alias_sym_emmy_literal] = alias_sym_emmy_literal,
  [alias_sym_for_end] = alias_sym_for_end,
  [alias_sym_function_body] = alias_sym_function_body,
  [alias_sym_function_body_paren] = alias_sym_function_body_paren,
  [alias_sym_function_call_paren] = alias_sym_function_call_paren,
  [alias_sym_function_end] = alias_sym_function_end,
  [alias_sym_module_return_statement] = alias_sym_module_return_statement,
  [alias_sym_self_call_colon] = alias_sym_self_call_colon,
  [alias_sym_string_argument] = alias_sym_string_argument,
  [alias_sym_table_argument] = alias_sym_table_argument,
  [alias_sym_table_colon] = alias_sym_table_colon,
  [alias_sym_table_dot] = alias_sym_table_dot,
  [alias_sym_while_do] = alias_sym_while_do,
  [alias_sym_while_end] = alias_sym_while_end,
};

static const TSSymbolMetadata ts_symbol_metadata[] = {
  [ts_builtin_sym_end] = {
    .visible = false,
    .named = true,
  },
  [anon_sym_] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_SEMI] = {
    .visible = true,
    .named = false,
  },
  [sym_shebang] = {
    .visible = true,
    .named = true,
  },
  [sym_nil] = {
    .visible = true,
    .named = true,
  },
  [anon_sym_true] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_false] = {
    .visible = true,
    .named = false,
  },
  [sym_number] = {
    .visible = true,
    .named = true,
  },
  [sym_ellipsis] = {
    .visible = true,
    .named = true,
  },
  [anon_sym_DOT] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_COLON] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_end] = {
    .visible = true,
    .named = true,
  },
  [aux_sym_parameter_list_token1] = {
    .visible = false,
    .named = false,
  },
  [anon_sym_COMMA] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_or] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_and] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_LT] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_LT_EQ] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_EQ_EQ] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_TILDE_EQ] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_GT_EQ] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_GT] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_PIPE] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_TILDE] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_AMP] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_LT_LT] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_GT_GT] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_PLUS] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_DASH] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_STAR] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_SLASH] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_SLASH_SLASH] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_PERCENT] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_DOT_DOT] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_CARET] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_not] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_POUND] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_local] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_EQ] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_LBRACK] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_RBRACK] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_return] = {
    .visible = true,
    .named = false,
  },
  [sym_break_statement] = {
    .visible = true,
    .named = true,
  },
  [anon_sym_do] = {
    .visible = true,
    .named = true,
  },
  [anon_sym_while] = {
    .visible = true,
    .named = true,
  },
  [anon_sym_repeat] = {
    .visible = true,
    .named = true,
  },
  [anon_sym_until] = {
    .visible = true,
    .named = true,
  },
  [anon_sym_if] = {
    .visible = true,
    .named = true,
  },
  [anon_sym_then] = {
    .visible = true,
    .named = true,
  },
  [anon_sym_elseif] = {
    .visible = true,
    .named = true,
  },
  [anon_sym_else] = {
    .visible = true,
    .named = true,
  },
  [anon_sym_for] = {
    .visible = true,
    .named = true,
  },
  [anon_sym_in] = {
    .visible = true,
    .named = true,
  },
  [sym_function_start] = {
    .visible = true,
    .named = true,
  },
  [aux_sym_function_statement_token1] = {
    .visible = false,
    .named = false,
  },
  [anon_sym_LBRACE] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_RBRACE] = {
    .visible = true,
    .named = false,
  },
  [sym__identifier] = {
    .visible = false,
    .named = true,
  },
  [sym_left_paren] = {
    .visible = true,
    .named = true,
  },
  [anon_sym_RPAREN] = {
    .visible = true,
    .named = false,
  },
  [aux_sym_documentation_tag_token1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym__documentation_tag_container_token1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym__documentation_config_container_token1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym__documentation_brief_container_token1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym__documentation_brief_container_token2] = {
    .visible = false,
    .named = false,
  },
  [aux_sym__documentation_brief_container_token3] = {
    .visible = false,
    .named = false,
  },
  [sym_documentation_command_content] = {
    .visible = true,
    .named = true,
  },
  [aux_sym_documentation_command_token1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym_documentation_command_token2] = {
    .visible = false,
    .named = false,
  },
  [aux_sym_documentation_command_token3] = {
    .visible = false,
    .named = false,
  },
  [sym_emmy_ignore] = {
    .visible = true,
    .named = true,
  },
  [sym_emmy_comment] = {
    .visible = true,
    .named = true,
  },
  [anon_sym_LBRACK_RBRACK] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_table_LT] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_QMARK] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_function_LPAREN] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_fun_LPAREN] = {
    .visible = true,
    .named = false,
  },
  [aux_sym_emmy_class_token1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym_emmy_class_token2] = {
    .visible = false,
    .named = false,
  },
  [aux_sym_emmy_class_token3] = {
    .visible = false,
    .named = false,
  },
  [aux_sym_emmy_class_token4] = {
    .visible = false,
    .named = false,
  },
  [aux_sym_emmy_parameter_token1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym_emmy_parameter_token2] = {
    .visible = false,
    .named = false,
  },
  [aux_sym_emmy_field_token1] = {
    .visible = false,
    .named = false,
  },
  [anon_sym_public] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_protected] = {
    .visible = true,
    .named = false,
  },
  [anon_sym_private] = {
    .visible = true,
    .named = false,
  },
  [aux_sym__multiline_emmy_string_token1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym__multiline_emmy_string_token2] = {
    .visible = false,
    .named = false,
  },
  [aux_sym_emmy_return_token1] = {
    .visible = false,
    .named = false,
  },
  [anon_sym_ATcomment] = {
    .visible = true,
    .named = false,
  },
  [aux_sym__emmy_eval_container_token1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym_emmy_typedecl_token1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym_emmy_note_token1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym_emmy_see_token1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym_emmy_todo_token1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym_emmy_usage_token1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym_emmy_varargs_token1] = {
    .visible = false,
    .named = false,
  },
  [anon_sym_DASH_DASH] = {
    .visible = true,
    .named = false,
  },
  [aux_sym_comment_token1] = {
    .visible = true,
    .named = false,
  },
  [sym__block_comment_start] = {
    .visible = true,
    .named = false,
  },
  [sym__block_comment_content] = {
    .visible = true,
    .named = false,
  },
  [sym__block_comment_end] = {
    .visible = true,
    .named = false,
  },
  [sym__string_start] = {
    .visible = true,
    .named = false,
  },
  [sym__string_content] = {
    .visible = true,
    .named = false,
  },
  [sym__string_end] = {
    .visible = true,
    .named = false,
  },
  [sym_program] = {
    .visible = true,
    .named = true,
  },
  [sym_string] = {
    .visible = true,
    .named = true,
  },
  [sym__statement] = {
    .visible = false,
    .named = true,
  },
  [sym__last_statement] = {
    .visible = false,
    .named = true,
  },
  [sym__chunk] = {
    .visible = false,
    .named = true,
  },
  [sym__block] = {
    .visible = false,
    .named = true,
  },
  [sym_boolean] = {
    .visible = true,
    .named = true,
  },
  [sym_function_name] = {
    .visible = true,
    .named = true,
  },
  [sym_function] = {
    .visible = true,
    .named = true,
  },
  [sym_parameter_list] = {
    .visible = true,
    .named = true,
  },
  [sym__expression_list] = {
    .visible = false,
    .named = true,
  },
  [sym_binary_operation] = {
    .visible = true,
    .named = true,
  },
  [sym_unary_operation] = {
    .visible = true,
    .named = true,
  },
  [sym_local] = {
    .visible = true,
    .named = true,
  },
  [sym_variable_declaration] = {
    .visible = true,
    .named = true,
  },
  [sym_variable_declarator] = {
    .visible = true,
    .named = true,
  },
  [sym__var] = {
    .visible = false,
    .named = true,
  },
  [sym__identifier_list] = {
    .visible = true,
    .named = true,
  },
  [sym_return_statement] = {
    .visible = true,
    .named = true,
  },
  [sym_do_statement] = {
    .visible = true,
    .named = true,
  },
  [sym_while_statement] = {
    .visible = true,
    .named = true,
  },
  [sym_repeat_statement] = {
    .visible = true,
    .named = true,
  },
  [sym_if_statement] = {
    .visible = true,
    .named = true,
  },
  [sym_for_statement] = {
    .visible = true,
    .named = true,
  },
  [sym_for_numeric] = {
    .visible = true,
    .named = true,
  },
  [sym_for_generic] = {
    .visible = true,
    .named = true,
  },
  [sym_function_statement] = {
    .visible = true,
    .named = true,
  },
  [sym_tableconstructor] = {
    .visible = true,
    .named = true,
  },
  [sym_fieldlist] = {
    .visible = true,
    .named = true,
  },
  [sym_field] = {
    .visible = true,
    .named = true,
  },
  [sym__named_field_expression] = {
    .visible = false,
    .named = true,
  },
  [sym__expression_field_expression] = {
    .visible = false,
    .named = true,
  },
  [sym__prefix_exp] = {
    .visible = false,
    .named = true,
  },
  [sym_function_call] = {
    .visible = true,
    .named = true,
  },
  [sym__args] = {
    .visible = false,
    .named = true,
  },
  [sym__parentheses_call] = {
    .visible = false,
    .named = true,
  },
  [sym__string_call] = {
    .visible = false,
    .named = true,
  },
  [sym__table_call] = {
    .visible = false,
    .named = true,
  },
  [sym__self_call] = {
    .visible = false,
    .named = true,
  },
  [sym_function_arguments] = {
    .visible = true,
    .named = true,
  },
  [sym_identifier] = {
    .visible = true,
    .named = true,
  },
  [sym_right_paren] = {
    .visible = true,
    .named = true,
  },
  [sym_left_bracket] = {
    .visible = true,
    .named = true,
  },
  [sym_right_bracket] = {
    .visible = true,
    .named = true,
  },
  [sym_documentation_tag] = {
    .visible = true,
    .named = true,
  },
  [sym__documentation_tag_container] = {
    .visible = false,
    .named = true,
  },
  [sym_documentation_config] = {
    .visible = true,
    .named = true,
  },
  [sym__documentation_config_container] = {
    .visible = false,
    .named = true,
  },
  [sym_documentation_brief] = {
    .visible = true,
    .named = true,
  },
  [sym__documentation_brief_container] = {
    .visible = false,
    .named = true,
  },
  [sym_documentation_command] = {
    .visible = true,
    .named = true,
  },
  [sym_emmy_type_array] = {
    .visible = true,
    .named = true,
  },
  [sym_emmy_type_key_value] = {
    .visible = true,
    .named = true,
  },
  [sym_emmy_type] = {
    .visible = true,
    .named = true,
  },
  [sym_emmy_type_dictionary] = {
    .visible = true,
    .named = true,
  },
  [sym_emmy_type_dictionary_value] = {
    .visible = true,
    .named = true,
  },
  [sym__bar] = {
    .visible = false,
    .named = true,
  },
  [sym__emmy_type] = {
    .visible = false,
    .named = true,
  },
  [sym_emmy_function] = {
    .visible = true,
    .named = true,
  },
  [sym_emmy_function_parameter] = {
    .visible = true,
    .named = true,
  },
  [sym_emmy_identifier] = {
    .visible = true,
    .named = true,
  },
  [sym_emmy_class] = {
    .visible = true,
    .named = true,
  },
  [sym_documentation_class] = {
    .visible = true,
    .named = true,
  },
  [sym_emmy_parameter] = {
    .visible = true,
    .named = true,
  },
  [sym_emmy_field] = {
    .visible = true,
    .named = true,
  },
  [sym_emmy_visibility] = {
    .visible = true,
    .named = true,
  },
  [sym__multiline_emmy_string] = {
    .visible = false,
    .named = true,
  },
  [sym_class_description] = {
    .visible = true,
    .named = true,
  },
  [sym_field_description] = {
    .visible = true,
    .named = true,
  },
  [sym_parameter_description] = {
    .visible = true,
    .named = true,
  },
  [sym_emmy_return_description] = {
    .visible = true,
    .named = true,
  },
  [sym_emmy_return] = {
    .visible = true,
    .named = true,
  },
  [sym_emmy_eval] = {
    .visible = true,
    .named = true,
  },
  [sym__emmy_eval_container] = {
    .visible = false,
    .named = true,
  },
  [sym_emmy_typedecl] = {
    .visible = true,
    .named = true,
  },
  [sym_emmy_note] = {
    .visible = true,
    .named = true,
  },
  [sym_emmy_see] = {
    .visible = true,
    .named = true,
  },
  [sym_emmy_todo] = {
    .visible = true,
    .named = true,
  },
  [sym_emmy_usage] = {
    .visible = true,
    .named = true,
  },
  [sym_emmy_varargs] = {
    .visible = true,
    .named = true,
  },
  [sym_emmy_documentation] = {
    .visible = true,
    .named = true,
  },
  [sym_comment] = {
    .visible = true,
    .named = true,
  },
  [aux_sym_program_repeat1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym__chunk_repeat1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym_function_name_repeat1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym_parameter_list_repeat1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym__expression_list_repeat1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym_variable_declaration_repeat1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym_variable_declaration_repeat2] = {
    .visible = false,
    .named = false,
  },
  [aux_sym_if_statement_repeat1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym_fieldlist_repeat1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym__documentation_brief_container_repeat1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym_documentation_command_repeat1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym_emmy_type_dictionary_repeat1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym__emmy_type_repeat1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym_emmy_function_repeat1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym_emmy_identifier_repeat1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym_documentation_class_repeat1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym__multiline_emmy_string_repeat1] = {
    .visible = false,
    .named = false,
  },
  [aux_sym_emmy_documentation_repeat1] = {
    .visible = false,
    .named = false,
  },
  [alias_sym_do_end] = {
    .visible = true,
    .named = true,
  },
  [alias_sym_do_start] = {
    .visible = true,
    .named = true,
  },
  [alias_sym_documentation_usage] = {
    .visible = true,
    .named = true,
  },
  [alias_sym_emmy_literal] = {
    .visible = true,
    .named = true,
  },
  [alias_sym_for_end] = {
    .visible = true,
    .named = true,
  },
  [alias_sym_function_body] = {
    .visible = true,
    .named = true,
  },
  [alias_sym_function_body_paren] = {
    .visible = true,
    .named = true,
  },
  [alias_sym_function_call_paren] = {
    .visible = true,
    .named = true,
  },
  [alias_sym_function_end] = {
    .visible = true,
    .named = true,
  },
  [alias_sym_module_return_statement] = {
    .visible = true,
    .named = true,
  },
  [alias_sym_self_call_colon] = {
    .visible = true,
    .named = true,
  },
  [alias_sym_string_argument] = {
    .visible = true,
    .named = true,
  },
  [alias_sym_table_argument] = {
    .visible = true,
    .named = true,
  },
  [alias_sym_table_colon] = {
    .visible = true,
    .named = true,
  },
  [alias_sym_table_dot] = {
    .visible = true,
    .named = true,
  },
  [alias_sym_while_do] = {
    .visible = true,
    .named = true,
  },
  [alias_sym_while_end] = {
    .visible = true,
    .named = true,
  },
};

enum {
  field_args = 1,
  field_content = 2,
  field_description = 3,
  field_documentation = 4,
  field_end = 5,
  field_expression_list = 6,
  field_field_left_bracket = 7,
  field_field_right_bracket = 8,
  field_finish = 9,
  field_identifier_list = 10,
  field_key = 11,
  field_name = 12,
  field_nullable = 13,
  field_parent = 14,
  field_prefix = 15,
  field_start = 16,
  field_step = 17,
  field_type = 18,
  field_usage = 19,
  field_value = 20,
  field_var = 21,
  field_visibility = 22,
};

static const char * const ts_field_names[] = {
  [0] = NULL,
  [field_args] = "args",
  [field_content] = "content",
  [field_description] = "description",
  [field_documentation] = "documentation",
  [field_end] = "end",
  [field_expression_list] = "expression_list",
  [field_field_left_bracket] = "field_left_bracket",
  [field_field_right_bracket] = "field_right_bracket",
  [field_finish] = "finish",
  [field_identifier_list] = "identifier_list",
  [field_key] = "key",
  [field_name] = "name",
  [field_nullable] = "nullable",
  [field_parent] = "parent",
  [field_prefix] = "prefix",
  [field_start] = "start",
  [field_step] = "step",
  [field_type] = "type",
  [field_usage] = "usage",
  [field_value] = "value",
  [field_var] = "var",
  [field_visibility] = "visibility",
};

static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = {
  [1] = {.index = 0, .length = 1},
  [3] = {.index = 1, .length = 2},
  [4] = {.index = 3, .length = 2},
  [8] = {.index = 5, .length = 1},
  [9] = {.index = 6, .length = 1},
  [10] = {.index = 7, .length = 2},
  [11] = {.index = 9, .length = 1},
  [12] = {.index = 9, .length = 1},
  [13] = {.index = 10, .length = 2},
  [14] = {.index = 12, .length = 1},
  [15] = {.index = 13, .length = 2},
  [16] = {.index = 15, .length = 3},
  [18] = {.index = 18, .length = 1},
  [19] = {.index = 19, .length = 2},
  [20] = {.index = 21, .length = 4},
  [22] = {.index = 25, .length = 1},
  [23] = {.index = 25, .length = 1},
  [24] = {.index = 26, .length = 1},
  [25] = {.index = 27, .length = 2},
  [26] = {.index = 29, .length = 2},
  [27] = {.index = 31, .length = 2},
  [29] = {.index = 33, .length = 2},
  [30] = {.index = 35, .length = 3},
  [32] = {.index = 38, .length = 2},
  [34] = {.index = 40, .length = 2},
  [35] = {.index = 42, .length = 2},
  [36] = {.index = 44, .length = 3},
  [37] = {.index = 47, .length = 3},
  [38] = {.index = 50, .length = 1},
  [39] = {.index = 51, .length = 1},
  [40] = {.index = 52, .length = 3},
  [41] = {.index = 55, .length = 3},
  [47] = {.index = 58, .length = 1},
  [48] = {.index = 59, .length = 2},
  [49] = {.index = 61, .length = 2},
  [50] = {.index = 63, .length = 2},
  [51] = {.index = 65, .length = 2},
  [52] = {.index = 67, .length = 2},
  [53] = {.index = 69, .length = 3},
  [54] = {.index = 72, .length = 3},
  [55] = {.index = 75, .length = 1},
  [56] = {.index = 76, .length = 2},
  [57] = {.index = 78, .length = 4},
  [58] = {.index = 82, .length = 3},
  [59] = {.index = 85, .length = 4},
  [60] = {.index = 89, .length = 4},
  [61] = {.index = 93, .length = 1},
  [64] = {.index = 94, .length = 3},
  [65] = {.index = 93, .length = 1},
  [67] = {.index = 97, .length = 2},
  [68] = {.index = 99, .length = 2},
  [69] = {.index = 101, .length = 4},
  [70] = {.index = 105, .length = 4},
  [71] = {.index = 109, .length = 4},
  [72] = {.index = 113, .length = 5},
  [73] = {.index = 93, .length = 1},
  [74] = {.index = 93, .length = 1},
  [76] = {.index = 118, .length = 4},
  [77] = {.index = 93, .length = 1},
  [78] = {.index = 93, .length = 1},
  [79] = {.index = 122, .length = 2},
  [80] = {.index = 124, .length = 4},
  [81] = {.index = 128, .length = 3},
  [82] = {.index = 131, .length = 2},
  [83] = {.index = 131, .length = 2},
  [84] = {.index = 133, .length = 5},
  [85] = {.index = 93, .length = 1},
  [86] = {.index = 138, .length = 4},
  [87] = {.index = 93, .length = 1},
  [88] = {.index = 142, .length = 3},
  [89] = {.index = 145, .length = 3},
  [90] = {.index = 131, .length = 2},
  [91] = {.index = 131, .length = 2},
  [92] = {.index = 131, .length = 2},
  [93] = {.index = 131, .length = 2},
  [94] = {.index = 148, .length = 3},
  [95] = {.index = 151, .length = 3},
  [96] = {.index = 131, .length = 2},
  [97] = {.index = 131, .length = 2},
  [98] = {.index = 154, .length = 4},
  [99] = {.index = 158, .length = 4},
};

static const TSFieldMapEntry ts_field_map_entries[] = {
  [0] =
    {field_name, 0},
  [1] =
    {field_end, 1},
    {field_start, 0},
  [3] =
    {field_content, 1},
    {field_start, 0},
  [5] =
    {field_type, 1},
  [6] =
    {field_name, 1},
  [7] =
    {field_name, 0},
    {field_name, 1, .inherited = true},
  [9] =
    {field_args, 0},
  [10] =
    {field_args, 1, .inherited = true},
    {field_prefix, 0},
  [12] =
    {field_args, 0, .inherited = true},
  [13] =
    {field_documentation, 0},
    {field_name, 1},
  [15] =
    {field_content, 1},
    {field_end, 2},
    {field_start, 0},
  [18] =
    {field_value, 0},
  [19] =
    {field_name, 0, .inherited = true},
    {field_value, 0, .inherited = true},
  [21] =
    {field_field_left_bracket, 0, .inherited = true},
    {field_field_right_bracket, 0, .inherited = true},
    {field_key, 0, .inherited = true},
    {field_value, 0, .inherited = true},
  [25] =
    {field_nullable, 1},
  [26] =
    {field_type, 0},
  [27] =
    {field_name, 1},
    {field_name, 2, .inherited = true},
  [29] =
    {field_name, 0},
    {field_value, 2},
  [31] =
    {field_name, 0, .inherited = true},
    {field_name, 1, .inherited = true},
  [33] =
    {field_documentation, 0},
    {field_name, 2},
  [35] =
    {field_documentation, 0},
    {field_name, 1},
    {field_name, 2, .inherited = true},
  [38] =
    {field_expression_list, 2},
    {field_identifier_list, 0},
  [40] =
    {field_description, 3},
    {field_type, 1},
  [42] =
    {field_name, 1},
    {field_value, 3},
  [44] =
    {field_name, 0},
    {field_value, 2},
    {field_value, 3, .inherited = true},
  [47] =
    {field_name, 0},
    {field_name, 1, .inherited = true},
    {field_value, 3},
  [50] =
    {field_args, 2, .inherited = true},
  [51] =
    {field_args, 1},
  [52] =
    {field_documentation, 0},
    {field_name, 2},
    {field_name, 3, .inherited = true},
  [55] =
    {field_documentation, 0},
    {field_name, 1},
    {field_value, 3},
  [58] =
    {field_documentation, 1},
  [59] =
    {field_documentation, 3, .inherited = true},
    {field_usage, 1},
  [61] =
    {field_documentation, 0, .inherited = true},
    {field_documentation, 1, .inherited = true},
  [63] =
    {field_key, 0},
    {field_value, 2},
  [65] =
    {field_name, 0},
    {field_type, 2},
  [67] =
    {field_parent, 3},
    {field_type, 1},
  [69] =
    {field_name, 1},
    {field_value, 3},
    {field_value, 4, .inherited = true},
  [72] =
    {field_name, 1},
    {field_name, 2, .inherited = true},
    {field_value, 4},
  [75] =
    {field_value, 1},
  [76] =
    {field_value, 0, .inherited = true},
    {field_value, 1, .inherited = true},
  [78] =
    {field_name, 0},
    {field_name, 1, .inherited = true},
    {field_value, 3},
    {field_value, 4, .inherited = true},
  [82] =
    {field_documentation, 0},
    {field_name, 2},
    {field_value, 4},
  [85] =
    {field_documentation, 0},
    {field_name, 1},
    {field_value, 3},
    {field_value, 4, .inherited = true},
  [89] =
    {field_documentation, 0},
    {field_name, 1},
    {field_name, 2, .inherited = true},
    {field_value, 4},
  [93] =
    {field_name, 2},
  [94] =
    {field_finish, 4},
    {field_start, 2},
    {field_var, 0},
  [97] =
    {field_name, 1},
    {field_type, 3},
  [99] =
    {field_key, 1},
    {field_value, 3},
  [101] =
    {field_name, 1},
    {field_name, 2, .inherited = true},
    {field_value, 4},
    {field_value, 5, .inherited = true},
  [105] =
    {field_documentation, 0},
    {field_name, 2},
    {field_value, 4},
    {field_value, 5, .inherited = true},
  [109] =
    {field_documentation, 0},
    {field_name, 2},
    {field_name, 3, .inherited = true},
    {field_value, 5},
  [113] =
    {field_documentation, 0},
    {field_name, 1},
    {field_name, 2, .inherited = true},
    {field_value, 4},
    {field_value, 5, .inherited = true},
  [118] =
    {field_field_left_bracket, 0},
    {field_field_right_bracket, 2},
    {field_key, 1},
    {field_value, 4},
  [122] =
    {field_name, 1},
    {field_type, 4},
  [124] =
    {field_key, 0},
    {field_key, 1},
    {field_key, 2},
    {field_value, 4},
  [128] =
    {field_description, 5},
    {field_parent, 3},
    {field_type, 1},
  [131] =
    {field_documentation, 0},
    {field_name, 3},
  [133] =
    {field_documentation, 0},
    {field_name, 2},
    {field_name, 3, .inherited = true},
    {field_value, 5},
    {field_value, 6, .inherited = true},
  [138] =
    {field_finish, 4},
    {field_start, 2},
    {field_step, 6},
    {field_var, 0},
  [142] =
    {field_description, 5},
    {field_name, 1},
    {field_type, 3},
  [145] =
    {field_name, 3},
    {field_type, 5},
    {field_visibility, 1},
  [148] =
    {field_description, 6},
    {field_name, 1},
    {field_type, 4},
  [151] =
    {field_name, 3},
    {field_type, 6},
    {field_visibility, 1},
  [154] =
    {field_description, 7},
    {field_name, 3},
    {field_type, 5},
    {field_visibility, 1},
  [158] =
    {field_description, 8},
    {field_name, 3},
    {field_type, 6},
    {field_visibility, 1},
};

static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = {
  [0] = {0},
  [2] = {
    [0] = alias_sym_module_return_statement,
  },
  [5] = {
    [1] = alias_sym_module_return_statement,
  },
  [6] = {
    [0] = alias_sym_do_start,
    [1] = alias_sym_do_end,
  },
  [7] = {
    [0] = alias_sym_emmy_literal,
  },
  [11] = {
    [0] = alias_sym_string_argument,
  },
  [12] = {
    [0] = alias_sym_table_argument,
  },
  [17] = {
    [2] = alias_sym_module_return_statement,
  },
  [21] = {
    [0] = alias_sym_do_start,
    [2] = alias_sym_do_end,
  },
  [22] = {
    [0] = alias_sym_emmy_literal,
  },
  [28] = {
    [0] = alias_sym_function_call_paren,
    [1] = alias_sym_function_call_paren,
  },
  [31] = {
    [2] = alias_sym_while_do,
    [3] = alias_sym_while_end,
  },
  [33] = {
    [3] = alias_sym_for_end,
  },
  [38] = {
    [0] = alias_sym_self_call_colon,
  },
  [39] = {
    [0] = alias_sym_function_call_paren,
    [2] = alias_sym_function_call_paren,
  },
  [42] = {
    [1] = alias_sym_function_body_paren,
    [2] = alias_sym_function_body_paren,
    [3] = alias_sym_function_end,
  },
  [43] = {
    [2] = alias_sym_while_do,
    [4] = alias_sym_while_end,
  },
  [44] = {
    [4] = alias_sym_for_end,
  },
  [45] = {
    [0] = alias_sym_table_dot,
  },
  [46] = {
    [1] = alias_sym_table_colon,
  },
  [48] = {
    [1] = alias_sym_documentation_usage,
  },
  [61] = {
    [0] = sym_local,
    [3] = alias_sym_function_body_paren,
    [4] = alias_sym_function_body_paren,
    [5] = alias_sym_function_end,
  },
  [62] = {
    [1] = alias_sym_function_body_paren,
    [3] = alias_sym_function_body_paren,
    [4] = alias_sym_function_end,
  },
  [63] = {
    [1] = alias_sym_function_body_paren,
    [2] = alias_sym_function_body_paren,
    [3] = alias_sym_function_body,
    [4] = alias_sym_function_end,
  },
  [65] = {
    [3] = alias_sym_function_body_paren,
    [4] = alias_sym_function_body_paren,
    [5] = alias_sym_function_end,
  },
  [66] = {
    [2] = alias_sym_table_colon,
  },
  [73] = {
    [0] = sym_local,
    [3] = alias_sym_function_body_paren,
    [5] = alias_sym_function_body_paren,
    [6] = alias_sym_function_end,
  },
  [74] = {
    [0] = sym_local,
    [3] = alias_sym_function_body_paren,
    [4] = alias_sym_function_body_paren,
    [5] = alias_sym_function_body,
    [6] = alias_sym_function_end,
  },
  [75] = {
    [1] = alias_sym_function_body_paren,
    [3] = alias_sym_function_body_paren,
    [4] = alias_sym_function_body,
    [5] = alias_sym_function_end,
  },
  [77] = {
    [3] = alias_sym_function_body_paren,
    [5] = alias_sym_function_body_paren,
    [6] = alias_sym_function_end,
  },
  [78] = {
    [3] = alias_sym_function_body_paren,
    [4] = alias_sym_function_body_paren,
    [5] = alias_sym_function_body,
    [6] = alias_sym_function_end,
  },
  [82] = {
    [1] = sym_local,
    [4] = alias_sym_function_body_paren,
    [5] = alias_sym_function_body_paren,
    [6] = alias_sym_function_end,
  },
  [83] = {
    [4] = alias_sym_function_body_paren,
    [5] = alias_sym_function_body_paren,
    [6] = alias_sym_function_end,
  },
  [85] = {
    [0] = sym_local,
    [3] = alias_sym_function_body_paren,
    [5] = alias_sym_function_body_paren,
    [6] = alias_sym_function_body,
    [7] = alias_sym_function_end,
  },
  [87] = {
    [3] = alias_sym_function_body_paren,
    [5] = alias_sym_function_body_paren,
    [6] = alias_sym_function_body,
    [7] = alias_sym_function_end,
  },
  [90] = {
    [1] = sym_local,
    [4] = alias_sym_function_body_paren,
    [6] = alias_sym_function_body_paren,
    [7] = alias_sym_function_end,
  },
  [91] = {
    [1] = sym_local,
    [4] = alias_sym_function_body_paren,
    [5] = alias_sym_function_body_paren,
    [6] = alias_sym_function_body,
    [7] = alias_sym_function_end,
  },
  [92] = {
    [4] = alias_sym_function_body_paren,
    [6] = alias_sym_function_body_paren,
    [7] = alias_sym_function_end,
  },
  [93] = {
    [4] = alias_sym_function_body_paren,
    [5] = alias_sym_function_body_paren,
    [6] = alias_sym_function_body,
    [7] = alias_sym_function_end,
  },
  [96] = {
    [1] = sym_local,
    [4] = alias_sym_function_body_paren,
    [6] = alias_sym_function_body_paren,
    [7] = alias_sym_function_body,
    [8] = alias_sym_function_end,
  },
  [97] = {
    [4] = alias_sym_function_body_paren,
    [6] = alias_sym_function_body_paren,
    [7] = alias_sym_function_body,
    [8] = alias_sym_function_end,
  },
};

static const uint16_t ts_non_terminal_alias_map[] = {
  sym_string, 3,
    sym_string,
    alias_sym_emmy_literal,
    alias_sym_string_argument,
  sym__block, 2,
    sym__block,
    alias_sym_function_body,
  sym_return_statement, 2,
    sym_return_statement,
    alias_sym_module_return_statement,
  sym_tableconstructor, 2,
    sym_tableconstructor,
    alias_sym_table_argument,
  sym_right_paren, 3,
    sym_right_paren,
    alias_sym_function_body_paren,
    alias_sym_function_call_paren,
  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] = 9,
  [10] = 10,
  [11] = 11,
  [12] = 12,
  [13] = 13,
  [14] = 14,
  [15] = 9,
  [16] = 7,
  [17] = 6,
  [18] = 3,
  [19] = 2,
  [20] = 8,
  [21] = 4,
  [22] = 22,
  [23] = 5,
  [24] = 10,
  [25] = 11,
  [26] = 12,
  [27] = 6,
  [28] = 9,
  [29] = 5,
  [30] = 13,
  [31] = 2,
  [32] = 7,
  [33] = 9,
  [34] = 14,
  [35] = 8,
  [36] = 6,
  [37] = 2,
  [38] = 3,
  [39] = 8,
  [40] = 3,
  [41] = 4,
  [42] = 5,
  [43] = 4,
  [44] = 7,
  [45] = 10,
  [46] = 12,
  [47] = 12,
  [48] = 11,
  [49] = 10,
  [50] = 11,
  [51] = 10,
  [52] = 13,
  [53] = 53,
  [54] = 13,
  [55] = 12,
  [56] = 14,
  [57] = 14,
  [58] = 58,
  [59] = 59,
  [60] = 60,
  [61] = 61,
  [62] = 62,
  [63] = 63,
  [64] = 64,
  [65] = 65,
  [66] = 66,
  [67] = 67,
  [68] = 68,
  [69] = 69,
  [70] = 70,
  [71] = 71,
  [72] = 72,
  [73] = 73,
  [74] = 74,
  [75] = 75,
  [76] = 76,
  [77] = 77,
  [78] = 78,
  [79] = 10,
  [80] = 12,
  [81] = 77,
  [82] = 82,
  [83] = 69,
  [84] = 84,
  [85] = 76,
  [86] = 68,
  [87] = 58,
  [88] = 78,
  [89] = 74,
  [90] = 62,
  [91] = 59,
  [92] = 75,
  [93] = 70,
  [94] = 71,
  [95] = 64,
  [96] = 67,
  [97] = 72,
  [98] = 66,
  [99] = 63,
  [100] = 65,
  [101] = 101,
  [102] = 61,
  [103] = 73,
  [104] = 60,
  [105] = 105,
  [106] = 106,
  [107] = 107,
  [108] = 108,
  [109] = 109,
  [110] = 110,
  [111] = 111,
  [112] = 112,
  [113] = 113,
  [114] = 114,
  [115] = 115,
  [116] = 116,
  [117] = 117,
  [118] = 118,
  [119] = 119,
  [120] = 120,
  [121] = 121,
  [122] = 122,
  [123] = 123,
  [124] = 124,
  [125] = 125,
  [126] = 126,
  [127] = 127,
  [128] = 128,
  [129] = 129,
  [130] = 130,
  [131] = 131,
  [132] = 132,
  [133] = 133,
  [134] = 134,
  [135] = 135,
  [136] = 136,
  [137] = 137,
  [138] = 138,
  [139] = 139,
  [140] = 140,
  [141] = 141,
  [142] = 142,
  [143] = 143,
  [144] = 144,
  [145] = 145,
  [146] = 73,
  [147] = 72,
  [148] = 75,
  [149] = 76,
  [150] = 77,
  [151] = 69,
  [152] = 71,
  [153] = 153,
  [154] = 64,
  [155] = 63,
  [156] = 67,
  [157] = 70,
  [158] = 68,
  [159] = 59,
  [160] = 58,
  [161] = 68,
  [162] = 60,
  [163] = 58,
  [164] = 69,
  [165] = 59,
  [166] = 166,
  [167] = 167,
  [168] = 70,
  [169] = 169,
  [170] = 67,
  [171] = 63,
  [172] = 61,
  [173] = 60,
  [174] = 77,
  [175] = 62,
  [176] = 176,
  [177] = 177,
  [178] = 62,
  [179] = 76,
  [180] = 75,
  [181] = 74,
  [182] = 73,
  [183] = 78,
  [184] = 72,
  [185] = 185,
  [186] = 74,
  [187] = 71,
  [188] = 78,
  [189] = 66,
  [190] = 65,
  [191] = 66,
  [192] = 61,
  [193] = 78,
  [194] = 65,
  [195] = 195,
  [196] = 65,
  [197] = 74,
  [198] = 198,
  [199] = 66,
  [200] = 64,
  [201] = 59,
  [202] = 202,
  [203] = 65,
  [204] = 66,
  [205] = 78,
  [206] = 74,
  [207] = 207,
  [208] = 62,
  [209] = 60,
  [210] = 63,
  [211] = 67,
  [212] = 70,
  [213] = 58,
  [214] = 68,
  [215] = 69,
  [216] = 77,
  [217] = 76,
  [218] = 75,
  [219] = 73,
  [220] = 72,
  [221] = 71,
  [222] = 222,
  [223] = 64,
  [224] = 61,
  [225] = 125,
  [226] = 128,
  [227] = 140,
  [228] = 134,
  [229] = 124,
  [230] = 122,
  [231] = 145,
  [232] = 232,
  [233] = 144,
  [234] = 142,
  [235] = 141,
  [236] = 139,
  [237] = 138,
  [238] = 62,
  [239] = 137,
  [240] = 117,
  [241] = 136,
  [242] = 135,
  [243] = 133,
  [244] = 132,
  [245] = 115,
  [246] = 112,
  [247] = 113,
  [248] = 105,
  [249] = 118,
  [250] = 129,
  [251] = 131,
  [252] = 143,
  [253] = 126,
  [254] = 106,
  [255] = 120,
  [256] = 114,
  [257] = 127,
  [258] = 110,
  [259] = 121,
  [260] = 111,
  [261] = 119,
  [262] = 130,
  [263] = 109,
  [264] = 108,
  [265] = 107,
  [266] = 116,
  [267] = 68,
  [268] = 67,
  [269] = 269,
  [270] = 269,
  [271] = 65,
  [272] = 66,
  [273] = 78,
  [274] = 74,
  [275] = 74,
  [276] = 64,
  [277] = 169,
  [278] = 167,
  [279] = 166,
  [280] = 153,
  [281] = 195,
  [282] = 65,
  [283] = 198,
  [284] = 71,
  [285] = 66,
  [286] = 72,
  [287] = 73,
  [288] = 76,
  [289] = 177,
  [290] = 77,
  [291] = 61,
  [292] = 60,
  [293] = 69,
  [294] = 78,
  [295] = 176,
  [296] = 58,
  [297] = 59,
  [298] = 70,
  [299] = 269,
  [300] = 63,
  [301] = 75,
  [302] = 269,
  [303] = 126,
  [304] = 115,
  [305] = 121,
  [306] = 129,
  [307] = 128,
  [308] = 106,
  [309] = 127,
  [310] = 130,
  [311] = 125,
  [312] = 120,
  [313] = 116,
  [314] = 109,
  [315] = 111,
  [316] = 107,
  [317] = 108,
  [318] = 131,
  [319] = 143,
  [320] = 222,
  [321] = 110,
  [322] = 140,
  [323] = 110,
  [324] = 105,
  [325] = 106,
  [326] = 130,
  [327] = 108,
  [328] = 107,
  [329] = 131,
  [330] = 143,
  [331] = 111,
  [332] = 134,
  [333] = 124,
  [334] = 122,
  [335] = 140,
  [336] = 134,
  [337] = 145,
  [338] = 144,
  [339] = 142,
  [340] = 141,
  [341] = 139,
  [342] = 138,
  [343] = 137,
  [344] = 136,
  [345] = 135,
  [346] = 133,
  [347] = 124,
  [348] = 132,
  [349] = 349,
  [350] = 112,
  [351] = 122,
  [352] = 113,
  [353] = 114,
  [354] = 105,
  [355] = 118,
  [356] = 119,
  [357] = 117,
  [358] = 114,
  [359] = 202,
  [360] = 109,
  [361] = 116,
  [362] = 120,
  [363] = 125,
  [364] = 126,
  [365] = 113,
  [366] = 112,
  [367] = 117,
  [368] = 115,
  [369] = 132,
  [370] = 133,
  [371] = 127,
  [372] = 135,
  [373] = 136,
  [374] = 128,
  [375] = 137,
  [376] = 129,
  [377] = 138,
  [378] = 139,
  [379] = 121,
  [380] = 119,
  [381] = 118,
  [382] = 141,
  [383] = 142,
  [384] = 144,
  [385] = 145,
  [386] = 153,
  [387] = 66,
  [388] = 169,
  [389] = 74,
  [390] = 78,
  [391] = 153,
  [392] = 167,
  [393] = 74,
  [394] = 78,
  [395] = 65,
  [396] = 166,
  [397] = 195,
  [398] = 195,
  [399] = 176,
  [400] = 66,
  [401] = 65,
  [402] = 198,
  [403] = 177,
  [404] = 176,
  [405] = 169,
  [406] = 167,
  [407] = 166,
  [408] = 177,
  [409] = 198,
  [410] = 410,
  [411] = 78,
  [412] = 412,
  [413] = 413,
  [414] = 414,
  [415] = 202,
  [416] = 416,
  [417] = 417,
  [418] = 418,
  [419] = 416,
  [420] = 222,
  [421] = 417,
  [422] = 417,
  [423] = 423,
  [424] = 169,
  [425] = 425,
  [426] = 426,
  [427] = 427,
  [428] = 412,
  [429] = 429,
  [430] = 430,
  [431] = 416,
  [432] = 413,
  [433] = 433,
  [434] = 167,
  [435] = 166,
  [436] = 436,
  [437] = 410,
  [438] = 438,
  [439] = 439,
  [440] = 426,
  [441] = 439,
  [442] = 442,
  [443] = 436,
  [444] = 444,
  [445] = 423,
  [446] = 446,
  [447] = 418,
  [448] = 425,
  [449] = 442,
  [450] = 438,
  [451] = 426,
  [452] = 410,
  [453] = 436,
  [454] = 454,
  [455] = 153,
  [456] = 413,
  [457] = 446,
  [458] = 458,
  [459] = 425,
  [460] = 439,
  [461] = 416,
  [462] = 417,
  [463] = 425,
  [464] = 433,
  [465] = 202,
  [466] = 418,
  [467] = 195,
  [468] = 430,
  [469] = 438,
  [470] = 446,
  [471] = 442,
  [472] = 433,
  [473] = 412,
  [474] = 222,
  [475] = 425,
  [476] = 423,
  [477] = 74,
  [478] = 198,
  [479] = 426,
  [480] = 454,
  [481] = 426,
  [482] = 436,
  [483] = 425,
  [484] = 484,
  [485] = 176,
  [486] = 439,
  [487] = 446,
  [488] = 438,
  [489] = 410,
  [490] = 433,
  [491] = 412,
  [492] = 430,
  [493] = 66,
  [494] = 65,
  [495] = 430,
  [496] = 423,
  [497] = 454,
  [498] = 454,
  [499] = 413,
  [500] = 500,
  [501] = 418,
  [502] = 442,
  [503] = 426,
  [504] = 504,
  [505] = 504,
  [506] = 504,
  [507] = 66,
  [508] = 65,
  [509] = 509,
  [510] = 510,
  [511] = 504,
  [512] = 504,
  [513] = 504,
  [514] = 514,
  [515] = 515,
  [516] = 516,
  [517] = 517,
  [518] = 518,
  [519] = 517,
  [520] = 514,
  [521] = 521,
  [522] = 522,
  [523] = 517,
  [524] = 517,
  [525] = 515,
  [526] = 514,
  [527] = 517,
  [528] = 515,
  [529] = 517,
  [530] = 517,
  [531] = 514,
  [532] = 515,
  [533] = 533,
  [534] = 484,
  [535] = 517,
  [536] = 484,
  [537] = 517,
  [538] = 517,
  [539] = 195,
  [540] = 166,
  [541] = 176,
  [542] = 74,
  [543] = 153,
  [544] = 169,
  [545] = 78,
  [546] = 167,
  [547] = 198,
  [548] = 516,
  [549] = 516,
  [550] = 550,
  [551] = 550,
  [552] = 550,
  [553] = 550,
  [554] = 554,
  [555] = 550,
  [556] = 550,
  [557] = 550,
  [558] = 550,
  [559] = 550,
  [560] = 550,
  [561] = 550,
  [562] = 550,
  [563] = 550,
  [564] = 550,
  [565] = 550,
  [566] = 550,
  [567] = 567,
  [568] = 568,
  [569] = 569,
  [570] = 570,
  [571] = 571,
  [572] = 572,
  [573] = 71,
  [574] = 67,
  [575] = 58,
  [576] = 576,
  [577] = 577,
  [578] = 578,
  [579] = 62,
  [580] = 580,
  [581] = 580,
  [582] = 580,
  [583] = 580,
  [584] = 584,
  [585] = 580,
  [586] = 580,
  [587] = 580,
  [588] = 580,
  [589] = 580,
  [590] = 580,
  [591] = 73,
  [592] = 70,
  [593] = 593,
  [594] = 63,
  [595] = 74,
  [596] = 60,
  [597] = 78,
  [598] = 584,
  [599] = 72,
  [600] = 75,
  [601] = 76,
  [602] = 77,
  [603] = 69,
  [604] = 68,
  [605] = 65,
  [606] = 59,
  [607] = 66,
  [608] = 67,
  [609] = 609,
  [610] = 58,
  [611] = 584,
  [612] = 612,
  [613] = 613,
  [614] = 71,
  [615] = 584,
  [616] = 572,
  [617] = 62,
  [618] = 618,
  [619] = 619,
  [620] = 620,
  [621] = 621,
  [622] = 622,
  [623] = 623,
  [624] = 624,
  [625] = 625,
  [626] = 626,
  [627] = 627,
  [628] = 628,
  [629] = 629,
  [630] = 630,
  [631] = 619,
  [632] = 632,
  [633] = 633,
  [634] = 634,
  [635] = 635,
  [636] = 625,
  [637] = 624,
  [638] = 623,
  [639] = 639,
  [640] = 622,
  [641] = 641,
  [642] = 642,
  [643] = 643,
  [644] = 644,
  [645] = 645,
  [646] = 646,
  [647] = 647,
  [648] = 620,
  [649] = 649,
  [650] = 650,
  [651] = 643,
  [652] = 652,
  [653] = 618,
  [654] = 645,
  [655] = 646,
  [656] = 645,
  [657] = 657,
  [658] = 658,
  [659] = 659,
  [660] = 660,
  [661] = 644,
  [662] = 662,
  [663] = 663,
  [664] = 641,
  [665] = 632,
  [666] = 666,
  [667] = 619,
  [668] = 630,
  [669] = 620,
  [670] = 670,
  [671] = 629,
  [672] = 628,
  [673] = 627,
  [674] = 646,
  [675] = 670,
  [676] = 633,
  [677] = 634,
  [678] = 635,
  [679] = 639,
  [680] = 670,
  [681] = 626,
  [682] = 625,
  [683] = 641,
  [684] = 644,
  [685] = 633,
  [686] = 686,
  [687] = 634,
  [688] = 670,
  [689] = 622,
  [690] = 623,
  [691] = 647,
  [692] = 650,
  [693] = 624,
  [694] = 643,
  [695] = 670,
  [696] = 696,
  [697] = 618,
  [698] = 625,
  [699] = 626,
  [700] = 662,
  [701] = 627,
  [702] = 628,
  [703] = 629,
  [704] = 630,
  [705] = 619,
  [706] = 632,
  [707] = 624,
  [708] = 623,
  [709] = 635,
  [710] = 639,
  [711] = 670,
  [712] = 712,
  [713] = 670,
  [714] = 622,
  [715] = 715,
  [716] = 620,
  [717] = 696,
  [718] = 718,
  [719] = 670,
  [720] = 720,
  [721] = 641,
  [722] = 696,
  [723] = 670,
  [724] = 627,
  [725] = 633,
  [726] = 634,
  [727] = 635,
  [728] = 639,
  [729] = 670,
  [730] = 622,
  [731] = 644,
  [732] = 623,
  [733] = 624,
  [734] = 647,
  [735] = 650,
  [736] = 625,
  [737] = 643,
  [738] = 626,
  [739] = 627,
  [740] = 628,
  [741] = 629,
  [742] = 630,
  [743] = 662,
  [744] = 619,
  [745] = 632,
  [746] = 746,
  [747] = 618,
  [748] = 645,
  [749] = 628,
  [750] = 646,
  [751] = 751,
  [752] = 629,
  [753] = 630,
  [754] = 696,
  [755] = 619,
  [756] = 756,
  [757] = 632,
  [758] = 696,
  [759] = 759,
  [760] = 647,
  [761] = 696,
  [762] = 762,
  [763] = 632,
  [764] = 764,
  [765] = 641,
  [766] = 650,
  [767] = 641,
  [768] = 768,
  [769] = 626,
  [770] = 662,
  [771] = 771,
  [772] = 622,
  [773] = 623,
  [774] = 624,
  [775] = 625,
  [776] = 626,
  [777] = 627,
  [778] = 628,
  [779] = 629,
  [780] = 630,
  [781] = 72,
  [782] = 782,
  [783] = 67,
  [784] = 784,
  [785] = 785,
  [786] = 68,
  [787] = 69,
  [788] = 788,
  [789] = 71,
  [790] = 77,
  [791] = 76,
  [792] = 593,
  [793] = 793,
  [794] = 794,
  [795] = 62,
  [796] = 75,
  [797] = 62,
  [798] = 572,
  [799] = 799,
  [800] = 71,
  [801] = 801,
  [802] = 802,
  [803] = 803,
  [804] = 73,
  [805] = 805,
  [806] = 806,
  [807] = 807,
  [808] = 808,
  [809] = 809,
  [810] = 60,
  [811] = 811,
  [812] = 812,
  [813] = 813,
  [814] = 813,
  [815] = 815,
  [816] = 816,
  [817] = 572,
  [818] = 813,
  [819] = 813,
  [820] = 820,
  [821] = 821,
  [822] = 822,
  [823] = 823,
  [824] = 824,
  [825] = 825,
  [826] = 826,
  [827] = 827,
  [828] = 828,
  [829] = 63,
  [830] = 830,
  [831] = 831,
  [832] = 70,
  [833] = 59,
  [834] = 65,
  [835] = 835,
  [836] = 836,
  [837] = 837,
  [838] = 838,
  [839] = 839,
  [840] = 840,
  [841] = 841,
  [842] = 813,
  [843] = 843,
  [844] = 844,
  [845] = 845,
  [846] = 846,
  [847] = 847,
  [848] = 67,
  [849] = 849,
  [850] = 850,
  [851] = 851,
  [852] = 852,
  [853] = 853,
  [854] = 854,
  [855] = 58,
  [856] = 856,
  [857] = 74,
  [858] = 78,
  [859] = 859,
  [860] = 860,
  [861] = 861,
  [862] = 862,
  [863] = 66,
  [864] = 864,
  [865] = 865,
  [866] = 866,
  [867] = 867,
  [868] = 868,
  [869] = 58,
  [870] = 813,
  [871] = 871,
  [872] = 872,
  [873] = 873,
  [874] = 873,
  [875] = 871,
  [876] = 873,
  [877] = 873,
  [878] = 873,
  [879] = 879,
  [880] = 879,
  [881] = 881,
  [882] = 882,
  [883] = 883,
  [884] = 884,
  [885] = 885,
  [886] = 873,
  [887] = 887,
  [888] = 873,
  [889] = 873,
  [890] = 873,
  [891] = 873,
  [892] = 892,
  [893] = 893,
  [894] = 879,
  [895] = 871,
  [896] = 871,
  [897] = 879,
  [898] = 898,
  [899] = 899,
  [900] = 63,
  [901] = 901,
  [902] = 902,
  [903] = 903,
  [904] = 904,
  [905] = 905,
  [906] = 66,
  [907] = 907,
  [908] = 78,
  [909] = 909,
  [910] = 910,
  [911] = 911,
  [912] = 912,
  [913] = 913,
  [914] = 914,
  [915] = 915,
  [916] = 60,
  [917] = 60,
  [918] = 74,
  [919] = 919,
  [920] = 68,
  [921] = 69,
  [922] = 922,
  [923] = 923,
  [924] = 924,
  [925] = 925,
  [926] = 926,
  [927] = 77,
  [928] = 928,
  [929] = 76,
  [930] = 59,
  [931] = 931,
  [932] = 75,
  [933] = 933,
  [934] = 593,
  [935] = 70,
  [936] = 73,
  [937] = 937,
  [938] = 938,
  [939] = 939,
  [940] = 940,
  [941] = 941,
  [942] = 72,
  [943] = 660,
  [944] = 65,
  [945] = 945,
  [946] = 663,
  [947] = 947,
  [948] = 948,
  [949] = 65,
  [950] = 950,
  [951] = 951,
  [952] = 952,
  [953] = 771,
  [954] = 954,
  [955] = 66,
  [956] = 759,
  [957] = 957,
  [958] = 958,
  [959] = 59,
  [960] = 960,
  [961] = 65,
  [962] = 962,
  [963] = 963,
  [964] = 964,
  [965] = 78,
  [966] = 966,
  [967] = 967,
  [968] = 686,
  [969] = 593,
  [970] = 970,
  [971] = 762,
  [972] = 972,
  [973] = 973,
  [974] = 974,
  [975] = 975,
  [976] = 63,
  [977] = 74,
  [978] = 751,
  [979] = 746,
  [980] = 72,
  [981] = 73,
  [982] = 75,
  [983] = 76,
  [984] = 77,
  [985] = 69,
  [986] = 68,
  [987] = 720,
  [988] = 66,
  [989] = 989,
  [990] = 990,
  [991] = 991,
  [992] = 70,
  [993] = 993,
  [994] = 856,
  [995] = 826,
  [996] = 828,
  [997] = 831,
  [998] = 784,
  [999] = 835,
  [1000] = 846,
  [1001] = 850,
  [1002] = 847,
  [1003] = 830,
  [1004] = 793,
  [1005] = 799,
  [1006] = 802,
  [1007] = 805,
  [1008] = 808,
  [1009] = 811,
  [1010] = 785,
  [1011] = 860,
  [1012] = 853,
  [1013] = 861,
  [1014] = 794,
  [1015] = 801,
  [1016] = 806,
  [1017] = 807,
  [1018] = 866,
  [1019] = 867,
  [1020] = 841,
  [1021] = 868,
  [1022] = 840,
  [1023] = 824,
  [1024] = 788,
  [1025] = 825,
  [1026] = 844,
  [1027] = 851,
  [1028] = 862,
  [1029] = 827,
  [1030] = 864,
  [1031] = 859,
  [1032] = 823,
  [1033] = 854,
  [1034] = 852,
  [1035] = 849,
  [1036] = 782,
  [1037] = 843,
  [1038] = 839,
  [1039] = 1039,
  [1040] = 1040,
  [1041] = 1041,
  [1042] = 1042,
  [1043] = 1043,
  [1044] = 1044,
  [1045] = 820,
  [1046] = 1046,
  [1047] = 1047,
  [1048] = 1048,
  [1049] = 836,
  [1050] = 821,
  [1051] = 837,
  [1052] = 845,
  [1053] = 746,
  [1054] = 720,
  [1055] = 751,
  [1056] = 746,
  [1057] = 762,
  [1058] = 720,
  [1059] = 771,
  [1060] = 762,
  [1061] = 751,
  [1062] = 686,
  [1063] = 663,
  [1064] = 759,
  [1065] = 660,
  [1066] = 759,
  [1067] = 660,
  [1068] = 771,
  [1069] = 663,
  [1070] = 1070,
  [1071] = 686,
  [1072] = 823,
  [1073] = 782,
  [1074] = 861,
  [1075] = 860,
  [1076] = 846,
  [1077] = 835,
  [1078] = 867,
  [1079] = 828,
  [1080] = 826,
  [1081] = 868,
  [1082] = 824,
  [1083] = 825,
  [1084] = 827,
  [1085] = 831,
  [1086] = 940,
  [1087] = 912,
  [1088] = 784,
  [1089] = 785,
  [1090] = 914,
  [1091] = 794,
  [1092] = 801,
  [1093] = 947,
  [1094] = 950,
  [1095] = 954,
  [1096] = 806,
  [1097] = 807,
  [1098] = 845,
  [1099] = 844,
  [1100] = 851,
  [1101] = 862,
  [1102] = 864,
  [1103] = 859,
  [1104] = 856,
  [1105] = 854,
  [1106] = 852,
  [1107] = 849,
  [1108] = 866,
  [1109] = 843,
  [1110] = 962,
  [1111] = 839,
  [1112] = 850,
  [1113] = 847,
  [1114] = 910,
  [1115] = 945,
  [1116] = 821,
  [1117] = 820,
  [1118] = 830,
  [1119] = 793,
  [1120] = 799,
  [1121] = 802,
  [1122] = 805,
  [1123] = 808,
  [1124] = 811,
  [1125] = 853,
  [1126] = 841,
  [1127] = 840,
  [1128] = 788,
  [1129] = 836,
  [1130] = 837,
  [1131] = 823,
  [1132] = 826,
  [1133] = 828,
  [1134] = 835,
  [1135] = 846,
  [1136] = 963,
  [1137] = 836,
  [1138] = 860,
  [1139] = 948,
  [1140] = 952,
  [1141] = 861,
  [1142] = 866,
  [1143] = 867,
  [1144] = 868,
  [1145] = 837,
  [1146] = 820,
  [1147] = 788,
  [1148] = 840,
  [1149] = 841,
  [1150] = 853,
  [1151] = 811,
  [1152] = 808,
  [1153] = 824,
  [1154] = 825,
  [1155] = 827,
  [1156] = 805,
  [1157] = 802,
  [1158] = 793,
  [1159] = 830,
  [1160] = 831,
  [1161] = 847,
  [1162] = 784,
  [1163] = 785,
  [1164] = 794,
  [1165] = 801,
  [1166] = 806,
  [1167] = 807,
  [1168] = 850,
  [1169] = 821,
  [1170] = 845,
  [1171] = 844,
  [1172] = 851,
  [1173] = 951,
  [1174] = 967,
  [1175] = 799,
  [1176] = 901,
  [1177] = 964,
  [1178] = 966,
  [1179] = 933,
  [1180] = 931,
  [1181] = 862,
  [1182] = 864,
  [1183] = 859,
  [1184] = 856,
  [1185] = 854,
  [1186] = 852,
  [1187] = 849,
  [1188] = 782,
  [1189] = 843,
  [1190] = 839,
  [1191] = 913,
  [1192] = 915,
  [1193] = 919,
  [1194] = 922,
  [1195] = 923,
  [1196] = 924,
  [1197] = 925,
  [1198] = 926,
  [1199] = 928,
  [1200] = 1040,
  [1201] = 1201,
  [1202] = 912,
  [1203] = 925,
  [1204] = 1204,
  [1205] = 907,
  [1206] = 898,
  [1207] = 913,
  [1208] = 952,
  [1209] = 948,
  [1210] = 963,
  [1211] = 915,
  [1212] = 914,
  [1213] = 919,
  [1214] = 912,
  [1215] = 940,
  [1216] = 1216,
  [1217] = 1217,
  [1218] = 922,
  [1219] = 1219,
  [1220] = 910,
  [1221] = 945,
  [1222] = 923,
  [1223] = 931,
  [1224] = 951,
  [1225] = 967,
  [1226] = 901,
  [1227] = 964,
  [1228] = 966,
  [1229] = 945,
  [1230] = 933,
  [1231] = 933,
  [1232] = 924,
  [1233] = 947,
  [1234] = 950,
  [1235] = 954,
  [1236] = 931,
  [1237] = 958,
  [1238] = 909,
  [1239] = 1239,
  [1240] = 972,
  [1241] = 913,
  [1242] = 973,
  [1243] = 926,
  [1244] = 928,
  [1245] = 1245,
  [1246] = 974,
  [1247] = 915,
  [1248] = 954,
  [1249] = 950,
  [1250] = 947,
  [1251] = 919,
  [1252] = 910,
  [1253] = 975,
  [1254] = 922,
  [1255] = 923,
  [1256] = 962,
  [1257] = 925,
  [1258] = 1258,
  [1259] = 926,
  [1260] = 928,
  [1261] = 990,
  [1262] = 966,
  [1263] = 964,
  [1264] = 1264,
  [1265] = 901,
  [1266] = 967,
  [1267] = 962,
  [1268] = 1268,
  [1269] = 1269,
  [1270] = 963,
  [1271] = 948,
  [1272] = 940,
  [1273] = 952,
  [1274] = 924,
  [1275] = 951,
  [1276] = 914,
  [1277] = 991,
  [1278] = 899,
  [1279] = 970,
  [1280] = 1280,
  [1281] = 1281,
  [1282] = 60,
  [1283] = 1040,
  [1284] = 1201,
  [1285] = 1201,
  [1286] = 1040,
  [1287] = 1287,
  [1288] = 1288,
  [1289] = 1289,
  [1290] = 1289,
  [1291] = 1291,
  [1292] = 1289,
  [1293] = 1293,
  [1294] = 1294,
  [1295] = 1295,
  [1296] = 1291,
  [1297] = 1291,
  [1298] = 1298,
  [1299] = 1299,
  [1300] = 1300,
  [1301] = 1291,
  [1302] = 1302,
  [1303] = 1303,
  [1304] = 1300,
  [1305] = 1291,
  [1306] = 1294,
  [1307] = 1295,
  [1308] = 1295,
  [1309] = 1287,
  [1310] = 1288,
  [1311] = 1298,
  [1312] = 1312,
  [1313] = 1313,
  [1314] = 1314,
  [1315] = 1299,
  [1316] = 1316,
  [1317] = 1316,
  [1318] = 1316,
  [1319] = 1316,
  [1320] = 1316,
  [1321] = 1316,
  [1322] = 1316,
  [1323] = 1316,
  [1324] = 1324,
  [1325] = 1324,
  [1326] = 1324,
  [1327] = 1327,
  [1328] = 1324,
  [1329] = 865,
  [1330] = 1330,
  [1331] = 809,
  [1332] = 1330,
  [1333] = 1330,
  [1334] = 1330,
  [1335] = 1330,
  [1336] = 1330,
  [1337] = 1330,
  [1338] = 1330,
  [1339] = 816,
  [1340] = 1330,
  [1341] = 1330,
  [1342] = 865,
  [1343] = 1343,
  [1344] = 881,
  [1345] = 882,
  [1346] = 816,
  [1347] = 809,
  [1348] = 957,
  [1349] = 939,
  [1350] = 1350,
  [1351] = 1351,
  [1352] = 903,
  [1353] = 1353,
  [1354] = 1353,
  [1355] = 1351,
  [1356] = 872,
  [1357] = 902,
  [1358] = 62,
  [1359] = 1353,
  [1360] = 960,
  [1361] = 941,
  [1362] = 883,
  [1363] = 883,
  [1364] = 1351,
  [1365] = 937,
  [1366] = 1351,
  [1367] = 938,
  [1368] = 887,
  [1369] = 1350,
  [1370] = 887,
  [1371] = 1350,
  [1372] = 911,
  [1373] = 1353,
  [1374] = 1350,
  [1375] = 904,
  [1376] = 989,
  [1377] = 882,
  [1378] = 939,
  [1379] = 881,
  [1380] = 872,
  [1381] = 957,
  [1382] = 1382,
  [1383] = 903,
  [1384] = 1382,
  [1385] = 1385,
  [1386] = 1385,
  [1387] = 1387,
  [1388] = 872,
  [1389] = 887,
  [1390] = 1390,
  [1391] = 941,
  [1392] = 1382,
  [1393] = 1046,
  [1394] = 1394,
  [1395] = 1047,
  [1396] = 989,
  [1397] = 883,
  [1398] = 957,
  [1399] = 1399,
  [1400] = 1387,
  [1401] = 1394,
  [1402] = 1399,
  [1403] = 1385,
  [1404] = 1404,
  [1405] = 939,
  [1406] = 911,
  [1407] = 1385,
  [1408] = 960,
  [1409] = 1385,
  [1410] = 1394,
  [1411] = 1387,
  [1412] = 1399,
  [1413] = 1399,
  [1414] = 66,
  [1415] = 1394,
  [1416] = 1382,
  [1417] = 1385,
  [1418] = 1387,
  [1419] = 65,
  [1420] = 938,
  [1421] = 937,
  [1422] = 904,
  [1423] = 902,
  [1424] = 1404,
  [1425] = 1425,
  [1426] = 1047,
  [1427] = 1427,
  [1428] = 883,
  [1429] = 872,
  [1430] = 1427,
  [1431] = 1427,
  [1432] = 1427,
  [1433] = 1046,
  [1434] = 887,
  [1435] = 1435,
  [1436] = 1435,
  [1437] = 1425,
  [1438] = 1425,
  [1439] = 1435,
  [1440] = 1440,
  [1441] = 1441,
  [1442] = 1442,
  [1443] = 1443,
  [1444] = 1444,
  [1445] = 1445,
  [1446] = 1446,
  [1447] = 1444,
  [1448] = 1448,
  [1449] = 1449,
  [1450] = 1441,
  [1451] = 1451,
  [1452] = 1452,
  [1453] = 1453,
  [1454] = 1451,
  [1455] = 1441,
  [1456] = 1449,
  [1457] = 1457,
  [1458] = 1445,
  [1459] = 1459,
  [1460] = 1444,
  [1461] = 1444,
  [1462] = 65,
  [1463] = 66,
  [1464] = 1464,
  [1465] = 1465,
  [1466] = 1466,
  [1467] = 1451,
  [1468] = 1468,
  [1469] = 1469,
  [1470] = 1451,
  [1471] = 1445,
  [1472] = 1445,
  [1473] = 1473,
  [1474] = 1474,
  [1475] = 1475,
  [1476] = 1476,
  [1477] = 1477,
  [1478] = 1478,
  [1479] = 1479,
  [1480] = 1480,
  [1481] = 1481,
  [1482] = 1482,
  [1483] = 1483,
  [1484] = 1474,
  [1485] = 1485,
  [1486] = 1486,
  [1487] = 1481,
  [1488] = 1488,
  [1489] = 1489,
  [1490] = 1490,
  [1491] = 1491,
  [1492] = 1492,
  [1493] = 1493,
  [1494] = 1494,
  [1495] = 1476,
  [1496] = 1480,
  [1497] = 1497,
  [1498] = 1475,
  [1499] = 1499,
  [1500] = 1500,
  [1501] = 1486,
  [1502] = 1478,
  [1503] = 1488,
  [1504] = 1483,
  [1505] = 1505,
  [1506] = 1506,
  [1507] = 1479,
  [1508] = 1508,
  [1509] = 1509,
  [1510] = 1510,
  [1511] = 1506,
  [1512] = 1512,
  [1513] = 1513,
  [1514] = 1486,
  [1515] = 1513,
  [1516] = 1512,
  [1517] = 1517,
  [1518] = 1486,
  [1519] = 1519,
  [1520] = 1500,
  [1521] = 1521,
  [1522] = 1475,
  [1523] = 1523,
  [1524] = 1524,
  [1525] = 1525,
  [1526] = 1500,
  [1527] = 1477,
  [1528] = 1512,
  [1529] = 1529,
  [1530] = 1530,
  [1531] = 1531,
  [1532] = 1509,
  [1533] = 1533,
  [1534] = 1490,
  [1535] = 1535,
  [1536] = 1536,
  [1537] = 1537,
  [1538] = 1538,
  [1539] = 1513,
  [1540] = 1512,
  [1541] = 1541,
  [1542] = 1542,
  [1543] = 1500,
  [1544] = 1544,
  [1545] = 1545,
  [1546] = 1546,
  [1547] = 1547,
  [1548] = 1545,
  [1549] = 1525,
  [1550] = 1545,
  [1551] = 62,
  [1552] = 1525,
  [1553] = 1545,
  [1554] = 1525,
  [1555] = 1524,
  [1556] = 1488,
  [1557] = 1524,
  [1558] = 1488,
  [1559] = 1559,
  [1560] = 1524,
  [1561] = 1561,
  [1562] = 1562,
  [1563] = 1563,
  [1564] = 1564,
  [1565] = 1565,
  [1566] = 1563,
  [1567] = 1564,
  [1568] = 1568,
  [1569] = 1563,
  [1570] = 1570,
  [1571] = 1571,
  [1572] = 1564,
  [1573] = 1563,
  [1574] = 1574,
  [1575] = 1575,
  [1576] = 1571,
  [1577] = 1561,
  [1578] = 1578,
  [1579] = 1574,
  [1580] = 1562,
  [1581] = 1581,
  [1582] = 1582,
  [1583] = 1583,
  [1584] = 1582,
  [1585] = 1561,
  [1586] = 1586,
  [1587] = 1582,
  [1588] = 1588,
  [1589] = 1589,
  [1590] = 1589,
  [1591] = 1591,
  [1592] = 1582,
  [1593] = 1583,
  [1594] = 1570,
  [1595] = 1571,
  [1596] = 1596,
  [1597] = 1582,
  [1598] = 1583,
  [1599] = 1578,
  [1600] = 1582,
  [1601] = 1601,
  [1602] = 1602,
  [1603] = 1586,
  [1604] = 1604,
  [1605] = 1605,
  [1606] = 1583,
  [1607] = 1589,
  [1608] = 1582,
  [1609] = 1609,
  [1610] = 62,
  [1611] = 1611,
  [1612] = 1574,
  [1613] = 1596,
  [1614] = 1596,
  [1615] = 1571,
  [1616] = 1601,
  [1617] = 1561,
  [1618] = 1602,
  [1619] = 1571,
  [1620] = 1611,
  [1621] = 1621,
  [1622] = 1586,
  [1623] = 1604,
  [1624] = 1564,
  [1625] = 1589,
  [1626] = 1583,
  [1627] = 1589,
  [1628] = 1628,
  [1629] = 1609,
  [1630] = 1611,
  [1631] = 1582,
  [1632] = 1571,
  [1633] = 1571,
  [1634] = 1561,
  [1635] = 1602,
  [1636] = 1601,
  [1637] = 1637,
  [1638] = 1638,
  [1639] = 1601,
  [1640] = 1602,
  [1641] = 1571,
  [1642] = 1586,
  [1643] = 1643,
  [1644] = 1589,
  [1645] = 1604,
  [1646] = 1583,
  [1647] = 1582,
  [1648] = 1561,
  [1649] = 1571,
  [1650] = 1582,
  [1651] = 1561,
  [1652] = 1652,
  [1653] = 1604,
  [1654] = 1654,
  [1655] = 1561,
  [1656] = 1561,
  [1657] = 1657,
  [1658] = 1561,
  [1659] = 1589,
  [1660] = 1660,
  [1661] = 1561,
  [1662] = 1561,
  [1663] = 1571,
  [1664] = 1664,
  [1665] = 1561,
  [1666] = 1589,
  [1667] = 1561,
  [1668] = 1561,
  [1669] = 1589,
  [1670] = 1561,
  [1671] = 1671,
  [1672] = 1561,
  [1673] = 1589,
  [1674] = 1561,
  [1675] = 1561,
  [1676] = 1609,
  [1677] = 1677,
  [1678] = 1678,
  [1679] = 1679,
  [1680] = 1680,
  [1681] = 1681,
  [1682] = 1682,
  [1683] = 1683,
  [1684] = 1684,
  [1685] = 1679,
  [1686] = 1686,
  [1687] = 1687,
  [1688] = 1688,
  [1689] = 1684,
  [1690] = 1679,
  [1691] = 1684,
  [1692] = 1692,
  [1693] = 1684,
  [1694] = 1679,
  [1695] = 1695,
  [1696] = 1696,
  [1697] = 1684,
  [1698] = 1679,
  [1699] = 1699,
  [1700] = 1700,
  [1701] = 1684,
  [1702] = 1679,
  [1703] = 1703,
  [1704] = 1679,
  [1705] = 1684,
  [1706] = 1679,
  [1707] = 1684,
  [1708] = 1708,
  [1709] = 1684,
  [1710] = 1679,
  [1711] = 1711,
  [1712] = 1684,
  [1713] = 1713,
  [1714] = 1684,
  [1715] = 1715,
  [1716] = 1684,
  [1717] = 1677,
  [1718] = 1718,
  [1719] = 1679,
  [1720] = 1720,
  [1721] = 1684,
  [1722] = 1722,
  [1723] = 1723,
  [1724] = 1724,
  [1725] = 1725,
  [1726] = 1679,
  [1727] = 1684,
  [1728] = 1728,
  [1729] = 1729,
  [1730] = 1730,
  [1731] = 1731,
  [1732] = 1718,
  [1733] = 1733,
  [1734] = 1734,
  [1735] = 1735,
  [1736] = 1736,
  [1737] = 1737,
  [1738] = 1713,
  [1739] = 1711,
  [1740] = 1695,
  [1741] = 1737,
  [1742] = 1735,
  [1743] = 1682,
  [1744] = 1744,
  [1745] = 1683,
  [1746] = 1736,
  [1747] = 1692,
  [1748] = 1748,
  [1749] = 1699,
  [1750] = 1679,
  [1751] = 1734,
  [1752] = 1720,
  [1753] = 1724,
  [1754] = 1754,
  [1755] = 1755,
  [1756] = 1756,
  [1757] = 1757,
  [1758] = 1758,
  [1759] = 1759,
  [1760] = 1722,
  [1761] = 1736,
  [1762] = 1762,
  [1763] = 1725,
  [1764] = 1764,
  [1765] = 1734,
  [1766] = 1766,
  [1767] = 1757,
  [1768] = 1744,
  [1769] = 1734,
  [1770] = 1736,
  [1771] = 1766,
  [1772] = 1687,
  [1773] = 1679,
  [1774] = 1679,
  [1775] = 1736,
  [1776] = 1776,
  [1777] = 1684,
  [1778] = 1684,
  [1779] = 1684,
  [1780] = 1713,
  [1781] = 1755,
  [1782] = 1677,
  [1783] = 1722,
  [1784] = 1730,
  [1785] = 1711,
  [1786] = 1725,
  [1787] = 1682,
  [1788] = 1683,
  [1789] = 1718,
  [1790] = 1790,
  [1791] = 1791,
  [1792] = 1720,
  [1793] = 1793,
  [1794] = 1724,
  [1795] = 1758,
  [1796] = 1796,
  [1797] = 1687,
  [1798] = 1764,
  [1799] = 1734,
  [1800] = 1800,
  [1801] = 1744,
  [1802] = 1802,
  [1803] = 1733,
  [1804] = 1804,
  [1805] = 1679,
  [1806] = 1766,
  [1807] = 1684,
  [1808] = 1736,
  [1809] = 1677,
  [1810] = 1810,
  [1811] = 1729,
  [1812] = 1730,
  [1813] = 1813,
  [1814] = 1814,
  [1815] = 1815,
  [1816] = 1816,
  [1817] = 1758,
  [1818] = 1764,
  [1819] = 1819,
  [1820] = 1679,
  [1821] = 1821,
  [1822] = 1822,
  [1823] = 1678,
  [1824] = 1728,
  [1825] = 1684,
  [1826] = 1733,
  [1827] = 1776,
  [1828] = 1703,
  [1829] = 1715,
  [1830] = 1730,
  [1831] = 1800,
  [1832] = 1832,
  [1833] = 1734,
  [1834] = 1729,
  [1835] = 1821,
  [1836] = 1678,
  [1837] = 1728,
  [1838] = 1713,
  [1839] = 1703,
  [1840] = 1715,
  [1841] = 1744,
  [1842] = 1725,
  [1843] = 1843,
  [1844] = 1821,
  [1845] = 1678,
  [1846] = 1728,
  [1847] = 1703,
  [1848] = 1715,
  [1849] = 1821,
  [1850] = 1821,
  [1851] = 1711,
  [1852] = 1852,
  [1853] = 1853,
  [1854] = 1722,
  [1855] = 1682,
  [1856] = 1766,
  [1857] = 1683,
  [1858] = 1858,
  [1859] = 1859,
  [1860] = 1718,
  [1861] = 1720,
  [1862] = 1862,
  [1863] = 1724,
  [1864] = 1864,
  [1865] = 1758,
  [1866] = 1821,
  [1867] = 1867,
  [1868] = 1822,
  [1869] = 1764,
  [1870] = 1699,
  [1871] = 1700,
  [1872] = 1729,
  [1873] = 1822,
  [1874] = 1822,
  [1875] = 1699,
  [1876] = 1876,
  [1877] = 1877,
  [1878] = 1878,
  [1879] = 1879,
};

static bool ts_lex(TSLexer *lexer, TSStateId state) {
  START_LEXER();
  eof = lexer->eof(lexer);
  switch (state) {
    case 0:
      if (eof) ADVANCE(243);
      if (lookahead == 0) ADVANCE(244);
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(1);
      if (lookahead == '#') ADVANCE(301);
      if (lookahead == '%') ADVANCE(295);
      if (lookahead == '&') ADVANCE(283);
      if (lookahead == '(') ADVANCE(420);
      if (lookahead == ')') ADVANCE(421);
      if (lookahead == '*') ADVANCE(292);
      if (lookahead == '+') ADVANCE(286);
      if (lookahead == ',') ADVANCE(268);
      if (lookahead == '-') ADVANCE(287);
      if (lookahead == '.') ADVANCE(262);
      if (lookahead == '/') ADVANCE(293);
      if (lookahead == '0') ADVANCE(253);
      if (lookahead == ':') ADVANCE(264);
      if (lookahead == ';') ADVANCE(245);
      if (lookahead == '<') ADVANCE(273);
      if (lookahead == '=') ADVANCE(305);
      if (lookahead == '>') ADVANCE(279);
      if (lookahead == '?') ADVANCE(443);
      if (lookahead == '@') ADVANCE(448);
      if (lookahead == '[') ADVANCE(307);
      if (lookahead == ']') ADVANCE(308);
      if (lookahead == '^') ADVANCE(297);
      if (lookahead == 'a') ADVANCE(145);
      if (lookahead == 'b') ADVANCE(169);
      if (lookahead == 'd') ADVANCE(156);
      if (lookahead == 'e') ADVANCE(126);
      if (lookahead == 'f') ADVANCE(46);
      if (lookahead == 'i') ADVANCE(104);
      if (lookahead == 'l') ADVANCE(157);
      if (lookahead == 'n') ADVANCE(116);
      if (lookahead == 'o') ADVANCE(166);
      if (lookahead == 'p') ADVANCE(168);
      if (lookahead == 'r') ADVANCE(82);
      if (lookahead == 't') ADVANCE(60);
      if (lookahead == 'u') ADVANCE(152);
      if (lookahead == 'w') ADVANCE(113);
      if (lookahead == '{') ADVANCE(334);
      if (lookahead == '|') ADVANCE(280);
      if (lookahead == '}') ADVANCE(335);
      if (lookahead == '~') ADVANCE(282);
      if (('1' <= lookahead && lookahead <= '9')) ADVANCE(254);
      END_STATE();
    case 1:
      if (lookahead == 0) ADVANCE(244);
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(1);
      if (lookahead == '#') ADVANCE(301);
      if (lookahead == '%') ADVANCE(295);
      if (lookahead == '&') ADVANCE(283);
      if (lookahead == '(') ADVANCE(420);
      if (lookahead == ')') ADVANCE(421);
      if (lookahead == '*') ADVANCE(292);
      if (lookahead == '+') ADVANCE(286);
      if (lookahead == ',') ADVANCE(268);
      if (lookahead == '-') ADVANCE(287);
      if (lookahead == '.') ADVANCE(262);
      if (lookahead == '/') ADVANCE(293);
      if (lookahead == '0') ADVANCE(253);
      if (lookahead == ':') ADVANCE(264);
      if (lookahead == ';') ADVANCE(245);
      if (lookahead == '<') ADVANCE(273);
      if (lookahead == '=') ADVANCE(305);
      if (lookahead == '>') ADVANCE(279);
      if (lookahead == '?') ADVANCE(443);
      if (lookahead == '@') ADVANCE(448);
      if (lookahead == '[') ADVANCE(307);
      if (lookahead == ']') ADVANCE(308);
      if (lookahead == '^') ADVANCE(297);
      if (lookahead == 'a') ADVANCE(145);
      if (lookahead == 'b') ADVANCE(169);
      if (lookahead == 'd') ADVANCE(156);
      if (lookahead == 'e') ADVANCE(126);
      if (lookahead == 'f') ADVANCE(46);
      if (lookahead == 'i') ADVANCE(104);
      if (lookahead == 'l') ADVANCE(157);
      if (lookahead == 'n') ADVANCE(116);
      if (lookahead == 'o') ADVANCE(166);
      if (lookahead == 'p') ADVANCE(168);
      if (lookahead == 'r') ADVANCE(82);
      if (lookahead == 't') ADVANCE(60);
      if (lookahead == 'u') ADVANCE(152);
      if (lookahead == 'w') ADVANCE(113);
      if (lookahead == '{') ADVANCE(334);
      if (lookahead == '|') ADVANCE(280);
      if (lookahead == '}') ADVANCE(335);
      if (lookahead == '~') ADVANCE(282);
      if (('1' <= lookahead && lookahead <= '9')) ADVANCE(254);
      END_STATE();
    case 2:
      if (lookahead == 0) ADVANCE(244);
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(2);
      if (lookahead == '#') ADVANCE(19);
      if (lookahead == '(') ADVANCE(420);
      if (lookahead == ',') ADVANCE(268);
      if (lookahead == '-') ADVANCE(29);
      if (lookahead == '.') ADVANCE(260);
      if (lookahead == ':') ADVANCE(263);
      if (lookahead == ';') ADVANCE(245);
      if (lookahead == '=') ADVANCE(304);
      if (lookahead == '[') ADVANCE(306);
      if (lookahead == 'd') ADVANCE(392);
      if (lookahead == 'f') ADVANCE(393);
      if (lookahead == 'i') ADVANCE(365);
      if (lookahead == 'l') ADVANCE(394);
      if (lookahead == 'r') ADVANCE(354);
      if (lookahead == 'w') ADVANCE(367);
      if (lookahead == '{') ADVANCE(334);
      if (('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 3:
      if (lookahead == 0) ADVANCE(244);
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(3);
      if (lookahead == '%') ADVANCE(295);
      if (lookahead == '&') ADVANCE(283);
      if (lookahead == '(') ADVANCE(420);
      if (lookahead == '*') ADVANCE(292);
      if (lookahead == '+') ADVANCE(286);
      if (lookahead == ',') ADVANCE(268);
      if (lookahead == '-') ADVANCE(290);
      if (lookahead == '.') ADVANCE(261);
      if (lookahead == '/') ADVANCE(293);
      if (lookahead == ':') ADVANCE(263);
      if (lookahead == ';') ADVANCE(245);
      if (lookahead == '<') ADVANCE(273);
      if (lookahead == '=') ADVANCE(37);
      if (lookahead == '>') ADVANCE(279);
      if (lookahead == '[') ADVANCE(306);
      if (lookahead == '^') ADVANCE(297);
      if (lookahead == 'a') ADVANCE(386);
      if (lookahead == 'd') ADVANCE(392);
      if (lookahead == 'f') ADVANCE(393);
      if (lookahead == 'i') ADVANCE(365);
      if (lookahead == 'l') ADVANCE(394);
      if (lookahead == 'o') ADVANCE(399);
      if (lookahead == 'r') ADVANCE(354);
      if (lookahead == 'w') ADVANCE(367);
      if (lookahead == '{') ADVANCE(334);
      if (lookahead == '|') ADVANCE(280);
      if (lookahead == '~') ADVANCE(282);
      if (('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('b' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 4:
      if (lookahead == 0) ADVANCE(244);
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(4);
      if (lookahead == '(') ADVANCE(420);
      if (lookahead == '-') ADVANCE(31);
      if (lookahead == 'd') ADVANCE(392);
      if (lookahead == 'f') ADVANCE(393);
      if (lookahead == 'i') ADVANCE(365);
      if (lookahead == 'l') ADVANCE(394);
      if (lookahead == 'r') ADVANCE(354);
      if (lookahead == 'w') ADVANCE(367);
      if (('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 5:
      if (lookahead == '\n') ADVANCE(439);
      if (lookahead == '@') ADVANCE(65);
      if (lookahead != 0) ADVANCE(9);
      END_STATE();
    case 6:
      if (lookahead == '\n') ADVANCE(440);
      if (lookahead == '@') ADVANCE(67);
      if (lookahead != 0) ADVANCE(9);
      END_STATE();
    case 7:
      if (lookahead == '\n') ADVANCE(440);
      if (lookahead == '@') ADVANCE(174);
      if (lookahead != 0) ADVANCE(9);
      END_STATE();
    case 8:
      if (lookahead == '\n') ADVANCE(440);
      if (lookahead == '@') ADVANCE(66);
      if (lookahead != 0) ADVANCE(9);
      END_STATE();
    case 9:
      if (lookahead == '\n') ADVANCE(440);
      if (lookahead != 0 &&
          lookahead != '@') ADVANCE(9);
      END_STATE();
    case 10:
      if (lookahead == '\n') ADVANCE(438);
      if (lookahead == '@') ADVANCE(73);
      END_STATE();
    case 11:
      if (lookahead == '\n') ADVANCE(449);
      if (lookahead == '-') ADVANCE(22);
      if (lookahead == '.') ADVANCE(260);
      if (lookahead == ':') ADVANCE(447);
      if (lookahead == '?') ADVANCE(443);
      if (lookahead == '@') ADVANCE(448);
      if (lookahead == '[') ADVANCE(41);
      if (lookahead == '|') ADVANCE(280);
      if (lookahead == '\t' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(11);
      END_STATE();
    case 12:
      if (lookahead == '\n') ADVANCE(449);
      if (lookahead == '-') ADVANCE(22);
      if (lookahead == ':') ADVANCE(264);
      if (lookahead == '?') ADVANCE(443);
      if (lookahead == '@') ADVANCE(448);
      if (lookahead == '[') ADVANCE(41);
      if (lookahead == '|') ADVANCE(280);
      if (lookahead == '\t' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(12);
      END_STATE();
    case 13:
      if (lookahead == '\n') ADVANCE(449);
      if (lookahead == '-') ADVANCE(22);
      if (lookahead == ':') ADVANCE(263);
      if (lookahead == '?') ADVANCE(443);
      if (lookahead == '@') ADVANCE(448);
      if (lookahead == '[') ADVANCE(41);
      if (lookahead == '|') ADVANCE(280);
      if (lookahead == '\t' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(13);
      END_STATE();
    case 14:
      if (lookahead == '\n') ADVANCE(449);
      if (lookahead == '-') ADVANCE(25);
      if (lookahead == '\t' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(14);
      END_STATE();
    case 15:
      if (lookahead == '\n') SKIP(15)
      if (lookahead == '-') ADVANCE(460);
      if (lookahead == '\t' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(459);
      if (lookahead != 0) ADVANCE(461);
      END_STATE();
    case 16:
      if (lookahead == ' ') ADVANCE(40);
      END_STATE();
    case 17:
      if (lookahead == ' ') ADVANCE(44);
      END_STATE();
    case 18:
      if (lookahead == ' ') ADVANCE(45);
      END_STATE();
    case 19:
      if (lookahead == '!') ADVANCE(246);
      END_STATE();
    case 20:
      if (lookahead == '(') ADVANCE(445);
      if (lookahead == 'c') ADVANCE(187);
      END_STATE();
    case 21:
      if (lookahead == '-') ADVANCE(9);
      END_STATE();
    case 22:
      if (lookahead == '-') ADVANCE(472);
      END_STATE();
    case 23:
      if (lookahead == '-') ADVANCE(474);
      END_STATE();
    case 24:
      if (lookahead == '-') ADVANCE(21);
      END_STATE();
    case 25:
      if (lookahead == '-') ADVANCE(475);
      END_STATE();
    case 26:
      if (lookahead == '-') ADVANCE(476);
      END_STATE();
    case 27:
      if (lookahead == '-') ADVANCE(479);
      END_STATE();
    case 28:
      if (lookahead == '-') ADVANCE(477);
      END_STATE();
    case 29:
      if (lookahead == '-') ADVANCE(478);
      END_STATE();
    case 30:
      if (lookahead == '-') ADVANCE(480);
      END_STATE();
    case 31:
      if (lookahead == '-') ADVANCE(481);
      END_STATE();
    case 32:
      if (lookahead == '.') ADVANCE(296);
      END_STATE();
    case 33:
      if (lookahead == '.') ADVANCE(259);
      END_STATE();
    case 34:
      if (lookahead == '.') ADVANCE(33);
      END_STATE();
    case 35:
      if (lookahead == '.') ADVANCE(33);
      if (('0' <= lookahead && lookahead <= '9')) ADVANCE(256);
      END_STATE();
    case 36:
      if (lookahead == '<') ADVANCE(442);
      END_STATE();
    case 37:
      if (lookahead == '=') ADVANCE(275);
      END_STATE();
    case 38:
      if (lookahead == '[') ADVANCE(436);
      if (lookahead == ']') ADVANCE(441);
      END_STATE();
    case 39:
      if (lookahead == '[') ADVANCE(427);
      END_STATE();
    case 40:
      if (lookahead == '[') ADVANCE(39);
      END_STATE();
    case 41:
      if (lookahead == ']') ADVANCE(441);
      END_STATE();
    case 42:
      if (lookahead == ']') ADVANCE(437);
      END_STATE();
    case 43:
      if (lookahead == ']') ADVANCE(431);
      END_STATE();
    case 44:
      if (lookahead == ']') ADVANCE(42);
      END_STATE();
    case 45:
      if (lookahead == ']') ADVANCE(43);
      END_STATE();
    case 46:
      if (lookahead == 'a') ADVANCE(137);
      if (lookahead == 'o') ADVANCE(167);
      if (lookahead == 'u') ADVANCE(147);
      END_STATE();
    case 47:
      if (lookahead == 'a') ADVANCE(125);
      END_STATE();
    case 48:
      if (lookahead == 'a') ADVANCE(109);
      if (lookahead == 'o') ADVANCE(81);
      if (lookahead == 'y') ADVANCE(165);
      END_STATE();
    case 49:
      if (lookahead == 'a') ADVANCE(109);
      if (lookahead == 'y') ADVANCE(165);
      END_STATE();
    case 50:
      if (lookahead == 'a') ADVANCE(112);
      END_STATE();
    case 51:
      if (lookahead == 'a') ADVANCE(140);
      END_STATE();
    case 52:
      if (lookahead == 'a') ADVANCE(180);
      END_STATE();
    case 53:
      if (lookahead == 'a') ADVANCE(128);
      END_STATE();
    case 54:
      if (lookahead == 'a') ADVANCE(185);
      END_STATE();
    case 55:
      if (lookahead == 'a') ADVANCE(173);
      END_STATE();
    case 56:
      if (lookahead == 'a') ADVANCE(177);
      END_STATE();
    case 57:
      if (lookahead == 'a') ADVANCE(131);
      END_STATE();
    case 58:
      if (lookahead == 'a') ADVANCE(170);
      END_STATE();
    case 59:
      if (lookahead == 'a') ADVANCE(153);
      END_STATE();
    case 60:
      if (lookahead == 'a') ADVANCE(64);
      if (lookahead == 'h') ADVANCE(94);
      if (lookahead == 'r') ADVANCE(195);
      END_STATE();
    case 61:
      if (lookahead == 'a') ADVANCE(189);
      END_STATE();
    case 62:
      if (lookahead == 'a') ADVANCE(154);
      END_STATE();
    case 63:
      if (lookahead == 'b') ADVANCE(130);
      END_STATE();
    case 64:
      if (lookahead == 'b') ADVANCE(135);
      END_STATE();
    case 65:
      if (lookahead == 'b') ADVANCE(175);
      if (lookahead == 'c') ADVANCE(134);
      if (lookahead == 'e') ADVANCE(198);
      if (lookahead == 'f') ADVANCE(120);
      if (lookahead == 'n') ADVANCE(163);
      if (lookahead == 'p') ADVANCE(55);
      if (lookahead == 'r') ADVANCE(100);
      if (lookahead == 's') ADVANCE(102);
      if (lookahead == 't') ADVANCE(48);
      if (lookahead == 'u') ADVANCE(183);
      if (lookahead == 'v') ADVANCE(56);
      END_STATE();
    case 66:
      if (lookahead == 'b') ADVANCE(175);
      if (lookahead == 'c') ADVANCE(134);
      if (lookahead == 'f') ADVANCE(120);
      if (lookahead == 'r') ADVANCE(100);
      if (lookahead == 't') ADVANCE(49);
      END_STATE();
    case 67:
      if (lookahead == 'b') ADVANCE(175);
      if (lookahead == 'c') ADVANCE(134);
      if (lookahead == 'r') ADVANCE(100);
      if (lookahead == 't') ADVANCE(49);
      END_STATE();
    case 68:
      if (lookahead == 'b') ADVANCE(176);
      END_STATE();
    case 69:
      if (lookahead == 'c') ADVANCE(453);
      END_STATE();
    case 70:
      if (lookahead == 'c') ADVANCE(53);
      END_STATE();
    case 71:
      if (lookahead == 'c') ADVANCE(159);
      END_STATE();
    case 72:
      if (lookahead == 'c') ADVANCE(161);
      END_STATE();
    case 73:
      if (lookahead == 'c') ADVANCE(133);
      if (lookahead == 'e') ADVANCE(198);
      if (lookahead == 'f') ADVANCE(120);
      if (lookahead == 'n') ADVANCE(163);
      if (lookahead == 'p') ADVANCE(55);
      if (lookahead == 'r') ADVANCE(100);
      if (lookahead == 's') ADVANCE(102);
      if (lookahead == 't') ADVANCE(158);
      if (lookahead == 'u') ADVANCE(183);
      if (lookahead == 'v') ADVANCE(56);
      END_STATE();
    case 74:
      if (lookahead == 'c') ADVANCE(191);
      END_STATE();
    case 75:
      if (lookahead == 'd') ADVANCE(271);
      END_STATE();
    case 76:
      if (lookahead == 'd') ADVANCE(265);
      END_STATE();
    case 77:
      if (lookahead == 'd') ADVANCE(455);
      END_STATE();
    case 78:
      if (lookahead == 'd') ADVANCE(435);
      END_STATE();
    case 79:
      if (lookahead == 'd') ADVANCE(17);
      END_STATE();
    case 80:
      if (lookahead == 'd') ADVANCE(204);
      END_STATE();
    case 81:
      if (lookahead == 'd') ADVANCE(160);
      END_STATE();
    case 82:
      if (lookahead == 'e') ADVANCE(164);
      END_STATE();
    case 83:
      if (lookahead == 'e') ADVANCE(47);
      END_STATE();
    case 84:
      if (lookahead == 'e') ADVANCE(326);
      END_STATE();
    case 85:
      if (lookahead == 'e') ADVANCE(249);
      END_STATE();
    case 86:
      if (lookahead == 'e') ADVANCE(251);
      END_STATE();
    case 87:
      if (lookahead == 'e') ADVANCE(36);
      END_STATE();
    case 88:
      if (lookahead == 'e') ADVANCE(315);
      END_STATE();
    case 89:
      if (lookahead == 'e') ADVANCE(231);
      END_STATE();
    case 90:
      if (lookahead == 'e') ADVANCE(457);
      END_STATE();
    case 91:
      if (lookahead == 'e') ADVANCE(74);
      END_STATE();
    case 92:
      if (lookahead == 'e') ADVANCE(232);
      END_STATE();
    case 93:
      if (lookahead == 'e') ADVANCE(106);
      END_STATE();
    case 94:
      if (lookahead == 'e') ADVANCE(148);
      END_STATE();
    case 95:
      if (lookahead == 'e') ADVANCE(54);
      END_STATE();
    case 96:
      if (lookahead == 'e') ADVANCE(108);
      END_STATE();
    case 97:
      if (lookahead == 'e') ADVANCE(234);
      END_STATE();
    case 98:
      if (lookahead == 'e') ADVANCE(77);
      END_STATE();
    case 99:
      if (lookahead == 'e') ADVANCE(235);
      END_STATE();
    case 100:
      if (lookahead == 'e') ADVANCE(193);
      END_STATE();
    case 101:
      if (lookahead == 'e') ADVANCE(132);
      END_STATE();
    case 102:
      if (lookahead == 'e') ADVANCE(89);
      END_STATE();
    case 103:
      if (lookahead == 'e') ADVANCE(155);
      END_STATE();
    case 104:
      if (lookahead == 'f') ADVANCE(321);
      if (lookahead == 'n') ADVANCE(330);
      END_STATE();
    case 105:
      if (lookahead == 'f') ADVANCE(324);
      END_STATE();
    case 106:
      if (lookahead == 'f') ADVANCE(16);
      END_STATE();
    case 107:
      if (lookahead == 'f') ADVANCE(123);
      END_STATE();
    case 108:
      if (lookahead == 'f') ADVANCE(18);
      END_STATE();
    case 109:
      if (lookahead == 'g') ADVANCE(201);
      END_STATE();
    case 110:
      if (lookahead == 'g') ADVANCE(181);
      END_STATE();
    case 111:
      if (lookahead == 'g') ADVANCE(206);
      END_STATE();
    case 112:
      if (lookahead == 'g') ADVANCE(99);
      END_STATE();
    case 113:
      if (lookahead == 'h') ADVANCE(124);
      END_STATE();
    case 114:
      if (lookahead == 'h') ADVANCE(94);
      END_STATE();
    case 115:
      if (lookahead == 'i') ADVANCE(197);
      if (lookahead == 'o') ADVANCE(188);
      END_STATE();
    case 116:
      if (lookahead == 'i') ADVANCE(127);
      if (lookahead == 'o') ADVANCE(184);
      END_STATE();
    case 117:
      if (lookahead == 'i') ADVANCE(69);
      END_STATE();
    case 118:
      if (lookahead == 'i') ADVANCE(162);
      END_STATE();
    case 119:
      if (lookahead == 'i') ADVANCE(129);
      END_STATE();
    case 120:
      if (lookahead == 'i') ADVANCE(101);
      END_STATE();
    case 121:
      if (lookahead == 'i') ADVANCE(93);
      END_STATE();
    case 122:
      if (lookahead == 'i') ADVANCE(96);
      END_STATE();
    case 123:
      if (lookahead == 'i') ADVANCE(111);
      END_STATE();
    case 124:
      if (lookahead == 'i') ADVANCE(136);
      END_STATE();
    case 125:
      if (lookahead == 'k') ADVANCE(311);
      END_STATE();
    case 126:
      if (lookahead == 'l') ADVANCE(179);
      if (lookahead == 'n') ADVANCE(76);
      END_STATE();
    case 127:
      if (lookahead == 'l') ADVANCE(247);
      END_STATE();
    case 128:
      if (lookahead == 'l') ADVANCE(302);
      END_STATE();
    case 129:
      if (lookahead == 'l') ADVANCE(319);
      END_STATE();
    case 130:
      if (lookahead == 'l') ADVANCE(117);
      END_STATE();
    case 131:
      if (lookahead == 'l') ADVANCE(202);
      END_STATE();
    case 132:
      if (lookahead == 'l') ADVANCE(80);
      END_STATE();
    case 133:
      if (lookahead == 'l') ADVANCE(52);
      END_STATE();
    case 134:
      if (lookahead == 'l') ADVANCE(52);
      if (lookahead == 'o') ADVANCE(138);
      END_STATE();
    case 135:
      if (lookahead == 'l') ADVANCE(87);
      END_STATE();
    case 136:
      if (lookahead == 'l') ADVANCE(88);
      END_STATE();
    case 137:
      if (lookahead == 'l') ADVANCE(182);
      END_STATE();
    case 138:
      if (lookahead == 'm') ADVANCE(141);
      if (lookahead == 'n') ADVANCE(107);
      END_STATE();
    case 139:
      if (lookahead == 'm') ADVANCE(142);
      END_STATE();
    case 140:
      if (lookahead == 'm') ADVANCE(205);
      END_STATE();
    case 141:
      if (lookahead == 'm') ADVANCE(59);
      END_STATE();
    case 142:
      if (lookahead == 'm') ADVANCE(103);
      END_STATE();
    case 143:
      if (lookahead == 'm') ADVANCE(62);
      END_STATE();
    case 144:
      if (lookahead == 'm') ADVANCE(143);
      END_STATE();
    case 145:
      if (lookahead == 'n') ADVANCE(75);
      END_STATE();
    case 146:
      if (lookahead == 'n') ADVANCE(330);
      END_STATE();
    case 147:
      if (lookahead == 'n') ADVANCE(20);
      END_STATE();
    case 148:
      if (lookahead == 'n') ADVANCE(323);
      END_STATE();
    case 149:
      if (lookahead == 'n') ADVANCE(309);
      END_STATE();
    case 150:
      if (lookahead == 'n') ADVANCE(331);
      END_STATE();
    case 151:
      if (lookahead == 'n') ADVANCE(463);
      END_STATE();
    case 152:
      if (lookahead == 'n') ADVANCE(192);
      END_STATE();
    case 153:
      if (lookahead == 'n') ADVANCE(78);
      END_STATE();
    case 154:
      if (lookahead == 'n') ADVANCE(79);
      END_STATE();
    case 155:
      if (lookahead == 'n') ADVANCE(186);
      END_STATE();
    case 156:
      if (lookahead == 'o') ADVANCE(313);
      END_STATE();
    case 157:
      if (lookahead == 'o') ADVANCE(70);
      END_STATE();
    case 158:
      if (lookahead == 'o') ADVANCE(81);
      if (lookahead == 'y') ADVANCE(165);
      END_STATE();
    case 159:
      if (lookahead == 'o') ADVANCE(139);
      END_STATE();
    case 160:
      if (lookahead == 'o') ADVANCE(233);
      END_STATE();
    case 161:
      if (lookahead == 'o') ADVANCE(144);
      END_STATE();
    case 162:
      if (lookahead == 'o') ADVANCE(150);
      END_STATE();
    case 163:
      if (lookahead == 'o') ADVANCE(190);
      END_STATE();
    case 164:
      if (lookahead == 'p') ADVANCE(95);
      if (lookahead == 't') ADVANCE(194);
      END_STATE();
    case 165:
      if (lookahead == 'p') ADVANCE(97);
      END_STATE();
    case 166:
      if (lookahead == 'r') ADVANCE(269);
      END_STATE();
    case 167:
      if (lookahead == 'r') ADVANCE(328);
      END_STATE();
    case 168:
      if (lookahead == 'r') ADVANCE(115);
      if (lookahead == 'u') ADVANCE(63);
      END_STATE();
    case 169:
      if (lookahead == 'r') ADVANCE(83);
      END_STATE();
    case 170:
      if (lookahead == 'r') ADVANCE(110);
      END_STATE();
    case 171:
      if (lookahead == 'r') ADVANCE(149);
      END_STATE();
    case 172:
      if (lookahead == 'r') ADVANCE(151);
      END_STATE();
    case 173:
      if (lookahead == 'r') ADVANCE(51);
      END_STATE();
    case 174:
      if (lookahead == 'r') ADVANCE(100);
      if (lookahead == 't') ADVANCE(199);
      END_STATE();
    case 175:
      if (lookahead == 'r') ADVANCE(121);
      END_STATE();
    case 176:
      if (lookahead == 'r') ADVANCE(122);
      END_STATE();
    case 177:
      if (lookahead == 'r') ADVANCE(58);
      END_STATE();
    case 178:
      if (lookahead == 's') ADVANCE(203);
      END_STATE();
    case 179:
      if (lookahead == 's') ADVANCE(84);
      END_STATE();
    case 180:
      if (lookahead == 's') ADVANCE(178);
      END_STATE();
    case 181:
      if (lookahead == 's') ADVANCE(236);
      END_STATE();
    case 182:
      if (lookahead == 's') ADVANCE(86);
      END_STATE();
    case 183:
      if (lookahead == 's') ADVANCE(50);
      END_STATE();
    case 184:
      if (lookahead == 't') ADVANCE(298);
      END_STATE();
    case 185:
      if (lookahead == 't') ADVANCE(317);
      END_STATE();
    case 186:
      if (lookahead == 't') ADVANCE(464);
      END_STATE();
    case 187:
      if (lookahead == 't') ADVANCE(118);
      END_STATE();
    case 188:
      if (lookahead == 't') ADVANCE(91);
      END_STATE();
    case 189:
      if (lookahead == 't') ADVANCE(90);
      END_STATE();
    case 190:
      if (lookahead == 't') ADVANCE(92);
      END_STATE();
    case 191:
      if (lookahead == 't') ADVANCE(98);
      END_STATE();
    case 192:
      if (lookahead == 't') ADVANCE(119);
      END_STATE();
    case 193:
      if (lookahead == 't') ADVANCE(196);
      END_STATE();
    case 194:
      if (lookahead == 'u') ADVANCE(171);
      END_STATE();
    case 195:
      if (lookahead == 'u') ADVANCE(85);
      END_STATE();
    case 196:
      if (lookahead == 'u') ADVANCE(172);
      END_STATE();
    case 197:
      if (lookahead == 'v') ADVANCE(61);
      END_STATE();
    case 198:
      if (lookahead == 'v') ADVANCE(57);
      END_STATE();
    case 199:
      if (lookahead == 'y') ADVANCE(165);
      END_STATE();
    case 200:
      if (lookahead == '+' ||
          lookahead == '-') ADVANCE(228);
      if (('0' <= lookahead && lookahead <= '9')) ADVANCE(258);
      END_STATE();
    case 201:
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(425);
      END_STATE();
    case 202:
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(465);
      END_STATE();
    case 203:
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(446);
      END_STATE();
    case 204:
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(452);
      END_STATE();
    case 205:
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(450);
      END_STATE();
    case 206:
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(426);
      END_STATE();
    case 207:
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') SKIP(207)
      if (lookahead == '%') ADVANCE(295);
      if (lookahead == '&') ADVANCE(283);
      if (lookahead == '(') ADVANCE(420);
      if (lookahead == '*') ADVANCE(292);
      if (lookahead == '+') ADVANCE(286);
      if (lookahead == ',') ADVANCE(268);
      if (lookahead == '-') ADVANCE(291);
      if (lookahead == '.') ADVANCE(261);
      if (lookahead == '/') ADVANCE(293);
      if (lookahead == ':') ADVANCE(263);
      if (lookahead == ';') ADVANCE(245);
      if (lookahead == '<') ADVANCE(273);
      if (lookahead == '=') ADVANCE(37);
      if (lookahead == '>') ADVANCE(279);
      if (lookahead == '[') ADVANCE(306);
      if (lookahead == '^') ADVANCE(297);
      if (lookahead == 'a') ADVANCE(386);
      if (lookahead == 'b') ADVANCE(403);
      if (lookahead == 'd') ADVANCE(392);
      if (lookahead == 'e') ADVANCE(377);
      if (lookahead == 'f') ADVANCE(393);
      if (lookahead == 'i') ADVANCE(365);
      if (lookahead == 'l') ADVANCE(394);
      if (lookahead == 'o') ADVANCE(399);
      if (lookahead == 'r') ADVANCE(354);
      if (lookahead == 'w') ADVANCE(367);
      if (lookahead == '{') ADVANCE(334);
      if (lookahead == '|') ADVANCE(280);
      if (lookahead == '~') ADVANCE(282);
      if (('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('c' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 208:
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') SKIP(208)
      if (lookahead == '%') ADVANCE(295);
      if (lookahead == '&') ADVANCE(283);
      if (lookahead == '(') ADVANCE(420);
      if (lookahead == '*') ADVANCE(292);
      if (lookahead == '+') ADVANCE(286);
      if (lookahead == ',') ADVANCE(268);
      if (lookahead == '-') ADVANCE(291);
      if (lookahead == '.') ADVANCE(261);
      if (lookahead == '/') ADVANCE(293);
      if (lookahead == ':') ADVANCE(263);
      if (lookahead == ';') ADVANCE(245);
      if (lookahead == '<') ADVANCE(273);
      if (lookahead == '=') ADVANCE(37);
      if (lookahead == '>') ADVANCE(279);
      if (lookahead == '[') ADVANCE(306);
      if (lookahead == '^') ADVANCE(297);
      if (lookahead == 'a') ADVANCE(386);
      if (lookahead == 'b') ADVANCE(403);
      if (lookahead == 'd') ADVANCE(392);
      if (lookahead == 'f') ADVANCE(393);
      if (lookahead == 'i') ADVANCE(365);
      if (lookahead == 'l') ADVANCE(394);
      if (lookahead == 'o') ADVANCE(399);
      if (lookahead == 'r') ADVANCE(354);
      if (lookahead == 'u') ADVANCE(391);
      if (lookahead == 'w') ADVANCE(367);
      if (lookahead == '{') ADVANCE(334);
      if (lookahead == '|') ADVANCE(280);
      if (lookahead == '~') ADVANCE(282);
      if (('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('c' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 209:
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(209);
      if (lookahead == '%') ADVANCE(295);
      if (lookahead == '&') ADVANCE(283);
      if (lookahead == '(') ADVANCE(420);
      if (lookahead == '*') ADVANCE(292);
      if (lookahead == '+') ADVANCE(286);
      if (lookahead == '-') ADVANCE(289);
      if (lookahead == '.') ADVANCE(261);
      if (lookahead == '/') ADVANCE(293);
      if (lookahead == ':') ADVANCE(263);
      if (lookahead == '<') ADVANCE(273);
      if (lookahead == '=') ADVANCE(37);
      if (lookahead == '>') ADVANCE(279);
      if (lookahead == '[') ADVANCE(306);
      if (lookahead == '^') ADVANCE(297);
      if (lookahead == 'a') ADVANCE(386);
      if (lookahead == 'f') ADVANCE(414);
      if (lookahead == 'l') ADVANCE(394);
      if (lookahead == 'o') ADVANCE(399);
      if (lookahead == '{') ADVANCE(334);
      if (lookahead == '|') ADVANCE(280);
      if (lookahead == '~') ADVANCE(282);
      if (('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('b' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 210:
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') SKIP(210)
      if (lookahead == '(') ADVANCE(420);
      if (lookahead == ',') ADVANCE(268);
      if (lookahead == '-') ADVANCE(30);
      if (lookahead == '.') ADVANCE(260);
      if (lookahead == ':') ADVANCE(263);
      if (lookahead == ';') ADVANCE(245);
      if (lookahead == '=') ADVANCE(304);
      if (lookahead == '[') ADVANCE(306);
      if (lookahead == 'b') ADVANCE(403);
      if (lookahead == 'd') ADVANCE(392);
      if (lookahead == 'e') ADVANCE(377);
      if (lookahead == 'f') ADVANCE(393);
      if (lookahead == 'i') ADVANCE(365);
      if (lookahead == 'l') ADVANCE(394);
      if (lookahead == 'r') ADVANCE(354);
      if (lookahead == 'w') ADVANCE(367);
      if (lookahead == '{') ADVANCE(334);
      if (('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 211:
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') SKIP(211)
      if (lookahead == '(') ADVANCE(420);
      if (lookahead == ',') ADVANCE(268);
      if (lookahead == '-') ADVANCE(30);
      if (lookahead == '.') ADVANCE(260);
      if (lookahead == ':') ADVANCE(263);
      if (lookahead == ';') ADVANCE(245);
      if (lookahead == '=') ADVANCE(304);
      if (lookahead == '[') ADVANCE(306);
      if (lookahead == 'b') ADVANCE(403);
      if (lookahead == 'd') ADVANCE(392);
      if (lookahead == 'f') ADVANCE(393);
      if (lookahead == 'i') ADVANCE(365);
      if (lookahead == 'l') ADVANCE(394);
      if (lookahead == 'r') ADVANCE(354);
      if (lookahead == 'u') ADVANCE(391);
      if (lookahead == 'w') ADVANCE(367);
      if (lookahead == '{') ADVANCE(334);
      if (('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 212:
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(212);
      if (lookahead == '(') ADVANCE(420);
      if (lookahead == '-') ADVANCE(23);
      if (lookahead == '.') ADVANCE(260);
      if (lookahead == ':') ADVANCE(263);
      if (lookahead == '?') ADVANCE(443);
      if (lookahead == '@') ADVANCE(71);
      if (lookahead == '[') ADVANCE(41);
      if (lookahead == 'f') ADVANCE(414);
      if (lookahead == 'l') ADVANCE(394);
      if (lookahead == '|') ADVANCE(280);
      if (('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 213:
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') SKIP(213)
      if (lookahead == '#') ADVANCE(300);
      if (lookahead == '(') ADVANCE(420);
      if (lookahead == ')') ADVANCE(421);
      if (lookahead == ',') ADVANCE(268);
      if (lookahead == '-') ADVANCE(288);
      if (lookahead == '.') ADVANCE(35);
      if (lookahead == '0') ADVANCE(253);
      if (lookahead == ':') ADVANCE(263);
      if (lookahead == '>') ADVANCE(278);
      if (lookahead == '?') ADVANCE(443);
      if (lookahead == '[') ADVANCE(41);
      if (lookahead == 'e') ADVANCE(377);
      if (lookahead == 'f') ADVANCE(343);
      if (lookahead == 'n') ADVANCE(373);
      if (lookahead == 't') ADVANCE(402);
      if (lookahead == '{') ADVANCE(334);
      if (lookahead == '|') ADVANCE(280);
      if (lookahead == '}') ADVANCE(335);
      if (lookahead == '~') ADVANCE(281);
      if (('1' <= lookahead && lookahead <= '9')) ADVANCE(254);
      if (('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 214:
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') SKIP(214)
      if (lookahead == '#') ADVANCE(300);
      if (lookahead == '(') ADVANCE(420);
      if (lookahead == '-') ADVANCE(288);
      if (lookahead == '.') ADVANCE(35);
      if (lookahead == '0') ADVANCE(253);
      if (lookahead == 'e') ADVANCE(390);
      if (lookahead == 'f') ADVANCE(343);
      if (lookahead == 'n') ADVANCE(373);
      if (lookahead == 't') ADVANCE(402);
      if (lookahead == '{') ADVANCE(334);
      if (lookahead == '~') ADVANCE(281);
      if (('1' <= lookahead && lookahead <= '9')) ADVANCE(254);
      if (('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 215:
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') SKIP(215)
      if (lookahead == '#') ADVANCE(300);
      if (lookahead == '(') ADVANCE(420);
      if (lookahead == '-') ADVANCE(288);
      if (lookahead == '.') ADVANCE(35);
      if (lookahead == '0') ADVANCE(253);
      if (lookahead == 'f') ADVANCE(343);
      if (lookahead == 'n') ADVANCE(373);
      if (lookahead == 't') ADVANCE(402);
      if (lookahead == 'u') ADVANCE(391);
      if (lookahead == '{') ADVANCE(334);
      if (lookahead == '~') ADVANCE(281);
      if (('1' <= lookahead && lookahead <= '9')) ADVANCE(254);
      if (('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 216:
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') SKIP(216)
      if (lookahead == ')') ADVANCE(421);
      if (lookahead == ',') ADVANCE(268);
      if (lookahead == '-') ADVANCE(22);
      if (lookahead == '.') ADVANCE(260);
      if (lookahead == '>') ADVANCE(278);
      if (lookahead == '?') ADVANCE(443);
      if (lookahead == '[') ADVANCE(41);
      if (lookahead == 'f') ADVANCE(417);
      if (lookahead == 't') ADVANCE(340);
      if (lookahead == '{') ADVANCE(334);
      if (lookahead == '|') ADVANCE(280);
      if (lookahead == '}') ADVANCE(335);
      if (('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 217:
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') SKIP(217)
      if (lookahead == '(') ADVANCE(420);
      if (lookahead == '-') ADVANCE(22);
      if (lookahead == 'f') ADVANCE(414);
      if (lookahead == 'l') ADVANCE(394);
      if (('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 218:
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') SKIP(218)
      if (lookahead == '(') ADVANCE(420);
      if (lookahead == ')') ADVANCE(421);
      if (lookahead == '-') ADVANCE(22);
      if (lookahead == '.') ADVANCE(34);
      if (lookahead == '[') ADVANCE(306);
      if (lookahead == '}') ADVANCE(335);
      if (('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 219:
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') SKIP(219)
      if (lookahead == '(') ADVANCE(420);
      if (lookahead == ')') ADVANCE(421);
      if (lookahead == ',') ADVANCE(267);
      if (lookahead == '-') ADVANCE(22);
      if (lookahead == '.') ADVANCE(260);
      if (lookahead == ':') ADVANCE(263);
      if (lookahead == '=') ADVANCE(304);
      if (lookahead == 'i') ADVANCE(146);
      END_STATE();
    case 220:
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') SKIP(220)
      if (lookahead == '-') ADVANCE(22);
      if (lookahead == 'p') ADVANCE(401);
      if (('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 221:
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(221);
      if (lookahead == '-') ADVANCE(26);
      END_STATE();
    case 222:
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') SKIP(222)
      if (lookahead == '(') ADVANCE(420);
      if (lookahead == '-') ADVANCE(22);
      if (lookahead == 'f') ADVANCE(414);
      if (('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 223:
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(451);
      if (lookahead == '-') ADVANCE(22);
      if (lookahead == '?') ADVANCE(443);
      END_STATE();
    case 224:
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') SKIP(224)
      if (lookahead == '%') ADVANCE(295);
      if (lookahead == '&') ADVANCE(283);
      if (lookahead == '(') ADVANCE(420);
      if (lookahead == '*') ADVANCE(292);
      if (lookahead == '+') ADVANCE(286);
      if (lookahead == ',') ADVANCE(268);
      if (lookahead == '-') ADVANCE(291);
      if (lookahead == '.') ADVANCE(261);
      if (lookahead == '/') ADVANCE(293);
      if (lookahead == ':') ADVANCE(263);
      if (lookahead == ';') ADVANCE(245);
      if (lookahead == '<') ADVANCE(273);
      if (lookahead == '=') ADVANCE(37);
      if (lookahead == '>') ADVANCE(279);
      if (lookahead == '[') ADVANCE(306);
      if (lookahead == '^') ADVANCE(297);
      if (lookahead == 'a') ADVANCE(386);
      if (lookahead == 'b') ADVANCE(403);
      if (lookahead == 'd') ADVANCE(392);
      if (lookahead == 'e') ADVANCE(390);
      if (lookahead == 'f') ADVANCE(393);
      if (lookahead == 'i') ADVANCE(365);
      if (lookahead == 'l') ADVANCE(394);
      if (lookahead == 'o') ADVANCE(399);
      if (lookahead == 'r') ADVANCE(354);
      if (lookahead == 'w') ADVANCE(367);
      if (lookahead == '{') ADVANCE(334);
      if (lookahead == '|') ADVANCE(280);
      if (lookahead == '~') ADVANCE(282);
      if (('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('c' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 225:
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') SKIP(225)
      if (lookahead == '(') ADVANCE(420);
      if (lookahead == ',') ADVANCE(268);
      if (lookahead == '-') ADVANCE(30);
      if (lookahead == '.') ADVANCE(260);
      if (lookahead == ':') ADVANCE(263);
      if (lookahead == ';') ADVANCE(245);
      if (lookahead == '=') ADVANCE(304);
      if (lookahead == '[') ADVANCE(306);
      if (lookahead == 'b') ADVANCE(403);
      if (lookahead == 'd') ADVANCE(392);
      if (lookahead == 'e') ADVANCE(390);
      if (lookahead == 'f') ADVANCE(393);
      if (lookahead == 'i') ADVANCE(365);
      if (lookahead == 'l') ADVANCE(394);
      if (lookahead == 'r') ADVANCE(354);
      if (lookahead == 'w') ADVANCE(367);
      if (lookahead == '{') ADVANCE(334);
      if (('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 226:
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(226);
      if (lookahead == '-') ADVANCE(27);
      END_STATE();
    case 227:
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(227);
      if (lookahead == '-') ADVANCE(28);
      END_STATE();
    case 228:
      if (('0' <= lookahead && lookahead <= '9')) ADVANCE(258);
      END_STATE();
    case 229:
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'F') ||
          ('a' <= lookahead && lookahead <= 'f')) ADVANCE(255);
      END_STATE();
    case 230:
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'F') ||
          ('a' <= lookahead && lookahead <= 'f')) ADVANCE(257);
      END_STATE();
    case 231:
      if (lookahead != 0 &&
          lookahead != '\n') ADVANCE(468);
      END_STATE();
    case 232:
      if (lookahead != 0 &&
          lookahead != '\n') ADVANCE(467);
      END_STATE();
    case 233:
      if (lookahead != 0 &&
          lookahead != '\n') ADVANCE(469);
      END_STATE();
    case 234:
      if (lookahead != 0 &&
          lookahead != '\n') ADVANCE(466);
      END_STATE();
    case 235:
      if (lookahead != 0 &&
          lookahead != '\n') ADVANCE(470);
      END_STATE();
    case 236:
      if (lookahead != 0 &&
          lookahead != '\n') ADVANCE(471);
      END_STATE();
    case 237:
      if (eof) ADVANCE(243);
      if (lookahead == 0) ADVANCE(244);
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(2);
      if (lookahead == '#') ADVANCE(19);
      if (lookahead == '(') ADVANCE(420);
      if (lookahead == ',') ADVANCE(268);
      if (lookahead == '-') ADVANCE(29);
      if (lookahead == '.') ADVANCE(260);
      if (lookahead == ':') ADVANCE(263);
      if (lookahead == ';') ADVANCE(245);
      if (lookahead == '=') ADVANCE(304);
      if (lookahead == '[') ADVANCE(306);
      if (lookahead == 'd') ADVANCE(392);
      if (lookahead == 'f') ADVANCE(393);
      if (lookahead == 'i') ADVANCE(365);
      if (lookahead == 'l') ADVANCE(394);
      if (lookahead == 'r') ADVANCE(354);
      if (lookahead == 'w') ADVANCE(367);
      if (lookahead == '{') ADVANCE(334);
      if (('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 238:
      if (eof) ADVANCE(243);
      if (lookahead == 0) ADVANCE(244);
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(3);
      if (lookahead == '%') ADVANCE(295);
      if (lookahead == '&') ADVANCE(283);
      if (lookahead == '(') ADVANCE(420);
      if (lookahead == '*') ADVANCE(292);
      if (lookahead == '+') ADVANCE(286);
      if (lookahead == ',') ADVANCE(268);
      if (lookahead == '-') ADVANCE(290);
      if (lookahead == '.') ADVANCE(261);
      if (lookahead == '/') ADVANCE(293);
      if (lookahead == ':') ADVANCE(263);
      if (lookahead == ';') ADVANCE(245);
      if (lookahead == '<') ADVANCE(273);
      if (lookahead == '=') ADVANCE(37);
      if (lookahead == '>') ADVANCE(279);
      if (lookahead == '[') ADVANCE(306);
      if (lookahead == '^') ADVANCE(297);
      if (lookahead == 'a') ADVANCE(386);
      if (lookahead == 'd') ADVANCE(392);
      if (lookahead == 'f') ADVANCE(393);
      if (lookahead == 'i') ADVANCE(365);
      if (lookahead == 'l') ADVANCE(394);
      if (lookahead == 'o') ADVANCE(399);
      if (lookahead == 'r') ADVANCE(354);
      if (lookahead == 'w') ADVANCE(367);
      if (lookahead == '{') ADVANCE(334);
      if (lookahead == '|') ADVANCE(280);
      if (lookahead == '~') ADVANCE(282);
      if (('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('b' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 239:
      if (eof) ADVANCE(243);
      if (lookahead == 0) ADVANCE(244);
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') SKIP(239)
      if (lookahead == '%') ADVANCE(295);
      if (lookahead == '&') ADVANCE(283);
      if (lookahead == '(') ADVANCE(420);
      if (lookahead == ')') ADVANCE(421);
      if (lookahead == '*') ADVANCE(292);
      if (lookahead == '+') ADVANCE(286);
      if (lookahead == ',') ADVANCE(268);
      if (lookahead == '-') ADVANCE(288);
      if (lookahead == '.') ADVANCE(261);
      if (lookahead == '/') ADVANCE(293);
      if (lookahead == ':') ADVANCE(263);
      if (lookahead == ';') ADVANCE(245);
      if (lookahead == '<') ADVANCE(273);
      if (lookahead == '=') ADVANCE(305);
      if (lookahead == '>') ADVANCE(279);
      if (lookahead == '[') ADVANCE(306);
      if (lookahead == ']') ADVANCE(308);
      if (lookahead == '^') ADVANCE(297);
      if (lookahead == 'a') ADVANCE(145);
      if (lookahead == 'd') ADVANCE(156);
      if (lookahead == 'e') ADVANCE(126);
      if (lookahead == 'i') ADVANCE(146);
      if (lookahead == 'o') ADVANCE(166);
      if (lookahead == 't') ADVANCE(114);
      if (lookahead == 'u') ADVANCE(152);
      if (lookahead == '{') ADVANCE(334);
      if (lookahead == '|') ADVANCE(280);
      if (lookahead == '}') ADVANCE(335);
      if (lookahead == '~') ADVANCE(282);
      END_STATE();
    case 240:
      if (eof) ADVANCE(243);
      if (lookahead == 0) ADVANCE(244);
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') SKIP(240)
      if (lookahead == '%') ADVANCE(295);
      if (lookahead == '&') ADVANCE(283);
      if (lookahead == ')') ADVANCE(421);
      if (lookahead == '*') ADVANCE(292);
      if (lookahead == '+') ADVANCE(286);
      if (lookahead == ',') ADVANCE(268);
      if (lookahead == '-') ADVANCE(288);
      if (lookahead == '.') ADVANCE(32);
      if (lookahead == '/') ADVANCE(293);
      if (lookahead == ';') ADVANCE(245);
      if (lookahead == '<') ADVANCE(273);
      if (lookahead == '=') ADVANCE(37);
      if (lookahead == '>') ADVANCE(279);
      if (lookahead == '?') ADVANCE(443);
      if (lookahead == '[') ADVANCE(38);
      if (lookahead == ']') ADVANCE(308);
      if (lookahead == '^') ADVANCE(297);
      if (lookahead == 'a') ADVANCE(145);
      if (lookahead == 'd') ADVANCE(156);
      if (lookahead == 'e') ADVANCE(126);
      if (lookahead == 'o') ADVANCE(166);
      if (lookahead == 't') ADVANCE(114);
      if (lookahead == 'u') ADVANCE(152);
      if (lookahead == '|') ADVANCE(280);
      if (lookahead == '}') ADVANCE(335);
      if (lookahead == '~') ADVANCE(282);
      END_STATE();
    case 241:
      if (eof) ADVANCE(243);
      if (lookahead == 0) ADVANCE(244);
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') SKIP(241)
      if (lookahead == '#') ADVANCE(300);
      if (lookahead == '(') ADVANCE(420);
      if (lookahead == ')') ADVANCE(421);
      if (lookahead == ',') ADVANCE(267);
      if (lookahead == '-') ADVANCE(288);
      if (lookahead == '.') ADVANCE(35);
      if (lookahead == '0') ADVANCE(253);
      if (lookahead == '[') ADVANCE(306);
      if (lookahead == 'f') ADVANCE(343);
      if (lookahead == 'n') ADVANCE(373);
      if (lookahead == 't') ADVANCE(402);
      if (lookahead == '{') ADVANCE(334);
      if (lookahead == '}') ADVANCE(335);
      if (lookahead == '~') ADVANCE(281);
      if (('1' <= lookahead && lookahead <= '9')) ADVANCE(254);
      if (('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 242:
      if (eof) ADVANCE(243);
      if (lookahead == 0) ADVANCE(244);
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(4);
      if (lookahead == '(') ADVANCE(420);
      if (lookahead == '-') ADVANCE(31);
      if (lookahead == 'd') ADVANCE(392);
      if (lookahead == 'f') ADVANCE(393);
      if (lookahead == 'i') ADVANCE(365);
      if (lookahead == 'l') ADVANCE(394);
      if (lookahead == 'r') ADVANCE(354);
      if (lookahead == 'w') ADVANCE(367);
      if (('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 243:
      ACCEPT_TOKEN(ts_builtin_sym_end);
      END_STATE();
    case 244:
      ACCEPT_TOKEN(anon_sym_);
      END_STATE();
    case 245:
      ACCEPT_TOKEN(anon_sym_SEMI);
      END_STATE();
    case 246:
      ACCEPT_TOKEN(sym_shebang);
      if (lookahead != 0 &&
          lookahead != '\n') ADVANCE(246);
      END_STATE();
    case 247:
      ACCEPT_TOKEN(sym_nil);
      END_STATE();
    case 248:
      ACCEPT_TOKEN(sym_nil);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 249:
      ACCEPT_TOKEN(anon_sym_true);
      END_STATE();
    case 250:
      ACCEPT_TOKEN(anon_sym_true);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 251:
      ACCEPT_TOKEN(anon_sym_false);
      END_STATE();
    case 252:
      ACCEPT_TOKEN(anon_sym_false);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 253:
      ACCEPT_TOKEN(sym_number);
      if (lookahead == '.') ADVANCE(256);
      if (lookahead == 'E' ||
          lookahead == 'e') ADVANCE(200);
      if (lookahead == 'X' ||
          lookahead == 'x') ADVANCE(229);
      if (('1' <= lookahead && lookahead <= '9')) ADVANCE(254);
      END_STATE();
    case 254:
      ACCEPT_TOKEN(sym_number);
      if (lookahead == '.') ADVANCE(256);
      if (lookahead == 'E' ||
          lookahead == 'e') ADVANCE(200);
      if (('0' <= lookahead && lookahead <= '9')) ADVANCE(254);
      END_STATE();
    case 255:
      ACCEPT_TOKEN(sym_number);
      if (lookahead == '.') ADVANCE(230);
      if (lookahead == 'P' ||
          lookahead == 'p') ADVANCE(200);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'F') ||
          ('a' <= lookahead && lookahead <= 'f')) ADVANCE(255);
      END_STATE();
    case 256:
      ACCEPT_TOKEN(sym_number);
      if (lookahead == 'E' ||
          lookahead == 'e') ADVANCE(200);
      if (('0' <= lookahead && lookahead <= '9')) ADVANCE(256);
      END_STATE();
    case 257:
      ACCEPT_TOKEN(sym_number);
      if (lookahead == 'P' ||
          lookahead == 'p') ADVANCE(200);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'F') ||
          ('a' <= lookahead && lookahead <= 'f')) ADVANCE(257);
      END_STATE();
    case 258:
      ACCEPT_TOKEN(sym_number);
      if (('0' <= lookahead && lookahead <= '9')) ADVANCE(258);
      END_STATE();
    case 259:
      ACCEPT_TOKEN(sym_ellipsis);
      END_STATE();
    case 260:
      ACCEPT_TOKEN(anon_sym_DOT);
      END_STATE();
    case 261:
      ACCEPT_TOKEN(anon_sym_DOT);
      if (lookahead == '.') ADVANCE(296);
      END_STATE();
    case 262:
      ACCEPT_TOKEN(anon_sym_DOT);
      if (lookahead == '.') ADVANCE(296);
      if (('0' <= lookahead && lookahead <= '9')) ADVANCE(256);
      END_STATE();
    case 263:
      ACCEPT_TOKEN(anon_sym_COLON);
      END_STATE();
    case 264:
      ACCEPT_TOKEN(anon_sym_COLON);
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(447);
      END_STATE();
    case 265:
      ACCEPT_TOKEN(anon_sym_end);
      END_STATE();
    case 266:
      ACCEPT_TOKEN(anon_sym_end);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 267:
      ACCEPT_TOKEN(aux_sym_parameter_list_token1);
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(267);
      END_STATE();
    case 268:
      ACCEPT_TOKEN(anon_sym_COMMA);
      END_STATE();
    case 269:
      ACCEPT_TOKEN(anon_sym_or);
      END_STATE();
    case 270:
      ACCEPT_TOKEN(anon_sym_or);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 271:
      ACCEPT_TOKEN(anon_sym_and);
      END_STATE();
    case 272:
      ACCEPT_TOKEN(anon_sym_and);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 273:
      ACCEPT_TOKEN(anon_sym_LT);
      if (lookahead == '<') ADVANCE(284);
      if (lookahead == '=') ADVANCE(274);
      END_STATE();
    case 274:
      ACCEPT_TOKEN(anon_sym_LT_EQ);
      END_STATE();
    case 275:
      ACCEPT_TOKEN(anon_sym_EQ_EQ);
      END_STATE();
    case 276:
      ACCEPT_TOKEN(anon_sym_TILDE_EQ);
      END_STATE();
    case 277:
      ACCEPT_TOKEN(anon_sym_GT_EQ);
      END_STATE();
    case 278:
      ACCEPT_TOKEN(anon_sym_GT);
      END_STATE();
    case 279:
      ACCEPT_TOKEN(anon_sym_GT);
      if (lookahead == '=') ADVANCE(277);
      if (lookahead == '>') ADVANCE(285);
      END_STATE();
    case 280:
      ACCEPT_TOKEN(anon_sym_PIPE);
      END_STATE();
    case 281:
      ACCEPT_TOKEN(anon_sym_TILDE);
      END_STATE();
    case 282:
      ACCEPT_TOKEN(anon_sym_TILDE);
      if (lookahead == '=') ADVANCE(276);
      END_STATE();
    case 283:
      ACCEPT_TOKEN(anon_sym_AMP);
      END_STATE();
    case 284:
      ACCEPT_TOKEN(anon_sym_LT_LT);
      END_STATE();
    case 285:
      ACCEPT_TOKEN(anon_sym_GT_GT);
      END_STATE();
    case 286:
      ACCEPT_TOKEN(anon_sym_PLUS);
      END_STATE();
    case 287:
      ACCEPT_TOKEN(anon_sym_DASH);
      if (lookahead == '-') ADVANCE(473);
      END_STATE();
    case 288:
      ACCEPT_TOKEN(anon_sym_DASH);
      if (lookahead == '-') ADVANCE(472);
      END_STATE();
    case 289:
      ACCEPT_TOKEN(anon_sym_DASH);
      if (lookahead == '-') ADVANCE(474);
      END_STATE();
    case 290:
      ACCEPT_TOKEN(anon_sym_DASH);
      if (lookahead == '-') ADVANCE(478);
      END_STATE();
    case 291:
      ACCEPT_TOKEN(anon_sym_DASH);
      if (lookahead == '-') ADVANCE(480);
      END_STATE();
    case 292:
      ACCEPT_TOKEN(anon_sym_STAR);
      END_STATE();
    case 293:
      ACCEPT_TOKEN(anon_sym_SLASH);
      if (lookahead == '/') ADVANCE(294);
      END_STATE();
    case 294:
      ACCEPT_TOKEN(anon_sym_SLASH_SLASH);
      END_STATE();
    case 295:
      ACCEPT_TOKEN(anon_sym_PERCENT);
      END_STATE();
    case 296:
      ACCEPT_TOKEN(anon_sym_DOT_DOT);
      END_STATE();
    case 297:
      ACCEPT_TOKEN(anon_sym_CARET);
      END_STATE();
    case 298:
      ACCEPT_TOKEN(anon_sym_not);
      END_STATE();
    case 299:
      ACCEPT_TOKEN(anon_sym_not);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 300:
      ACCEPT_TOKEN(anon_sym_POUND);
      END_STATE();
    case 301:
      ACCEPT_TOKEN(anon_sym_POUND);
      if (lookahead == '!') ADVANCE(246);
      END_STATE();
    case 302:
      ACCEPT_TOKEN(anon_sym_local);
      END_STATE();
    case 303:
      ACCEPT_TOKEN(anon_sym_local);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 304:
      ACCEPT_TOKEN(anon_sym_EQ);
      END_STATE();
    case 305:
      ACCEPT_TOKEN(anon_sym_EQ);
      if (lookahead == '=') ADVANCE(275);
      END_STATE();
    case 306:
      ACCEPT_TOKEN(anon_sym_LBRACK);
      END_STATE();
    case 307:
      ACCEPT_TOKEN(anon_sym_LBRACK);
      if (lookahead == '[') ADVANCE(436);
      if (lookahead == ']') ADVANCE(441);
      END_STATE();
    case 308:
      ACCEPT_TOKEN(anon_sym_RBRACK);
      END_STATE();
    case 309:
      ACCEPT_TOKEN(anon_sym_return);
      END_STATE();
    case 310:
      ACCEPT_TOKEN(anon_sym_return);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 311:
      ACCEPT_TOKEN(sym_break_statement);
      END_STATE();
    case 312:
      ACCEPT_TOKEN(sym_break_statement);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 313:
      ACCEPT_TOKEN(anon_sym_do);
      END_STATE();
    case 314:
      ACCEPT_TOKEN(anon_sym_do);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 315:
      ACCEPT_TOKEN(anon_sym_while);
      END_STATE();
    case 316:
      ACCEPT_TOKEN(anon_sym_while);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 317:
      ACCEPT_TOKEN(anon_sym_repeat);
      END_STATE();
    case 318:
      ACCEPT_TOKEN(anon_sym_repeat);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 319:
      ACCEPT_TOKEN(anon_sym_until);
      END_STATE();
    case 320:
      ACCEPT_TOKEN(anon_sym_until);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 321:
      ACCEPT_TOKEN(anon_sym_if);
      END_STATE();
    case 322:
      ACCEPT_TOKEN(anon_sym_if);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 323:
      ACCEPT_TOKEN(anon_sym_then);
      END_STATE();
    case 324:
      ACCEPT_TOKEN(anon_sym_elseif);
      END_STATE();
    case 325:
      ACCEPT_TOKEN(anon_sym_elseif);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 326:
      ACCEPT_TOKEN(anon_sym_else);
      if (lookahead == 'i') ADVANCE(105);
      END_STATE();
    case 327:
      ACCEPT_TOKEN(anon_sym_else);
      if (lookahead == 'i') ADVANCE(366);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 328:
      ACCEPT_TOKEN(anon_sym_for);
      END_STATE();
    case 329:
      ACCEPT_TOKEN(anon_sym_for);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 330:
      ACCEPT_TOKEN(anon_sym_in);
      END_STATE();
    case 331:
      ACCEPT_TOKEN(sym_function_start);
      END_STATE();
    case 332:
      ACCEPT_TOKEN(sym_function_start);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 333:
      ACCEPT_TOKEN(aux_sym_function_statement_token1);
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(333);
      END_STATE();
    case 334:
      ACCEPT_TOKEN(anon_sym_LBRACE);
      END_STATE();
    case 335:
      ACCEPT_TOKEN(anon_sym_RBRACE);
      END_STATE();
    case 336:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == '(') ADVANCE(445);
      if (lookahead == 'c') ADVANCE(413);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 337:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == '(') ADVANCE(444);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 338:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == '<') ADVANCE(442);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 339:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'a') ADVANCE(375);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('b' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 340:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'a') ADVANCE(346);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('b' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 341:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'a') ADVANCE(376);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('b' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 342:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'a') ADVANCE(406);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('b' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 343:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'a') ADVANCE(383);
      if (lookahead == 'u') ADVANCE(389);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('b' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 344:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'a') ADVANCE(410);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('b' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 345:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'b') ADVANCE(381);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 346:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'b') ADVANCE(382);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 347:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'c') ADVANCE(341);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 348:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'c') ADVANCE(408);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 349:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'c') ADVANCE(454);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 350:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'c') ADVANCE(411);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 351:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'd') ADVANCE(272);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 352:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'd') ADVANCE(266);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 353:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'd') ADVANCE(456);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 354:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'e') ADVANCE(397);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 355:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'e') ADVANCE(316);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 356:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'e') ADVANCE(327);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 357:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'e') ADVANCE(250);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 358:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'e') ADVANCE(252);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 359:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'e') ADVANCE(338);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 360:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'e') ADVANCE(458);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 361:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'e') ADVANCE(342);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 362:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'e') ADVANCE(350);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 363:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'e') ADVANCE(339);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 364:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'e') ADVANCE(353);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 365:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'f') ADVANCE(322);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 366:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'f') ADVANCE(325);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 367:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'h') ADVANCE(368);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 368:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'i') ADVANCE(380);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 369:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'i') ADVANCE(418);
      if (lookahead == 'o') ADVANCE(409);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 370:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'i') ADVANCE(395);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 371:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'i') ADVANCE(378);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 372:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'i') ADVANCE(349);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 373:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'i') ADVANCE(379);
      if (lookahead == 'o') ADVANCE(407);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 374:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'i') ADVANCE(396);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 375:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'k') ADVANCE(312);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 376:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'l') ADVANCE(303);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 377:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'l') ADVANCE(404);
      if (lookahead == 'n') ADVANCE(352);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 378:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'l') ADVANCE(320);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 379:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'l') ADVANCE(248);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 380:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'l') ADVANCE(355);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 381:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'l') ADVANCE(372);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 382:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'l') ADVANCE(359);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 383:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'l') ADVANCE(405);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 384:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'n') ADVANCE(310);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 385:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'n') ADVANCE(332);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 386:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'n') ADVANCE(351);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 387:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'n') ADVANCE(336);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 388:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'n') ADVANCE(337);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 389:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'n') ADVANCE(348);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 390:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'n') ADVANCE(352);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 391:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'n') ADVANCE(412);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 392:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'o') ADVANCE(314);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 393:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'o') ADVANCE(398);
      if (lookahead == 'u') ADVANCE(389);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 394:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'o') ADVANCE(347);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 395:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'o') ADVANCE(385);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 396:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'o') ADVANCE(388);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 397:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'p') ADVANCE(361);
      if (lookahead == 't') ADVANCE(415);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 398:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'r') ADVANCE(329);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 399:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'r') ADVANCE(270);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 400:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'r') ADVANCE(384);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 401:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'r') ADVANCE(369);
      if (lookahead == 'u') ADVANCE(345);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 402:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'r') ADVANCE(416);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 403:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'r') ADVANCE(363);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 404:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 's') ADVANCE(356);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 405:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 's') ADVANCE(358);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 406:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 't') ADVANCE(318);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 407:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 't') ADVANCE(299);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 408:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 't') ADVANCE(370);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 409:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 't') ADVANCE(362);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 410:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 't') ADVANCE(360);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 411:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 't') ADVANCE(364);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 412:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 't') ADVANCE(371);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 413:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 't') ADVANCE(374);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 414:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'u') ADVANCE(389);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 415:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'u') ADVANCE(400);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 416:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'u') ADVANCE(357);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 417:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'u') ADVANCE(387);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 418:
      ACCEPT_TOKEN(sym__identifier);
      if (lookahead == 'v') ADVANCE(344);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 419:
      ACCEPT_TOKEN(sym__identifier);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 420:
      ACCEPT_TOKEN(sym_left_paren);
      END_STATE();
    case 421:
      ACCEPT_TOKEN(anon_sym_RPAREN);
      END_STATE();
    case 422:
      ACCEPT_TOKEN(aux_sym_documentation_tag_token1);
      if (lookahead == '-') ADVANCE(423);
      if (lookahead == '\t' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(422);
      if (lookahead != 0 &&
          lookahead != '\n') ADVANCE(424);
      END_STATE();
    case 423:
      ACCEPT_TOKEN(aux_sym_documentation_tag_token1);
      if (lookahead == '-') ADVANCE(485);
      if (lookahead != 0 &&
          lookahead != '\n') ADVANCE(424);
      END_STATE();
    case 424:
      ACCEPT_TOKEN(aux_sym_documentation_tag_token1);
      if (lookahead != 0 &&
          lookahead != '\n') ADVANCE(424);
      END_STATE();
    case 425:
      ACCEPT_TOKEN(aux_sym__documentation_tag_container_token1);
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(425);
      END_STATE();
    case 426:
      ACCEPT_TOKEN(aux_sym__documentation_config_container_token1);
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(426);
      END_STATE();
    case 427:
      ACCEPT_TOKEN(aux_sym__documentation_brief_container_token1);
      END_STATE();
    case 428:
      ACCEPT_TOKEN(aux_sym__documentation_brief_container_token2);
      END_STATE();
    case 429:
      ACCEPT_TOKEN(aux_sym__documentation_brief_container_token2);
      if (lookahead == '@') ADVANCE(68);
      END_STATE();
    case 430:
      ACCEPT_TOKEN(aux_sym__documentation_brief_container_token2);
      if (lookahead == '@') ADVANCE(72);
      END_STATE();
    case 431:
      ACCEPT_TOKEN(aux_sym__documentation_brief_container_token3);
      END_STATE();
    case 432:
      ACCEPT_TOKEN(sym_documentation_command_content);
      if (lookahead == '-') ADVANCE(433);
      if (lookahead == '\t' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(432);
      if (lookahead != 0 &&
          lookahead != '\n' &&
          lookahead != '[') ADVANCE(434);
      END_STATE();
    case 433:
      ACCEPT_TOKEN(sym_documentation_command_content);
      if (lookahead == '-') ADVANCE(483);
      if (lookahead != 0 &&
          lookahead != '\n' &&
          lookahead != '[') ADVANCE(434);
      END_STATE();
    case 434:
      ACCEPT_TOKEN(sym_documentation_command_content);
      if (lookahead != 0 &&
          lookahead != '\n' &&
          lookahead != '[') ADVANCE(434);
      END_STATE();
    case 435:
      ACCEPT_TOKEN(aux_sym_documentation_command_token1);
      END_STATE();
    case 436:
      ACCEPT_TOKEN(aux_sym_documentation_command_token2);
      END_STATE();
    case 437:
      ACCEPT_TOKEN(aux_sym_documentation_command_token3);
      END_STATE();
    case 438:
      ACCEPT_TOKEN(sym_emmy_ignore);
      END_STATE();
    case 439:
      ACCEPT_TOKEN(sym_emmy_ignore);
      if (lookahead == '-') ADVANCE(24);
      END_STATE();
    case 440:
      ACCEPT_TOKEN(sym_emmy_comment);
      if (lookahead == '-') ADVANCE(24);
      END_STATE();
    case 441:
      ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK);
      END_STATE();
    case 442:
      ACCEPT_TOKEN(anon_sym_table_LT);
      END_STATE();
    case 443:
      ACCEPT_TOKEN(anon_sym_QMARK);
      END_STATE();
    case 444:
      ACCEPT_TOKEN(anon_sym_function_LPAREN);
      END_STATE();
    case 445:
      ACCEPT_TOKEN(anon_sym_fun_LPAREN);
      END_STATE();
    case 446:
      ACCEPT_TOKEN(aux_sym_emmy_class_token1);
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(446);
      END_STATE();
    case 447:
      ACCEPT_TOKEN(aux_sym_emmy_class_token2);
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(447);
      END_STATE();
    case 448:
      ACCEPT_TOKEN(aux_sym_emmy_class_token3);
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(448);
      END_STATE();
    case 449:
      ACCEPT_TOKEN(aux_sym_emmy_class_token4);
      if (lookahead == '\n') ADVANCE(449);
      if (lookahead == '\t' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(449);
      END_STATE();
    case 450:
      ACCEPT_TOKEN(aux_sym_emmy_parameter_token1);
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(450);
      END_STATE();
    case 451:
      ACCEPT_TOKEN(aux_sym_emmy_parameter_token2);
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(451);
      END_STATE();
    case 452:
      ACCEPT_TOKEN(aux_sym_emmy_field_token1);
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(452);
      END_STATE();
    case 453:
      ACCEPT_TOKEN(anon_sym_public);
      END_STATE();
    case 454:
      ACCEPT_TOKEN(anon_sym_public);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 455:
      ACCEPT_TOKEN(anon_sym_protected);
      END_STATE();
    case 456:
      ACCEPT_TOKEN(anon_sym_protected);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 457:
      ACCEPT_TOKEN(anon_sym_private);
      END_STATE();
    case 458:
      ACCEPT_TOKEN(anon_sym_private);
      if (('0' <= lookahead && lookahead <= '9') ||
          ('A' <= lookahead && lookahead <= 'Z') ||
          lookahead == '_' ||
          ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419);
      END_STATE();
    case 459:
      ACCEPT_TOKEN(aux_sym__multiline_emmy_string_token1);
      if (lookahead == '-') ADVANCE(460);
      if (lookahead == '\t' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(459);
      if (lookahead != 0 &&
          lookahead != '\n') ADVANCE(461);
      END_STATE();
    case 460:
      ACCEPT_TOKEN(aux_sym__multiline_emmy_string_token1);
      if (lookahead == '-') ADVANCE(484);
      if (lookahead != 0 &&
          lookahead != '\n') ADVANCE(461);
      END_STATE();
    case 461:
      ACCEPT_TOKEN(aux_sym__multiline_emmy_string_token1);
      if (lookahead != 0 &&
          lookahead != '\n') ADVANCE(461);
      END_STATE();
    case 462:
      ACCEPT_TOKEN(aux_sym__multiline_emmy_string_token2);
      if (lookahead != 0 &&
          lookahead != '\n') ADVANCE(462);
      END_STATE();
    case 463:
      ACCEPT_TOKEN(aux_sym_emmy_return_token1);
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(463);
      END_STATE();
    case 464:
      ACCEPT_TOKEN(anon_sym_ATcomment);
      END_STATE();
    case 465:
      ACCEPT_TOKEN(aux_sym__emmy_eval_container_token1);
      if (lookahead == '\t' ||
          lookahead == '\n' ||
          lookahead == '\r' ||
          lookahead == ' ') ADVANCE(465);
      END_STATE();
    case 466:
      ACCEPT_TOKEN(aux_sym_emmy_typedecl_token1);
      if (lookahead != 0 &&
          lookahead != '\n') ADVANCE(466);
      END_STATE();
    case 467:
      ACCEPT_TOKEN(aux_sym_emmy_note_token1);
      if (lookahead != 0 &&
          lookahead != '\n') ADVANCE(467);
      END_STATE();
    case 468:
      ACCEPT_TOKEN(aux_sym_emmy_see_token1);
      if (lookahead != 0 &&
          lookahead != '\n') ADVANCE(468);
      END_STATE();
    case 469:
      ACCEPT_TOKEN(aux_sym_emmy_todo_token1);
      if (lookahead != 0 &&
          lookahead != '\n') ADVANCE(469);
      END_STATE();
    case 470:
      ACCEPT_TOKEN(aux_sym_emmy_usage_token1);
      if (lookahead != 0 &&
          lookahead != '\n') ADVANCE(470);
      END_STATE();
    case 471:
      ACCEPT_TOKEN(aux_sym_emmy_varargs_token1);
      if (lookahead != 0 &&
          lookahead != '\n') ADVANCE(471);
      END_STATE();
    case 472:
      ACCEPT_TOKEN(anon_sym_DASH_DASH);
      END_STATE();
    case 473:
      ACCEPT_TOKEN(anon_sym_DASH_DASH);
      if (lookahead == '-') ADVANCE(5);
      END_STATE();
    case 474:
      ACCEPT_TOKEN(anon_sym_DASH_DASH);
      if (lookahead == '-') ADVANCE(10);
      END_STATE();
    case 475:
      ACCEPT_TOKEN(anon_sym_DASH_DASH);
      if (lookahead == '-') ADVANCE(462);
      END_STATE();
    case 476:
      ACCEPT_TOKEN(anon_sym_DASH_DASH);
      if (lookahead == '-') ADVANCE(430);
      END_STATE();
    case 477:
      ACCEPT_TOKEN(anon_sym_DASH_DASH);
      if (lookahead == '-') ADVANCE(428);
      END_STATE();
    case 478:
      ACCEPT_TOKEN(anon_sym_DASH_DASH);
      if (lookahead == '-') ADVANCE(6);
      END_STATE();
    case 479:
      ACCEPT_TOKEN(anon_sym_DASH_DASH);
      if (lookahead == '-') ADVANCE(429);
      END_STATE();
    case 480:
      ACCEPT_TOKEN(anon_sym_DASH_DASH);
      if (lookahead == '-') ADVANCE(7);
      END_STATE();
    case 481:
      ACCEPT_TOKEN(anon_sym_DASH_DASH);
      if (lookahead == '-') ADVANCE(8);
      END_STATE();
    case 482:
      ACCEPT_TOKEN(anon_sym_DASH_DASH);
      if (lookahead != 0 &&
          lookahead != '\n' &&
          lookahead != '\r') ADVANCE(488);
      END_STATE();
    case 483:
      ACCEPT_TOKEN(anon_sym_DASH_DASH);
      if (lookahead != 0 &&
          lookahead != '\n' &&
          lookahead != '[') ADVANCE(434);
      END_STATE();
    case 484:
      ACCEPT_TOKEN(anon_sym_DASH_DASH);
      if (lookahead != 0 &&
          lookahead != '\n') ADVANCE(461);
      END_STATE();
    case 485:
      ACCEPT_TOKEN(anon_sym_DASH_DASH);
      if (lookahead != 0 &&
          lookahead != '\n') ADVANCE(424);
      END_STATE();
    case 486:
      ACCEPT_TOKEN(aux_sym_comment_token1);
      if (lookahead == '-') ADVANCE(487);
      if (lookahead == '\t' ||
          lookahead == ' ') ADVANCE(486);
      if (lookahead != 0 &&
          lookahead != '\n' &&
          lookahead != '\r') ADVANCE(488);
      END_STATE();
    case 487:
      ACCEPT_TOKEN(aux_sym_comment_token1);
      if (lookahead == '-') ADVANCE(482);
      if (lookahead != 0 &&
          lookahead != '\n' &&
          lookahead != '\r') ADVANCE(488);
      END_STATE();
    case 488:
      ACCEPT_TOKEN(aux_sym_comment_token1);
      if (lookahead != 0 &&
          lookahead != '\n' &&
          lookahead != '\r') ADVANCE(488);
      END_STATE();
    default:
      return false;
  }
}

static const TSLexMode ts_lex_modes[STATE_COUNT] = {
  [0] = {.lex_state = 0, .external_lex_state = 1},
  [1] = {.lex_state = 237, .external_lex_state = 2},
  [2] = {.lex_state = 238, .external_lex_state = 3},
  [3] = {.lex_state = 238, .external_lex_state = 3},
  [4] = {.lex_state = 238, .external_lex_state = 3},
  [5] = {.lex_state = 238, .external_lex_state = 3},
  [6] = {.lex_state = 238, .external_lex_state = 3},
  [7] = {.lex_state = 238, .external_lex_state = 3},
  [8] = {.lex_state = 238, .external_lex_state = 3},
  [9] = {.lex_state = 238, .external_lex_state = 3},
  [10] = {.lex_state = 238, .external_lex_state = 3},
  [11] = {.lex_state = 238, .external_lex_state = 3},
  [12] = {.lex_state = 238, .external_lex_state = 3},
  [13] = {.lex_state = 238, .external_lex_state = 3},
  [14] = {.lex_state = 238, .external_lex_state = 3},
  [15] = {.lex_state = 207, .external_lex_state = 3},
  [16] = {.lex_state = 207, .external_lex_state = 3},
  [17] = {.lex_state = 207, .external_lex_state = 3},
  [18] = {.lex_state = 207, .external_lex_state = 3},
  [19] = {.lex_state = 207, .external_lex_state = 3},
  [20] = {.lex_state = 207, .external_lex_state = 3},
  [21] = {.lex_state = 207, .external_lex_state = 3},
  [22] = {.lex_state = 238, .external_lex_state = 3},
  [23] = {.lex_state = 207, .external_lex_state = 3},
  [24] = {.lex_state = 207, .external_lex_state = 3},
  [25] = {.lex_state = 207, .external_lex_state = 3},
  [26] = {.lex_state = 207, .external_lex_state = 3},
  [27] = {.lex_state = 208, .external_lex_state = 3},
  [28] = {.lex_state = 224, .external_lex_state = 3},
  [29] = {.lex_state = 208, .external_lex_state = 3},
  [30] = {.lex_state = 207, .external_lex_state = 3},
  [31] = {.lex_state = 224, .external_lex_state = 3},
  [32] = {.lex_state = 208, .external_lex_state = 3},
  [33] = {.lex_state = 208, .external_lex_state = 3},
  [34] = {.lex_state = 207, .external_lex_state = 3},
  [35] = {.lex_state = 208, .external_lex_state = 3},
  [36] = {.lex_state = 224, .external_lex_state = 3},
  [37] = {.lex_state = 208, .external_lex_state = 3},
  [38] = {.lex_state = 208, .external_lex_state = 3},
  [39] = {.lex_state = 224, .external_lex_state = 3},
  [40] = {.lex_state = 224, .external_lex_state = 3},
  [41] = {.lex_state = 224, .external_lex_state = 3},
  [42] = {.lex_state = 224, .external_lex_state = 3},
  [43] = {.lex_state = 208, .external_lex_state = 3},
  [44] = {.lex_state = 224, .external_lex_state = 3},
  [45] = {.lex_state = 208, .external_lex_state = 3},
  [46] = {.lex_state = 208, .external_lex_state = 3},
  [47] = {.lex_state = 224, .external_lex_state = 3},
  [48] = {.lex_state = 208, .external_lex_state = 3},
  [49] = {.lex_state = 224, .external_lex_state = 3},
  [50] = {.lex_state = 224, .external_lex_state = 3},
  [51] = {.lex_state = 209, .external_lex_state = 3},
  [52] = {.lex_state = 208, .external_lex_state = 3},
  [53] = {.lex_state = 209, .external_lex_state = 3},
  [54] = {.lex_state = 224, .external_lex_state = 3},
  [55] = {.lex_state = 209, .external_lex_state = 3},
  [56] = {.lex_state = 224, .external_lex_state = 3},
  [57] = {.lex_state = 208, .external_lex_state = 3},
  [58] = {.lex_state = 238, .external_lex_state = 3},
  [59] = {.lex_state = 238, .external_lex_state = 3},
  [60] = {.lex_state = 238, .external_lex_state = 3},
  [61] = {.lex_state = 238, .external_lex_state = 3},
  [62] = {.lex_state = 238, .external_lex_state = 3},
  [63] = {.lex_state = 238, .external_lex_state = 3},
  [64] = {.lex_state = 238, .external_lex_state = 3},
  [65] = {.lex_state = 238, .external_lex_state = 3},
  [66] = {.lex_state = 238, .external_lex_state = 3},
  [67] = {.lex_state = 238, .external_lex_state = 3},
  [68] = {.lex_state = 238, .external_lex_state = 3},
  [69] = {.lex_state = 238, .external_lex_state = 3},
  [70] = {.lex_state = 238, .external_lex_state = 3},
  [71] = {.lex_state = 238, .external_lex_state = 3},
  [72] = {.lex_state = 238, .external_lex_state = 3},
  [73] = {.lex_state = 238, .external_lex_state = 3},
  [74] = {.lex_state = 238, .external_lex_state = 3},
  [75] = {.lex_state = 238, .external_lex_state = 3},
  [76] = {.lex_state = 238, .external_lex_state = 3},
  [77] = {.lex_state = 238, .external_lex_state = 3},
  [78] = {.lex_state = 238, .external_lex_state = 3},
  [79] = {.lex_state = 239, .external_lex_state = 3},
  [80] = {.lex_state = 239, .external_lex_state = 3},
  [81] = {.lex_state = 207, .external_lex_state = 3},
  [82] = {.lex_state = 237, .external_lex_state = 2},
  [83] = {.lex_state = 207, .external_lex_state = 3},
  [84] = {.lex_state = 237, .external_lex_state = 2},
  [85] = {.lex_state = 207, .external_lex_state = 3},
  [86] = {.lex_state = 207, .external_lex_state = 3},
  [87] = {.lex_state = 207, .external_lex_state = 3},
  [88] = {.lex_state = 207, .external_lex_state = 3},
  [89] = {.lex_state = 207, .external_lex_state = 3},
  [90] = {.lex_state = 207, .external_lex_state = 3},
  [91] = {.lex_state = 207, .external_lex_state = 3},
  [92] = {.lex_state = 207, .external_lex_state = 3},
  [93] = {.lex_state = 207, .external_lex_state = 3},
  [94] = {.lex_state = 207, .external_lex_state = 3},
  [95] = {.lex_state = 207, .external_lex_state = 3},
  [96] = {.lex_state = 207, .external_lex_state = 3},
  [97] = {.lex_state = 207, .external_lex_state = 3},
  [98] = {.lex_state = 207, .external_lex_state = 3},
  [99] = {.lex_state = 207, .external_lex_state = 3},
  [100] = {.lex_state = 207, .external_lex_state = 3},
  [101] = {.lex_state = 237, .external_lex_state = 2},
  [102] = {.lex_state = 207, .external_lex_state = 3},
  [103] = {.lex_state = 207, .external_lex_state = 3},
  [104] = {.lex_state = 207, .external_lex_state = 3},
  [105] = {.lex_state = 238, .external_lex_state = 2},
  [106] = {.lex_state = 238, .external_lex_state = 2},
  [107] = {.lex_state = 238, .external_lex_state = 2},
  [108] = {.lex_state = 238, .external_lex_state = 2},
  [109] = {.lex_state = 238, .external_lex_state = 2},
  [110] = {.lex_state = 238, .external_lex_state = 2},
  [111] = {.lex_state = 238, .external_lex_state = 2},
  [112] = {.lex_state = 238, .external_lex_state = 2},
  [113] = {.lex_state = 238, .external_lex_state = 2},
  [114] = {.lex_state = 238, .external_lex_state = 2},
  [115] = {.lex_state = 238, .external_lex_state = 2},
  [116] = {.lex_state = 238, .external_lex_state = 2},
  [117] = {.lex_state = 238, .external_lex_state = 2},
  [118] = {.lex_state = 238, .external_lex_state = 2},
  [119] = {.lex_state = 238, .external_lex_state = 2},
  [120] = {.lex_state = 238, .external_lex_state = 2},
  [121] = {.lex_state = 238, .external_lex_state = 2},
  [122] = {.lex_state = 238, .external_lex_state = 2},
  [123] = {.lex_state = 237, .external_lex_state = 2},
  [124] = {.lex_state = 238, .external_lex_state = 2},
  [125] = {.lex_state = 238, .external_lex_state = 2},
  [126] = {.lex_state = 238, .external_lex_state = 2},
  [127] = {.lex_state = 238, .external_lex_state = 2},
  [128] = {.lex_state = 238, .external_lex_state = 2},
  [129] = {.lex_state = 238, .external_lex_state = 2},
  [130] = {.lex_state = 238, .external_lex_state = 2},
  [131] = {.lex_state = 238, .external_lex_state = 2},
  [132] = {.lex_state = 238, .external_lex_state = 2},
  [133] = {.lex_state = 238, .external_lex_state = 2},
  [134] = {.lex_state = 238, .external_lex_state = 2},
  [135] = {.lex_state = 238, .external_lex_state = 2},
  [136] = {.lex_state = 238, .external_lex_state = 2},
  [137] = {.lex_state = 238, .external_lex_state = 2},
  [138] = {.lex_state = 238, .external_lex_state = 2},
  [139] = {.lex_state = 238, .external_lex_state = 2},
  [140] = {.lex_state = 238, .external_lex_state = 2},
  [141] = {.lex_state = 238, .external_lex_state = 2},
  [142] = {.lex_state = 238, .external_lex_state = 2},
  [143] = {.lex_state = 238, .external_lex_state = 2},
  [144] = {.lex_state = 238, .external_lex_state = 2},
  [145] = {.lex_state = 238, .external_lex_state = 2},
  [146] = {.lex_state = 208, .external_lex_state = 3},
  [147] = {.lex_state = 208, .external_lex_state = 3},
  [148] = {.lex_state = 208, .external_lex_state = 3},
  [149] = {.lex_state = 208, .external_lex_state = 3},
  [150] = {.lex_state = 208, .external_lex_state = 3},
  [151] = {.lex_state = 208, .external_lex_state = 3},
  [152] = {.lex_state = 208, .external_lex_state = 3},
  [153] = {.lex_state = 238, .external_lex_state = 2},
  [154] = {.lex_state = 208, .external_lex_state = 3},
  [155] = {.lex_state = 224, .external_lex_state = 3},
  [156] = {.lex_state = 224, .external_lex_state = 3},
  [157] = {.lex_state = 224, .external_lex_state = 3},
  [158] = {.lex_state = 208, .external_lex_state = 3},
  [159] = {.lex_state = 224, .external_lex_state = 3},
  [160] = {.lex_state = 224, .external_lex_state = 3},
  [161] = {.lex_state = 224, .external_lex_state = 3},
  [162] = {.lex_state = 224, .external_lex_state = 3},
  [163] = {.lex_state = 208, .external_lex_state = 3},
  [164] = {.lex_state = 224, .external_lex_state = 3},
  [165] = {.lex_state = 208, .external_lex_state = 3},
  [166] = {.lex_state = 238, .external_lex_state = 2},
  [167] = {.lex_state = 238, .external_lex_state = 2},
  [168] = {.lex_state = 208, .external_lex_state = 3},
  [169] = {.lex_state = 238, .external_lex_state = 2},
  [170] = {.lex_state = 208, .external_lex_state = 3},
  [171] = {.lex_state = 208, .external_lex_state = 3},
  [172] = {.lex_state = 208, .external_lex_state = 3},
  [173] = {.lex_state = 208, .external_lex_state = 3},
  [174] = {.lex_state = 224, .external_lex_state = 3},
  [175] = {.lex_state = 224, .external_lex_state = 3},
  [176] = {.lex_state = 238, .external_lex_state = 2},
  [177] = {.lex_state = 238, .external_lex_state = 2},
  [178] = {.lex_state = 208, .external_lex_state = 3},
  [179] = {.lex_state = 224, .external_lex_state = 3},
  [180] = {.lex_state = 224, .external_lex_state = 3},
  [181] = {.lex_state = 224, .external_lex_state = 3},
  [182] = {.lex_state = 224, .external_lex_state = 3},
  [183] = {.lex_state = 224, .external_lex_state = 3},
  [184] = {.lex_state = 224, .external_lex_state = 3},
  [185] = {.lex_state = 239, .external_lex_state = 3},
  [186] = {.lex_state = 208, .external_lex_state = 3},
  [187] = {.lex_state = 224, .external_lex_state = 3},
  [188] = {.lex_state = 208, .external_lex_state = 3},
  [189] = {.lex_state = 224, .external_lex_state = 3},
  [190] = {.lex_state = 224, .external_lex_state = 3},
  [191] = {.lex_state = 208, .external_lex_state = 3},
  [192] = {.lex_state = 224, .external_lex_state = 3},
  [193] = {.lex_state = 238, .external_lex_state = 2},
  [194] = {.lex_state = 208, .external_lex_state = 3},
  [195] = {.lex_state = 238, .external_lex_state = 2},
  [196] = {.lex_state = 238, .external_lex_state = 2},
  [197] = {.lex_state = 238, .external_lex_state = 2},
  [198] = {.lex_state = 238, .external_lex_state = 2},
  [199] = {.lex_state = 238, .external_lex_state = 2},
  [200] = {.lex_state = 224, .external_lex_state = 3},
  [201] = {.lex_state = 209, .external_lex_state = 3},
  [202] = {.lex_state = 238, .external_lex_state = 2},
  [203] = {.lex_state = 209, .external_lex_state = 3},
  [204] = {.lex_state = 209, .external_lex_state = 3},
  [205] = {.lex_state = 209, .external_lex_state = 3},
  [206] = {.lex_state = 209, .external_lex_state = 3},
  [207] = {.lex_state = 239, .external_lex_state = 3},
  [208] = {.lex_state = 209, .external_lex_state = 3},
  [209] = {.lex_state = 209, .external_lex_state = 3},
  [210] = {.lex_state = 209, .external_lex_state = 3},
  [211] = {.lex_state = 209, .external_lex_state = 3},
  [212] = {.lex_state = 209, .external_lex_state = 3},
  [213] = {.lex_state = 209, .external_lex_state = 3},
  [214] = {.lex_state = 209, .external_lex_state = 3},
  [215] = {.lex_state = 209, .external_lex_state = 3},
  [216] = {.lex_state = 209, .external_lex_state = 3},
  [217] = {.lex_state = 209, .external_lex_state = 3},
  [218] = {.lex_state = 209, .external_lex_state = 3},
  [219] = {.lex_state = 209, .external_lex_state = 3},
  [220] = {.lex_state = 209, .external_lex_state = 3},
  [221] = {.lex_state = 209, .external_lex_state = 3},
  [222] = {.lex_state = 238, .external_lex_state = 2},
  [223] = {.lex_state = 209, .external_lex_state = 3},
  [224] = {.lex_state = 209, .external_lex_state = 3},
  [225] = {.lex_state = 207, .external_lex_state = 2},
  [226] = {.lex_state = 207, .external_lex_state = 2},
  [227] = {.lex_state = 207, .external_lex_state = 2},
  [228] = {.lex_state = 207, .external_lex_state = 2},
  [229] = {.lex_state = 207, .external_lex_state = 2},
  [230] = {.lex_state = 207, .external_lex_state = 2},
  [231] = {.lex_state = 207, .external_lex_state = 2},
  [232] = {.lex_state = 238, .external_lex_state = 2},
  [233] = {.lex_state = 207, .external_lex_state = 2},
  [234] = {.lex_state = 207, .external_lex_state = 2},
  [235] = {.lex_state = 207, .external_lex_state = 2},
  [236] = {.lex_state = 207, .external_lex_state = 2},
  [237] = {.lex_state = 207, .external_lex_state = 2},
  [238] = {.lex_state = 239, .external_lex_state = 3},
  [239] = {.lex_state = 207, .external_lex_state = 2},
  [240] = {.lex_state = 207, .external_lex_state = 2},
  [241] = {.lex_state = 207, .external_lex_state = 2},
  [242] = {.lex_state = 207, .external_lex_state = 2},
  [243] = {.lex_state = 207, .external_lex_state = 2},
  [244] = {.lex_state = 207, .external_lex_state = 2},
  [245] = {.lex_state = 207, .external_lex_state = 2},
  [246] = {.lex_state = 207, .external_lex_state = 2},
  [247] = {.lex_state = 207, .external_lex_state = 2},
  [248] = {.lex_state = 207, .external_lex_state = 2},
  [249] = {.lex_state = 207, .external_lex_state = 2},
  [250] = {.lex_state = 207, .external_lex_state = 2},
  [251] = {.lex_state = 207, .external_lex_state = 2},
  [252] = {.lex_state = 207, .external_lex_state = 2},
  [253] = {.lex_state = 207, .external_lex_state = 2},
  [254] = {.lex_state = 207, .external_lex_state = 2},
  [255] = {.lex_state = 207, .external_lex_state = 2},
  [256] = {.lex_state = 207, .external_lex_state = 2},
  [257] = {.lex_state = 207, .external_lex_state = 2},
  [258] = {.lex_state = 207, .external_lex_state = 2},
  [259] = {.lex_state = 207, .external_lex_state = 2},
  [260] = {.lex_state = 207, .external_lex_state = 2},
  [261] = {.lex_state = 207, .external_lex_state = 2},
  [262] = {.lex_state = 207, .external_lex_state = 2},
  [263] = {.lex_state = 207, .external_lex_state = 2},
  [264] = {.lex_state = 207, .external_lex_state = 2},
  [265] = {.lex_state = 207, .external_lex_state = 2},
  [266] = {.lex_state = 207, .external_lex_state = 2},
  [267] = {.lex_state = 239, .external_lex_state = 3},
  [268] = {.lex_state = 239, .external_lex_state = 3},
  [269] = {.lex_state = 210, .external_lex_state = 2},
  [270] = {.lex_state = 210, .external_lex_state = 2},
  [271] = {.lex_state = 207, .external_lex_state = 2},
  [272] = {.lex_state = 207, .external_lex_state = 2},
  [273] = {.lex_state = 207, .external_lex_state = 2},
  [274] = {.lex_state = 207, .external_lex_state = 2},
  [275] = {.lex_state = 239, .external_lex_state = 3},
  [276] = {.lex_state = 239, .external_lex_state = 3},
  [277] = {.lex_state = 207, .external_lex_state = 2},
  [278] = {.lex_state = 207, .external_lex_state = 2},
  [279] = {.lex_state = 207, .external_lex_state = 2},
  [280] = {.lex_state = 207, .external_lex_state = 2},
  [281] = {.lex_state = 207, .external_lex_state = 2},
  [282] = {.lex_state = 239, .external_lex_state = 3},
  [283] = {.lex_state = 207, .external_lex_state = 2},
  [284] = {.lex_state = 239, .external_lex_state = 3},
  [285] = {.lex_state = 239, .external_lex_state = 3},
  [286] = {.lex_state = 239, .external_lex_state = 3},
  [287] = {.lex_state = 239, .external_lex_state = 3},
  [288] = {.lex_state = 239, .external_lex_state = 3},
  [289] = {.lex_state = 207, .external_lex_state = 2},
  [290] = {.lex_state = 239, .external_lex_state = 3},
  [291] = {.lex_state = 239, .external_lex_state = 3},
  [292] = {.lex_state = 239, .external_lex_state = 3},
  [293] = {.lex_state = 239, .external_lex_state = 3},
  [294] = {.lex_state = 239, .external_lex_state = 3},
  [295] = {.lex_state = 207, .external_lex_state = 2},
  [296] = {.lex_state = 239, .external_lex_state = 3},
  [297] = {.lex_state = 239, .external_lex_state = 3},
  [298] = {.lex_state = 239, .external_lex_state = 3},
  [299] = {.lex_state = 210, .external_lex_state = 2},
  [300] = {.lex_state = 239, .external_lex_state = 3},
  [301] = {.lex_state = 239, .external_lex_state = 3},
  [302] = {.lex_state = 210, .external_lex_state = 2},
  [303] = {.lex_state = 224, .external_lex_state = 2},
  [304] = {.lex_state = 224, .external_lex_state = 2},
  [305] = {.lex_state = 224, .external_lex_state = 2},
  [306] = {.lex_state = 224, .external_lex_state = 2},
  [307] = {.lex_state = 224, .external_lex_state = 2},
  [308] = {.lex_state = 208, .external_lex_state = 2},
  [309] = {.lex_state = 224, .external_lex_state = 2},
  [310] = {.lex_state = 208, .external_lex_state = 2},
  [311] = {.lex_state = 224, .external_lex_state = 2},
  [312] = {.lex_state = 224, .external_lex_state = 2},
  [313] = {.lex_state = 224, .external_lex_state = 2},
  [314] = {.lex_state = 224, .external_lex_state = 2},
  [315] = {.lex_state = 224, .external_lex_state = 2},
  [316] = {.lex_state = 224, .external_lex_state = 2},
  [317] = {.lex_state = 224, .external_lex_state = 2},
  [318] = {.lex_state = 208, .external_lex_state = 2},
  [319] = {.lex_state = 208, .external_lex_state = 2},
  [320] = {.lex_state = 207, .external_lex_state = 2},
  [321] = {.lex_state = 224, .external_lex_state = 2},
  [322] = {.lex_state = 224, .external_lex_state = 2},
  [323] = {.lex_state = 208, .external_lex_state = 2},
  [324] = {.lex_state = 224, .external_lex_state = 2},
  [325] = {.lex_state = 224, .external_lex_state = 2},
  [326] = {.lex_state = 224, .external_lex_state = 2},
  [327] = {.lex_state = 208, .external_lex_state = 2},
  [328] = {.lex_state = 208, .external_lex_state = 2},
  [329] = {.lex_state = 224, .external_lex_state = 2},
  [330] = {.lex_state = 224, .external_lex_state = 2},
  [331] = {.lex_state = 208, .external_lex_state = 2},
  [332] = {.lex_state = 224, .external_lex_state = 2},
  [333] = {.lex_state = 224, .external_lex_state = 2},
  [334] = {.lex_state = 224, .external_lex_state = 2},
  [335] = {.lex_state = 208, .external_lex_state = 2},
  [336] = {.lex_state = 208, .external_lex_state = 2},
  [337] = {.lex_state = 224, .external_lex_state = 2},
  [338] = {.lex_state = 224, .external_lex_state = 2},
  [339] = {.lex_state = 224, .external_lex_state = 2},
  [340] = {.lex_state = 224, .external_lex_state = 2},
  [341] = {.lex_state = 224, .external_lex_state = 2},
  [342] = {.lex_state = 224, .external_lex_state = 2},
  [343] = {.lex_state = 224, .external_lex_state = 2},
  [344] = {.lex_state = 224, .external_lex_state = 2},
  [345] = {.lex_state = 224, .external_lex_state = 2},
  [346] = {.lex_state = 224, .external_lex_state = 2},
  [347] = {.lex_state = 208, .external_lex_state = 2},
  [348] = {.lex_state = 224, .external_lex_state = 2},
  [349] = {.lex_state = 210, .external_lex_state = 2},
  [350] = {.lex_state = 208, .external_lex_state = 2},
  [351] = {.lex_state = 208, .external_lex_state = 2},
  [352] = {.lex_state = 208, .external_lex_state = 2},
  [353] = {.lex_state = 208, .external_lex_state = 2},
  [354] = {.lex_state = 208, .external_lex_state = 2},
  [355] = {.lex_state = 224, .external_lex_state = 2},
  [356] = {.lex_state = 224, .external_lex_state = 2},
  [357] = {.lex_state = 224, .external_lex_state = 2},
  [358] = {.lex_state = 224, .external_lex_state = 2},
  [359] = {.lex_state = 207, .external_lex_state = 2},
  [360] = {.lex_state = 208, .external_lex_state = 2},
  [361] = {.lex_state = 208, .external_lex_state = 2},
  [362] = {.lex_state = 208, .external_lex_state = 2},
  [363] = {.lex_state = 208, .external_lex_state = 2},
  [364] = {.lex_state = 208, .external_lex_state = 2},
  [365] = {.lex_state = 224, .external_lex_state = 2},
  [366] = {.lex_state = 224, .external_lex_state = 2},
  [367] = {.lex_state = 208, .external_lex_state = 2},
  [368] = {.lex_state = 208, .external_lex_state = 2},
  [369] = {.lex_state = 208, .external_lex_state = 2},
  [370] = {.lex_state = 208, .external_lex_state = 2},
  [371] = {.lex_state = 208, .external_lex_state = 2},
  [372] = {.lex_state = 208, .external_lex_state = 2},
  [373] = {.lex_state = 208, .external_lex_state = 2},
  [374] = {.lex_state = 208, .external_lex_state = 2},
  [375] = {.lex_state = 208, .external_lex_state = 2},
  [376] = {.lex_state = 208, .external_lex_state = 2},
  [377] = {.lex_state = 208, .external_lex_state = 2},
  [378] = {.lex_state = 208, .external_lex_state = 2},
  [379] = {.lex_state = 208, .external_lex_state = 2},
  [380] = {.lex_state = 208, .external_lex_state = 2},
  [381] = {.lex_state = 208, .external_lex_state = 2},
  [382] = {.lex_state = 208, .external_lex_state = 2},
  [383] = {.lex_state = 208, .external_lex_state = 2},
  [384] = {.lex_state = 208, .external_lex_state = 2},
  [385] = {.lex_state = 208, .external_lex_state = 2},
  [386] = {.lex_state = 208, .external_lex_state = 2},
  [387] = {.lex_state = 224, .external_lex_state = 2},
  [388] = {.lex_state = 208, .external_lex_state = 2},
  [389] = {.lex_state = 224, .external_lex_state = 2},
  [390] = {.lex_state = 224, .external_lex_state = 2},
  [391] = {.lex_state = 224, .external_lex_state = 2},
  [392] = {.lex_state = 208, .external_lex_state = 2},
  [393] = {.lex_state = 208, .external_lex_state = 2},
  [394] = {.lex_state = 208, .external_lex_state = 2},
  [395] = {.lex_state = 224, .external_lex_state = 2},
  [396] = {.lex_state = 224, .external_lex_state = 2},
  [397] = {.lex_state = 224, .external_lex_state = 2},
  [398] = {.lex_state = 208, .external_lex_state = 2},
  [399] = {.lex_state = 224, .external_lex_state = 2},
  [400] = {.lex_state = 208, .external_lex_state = 2},
  [401] = {.lex_state = 208, .external_lex_state = 2},
  [402] = {.lex_state = 224, .external_lex_state = 2},
  [403] = {.lex_state = 224, .external_lex_state = 2},
  [404] = {.lex_state = 208, .external_lex_state = 2},
  [405] = {.lex_state = 224, .external_lex_state = 2},
  [406] = {.lex_state = 224, .external_lex_state = 2},
  [407] = {.lex_state = 208, .external_lex_state = 2},
  [408] = {.lex_state = 208, .external_lex_state = 2},
  [409] = {.lex_state = 208, .external_lex_state = 2},
  [410] = {.lex_state = 225, .external_lex_state = 2},
  [411] = {.lex_state = 209, .external_lex_state = 2},
  [412] = {.lex_state = 225, .external_lex_state = 2},
  [413] = {.lex_state = 225, .external_lex_state = 2},
  [414] = {.lex_state = 209, .external_lex_state = 2},
  [415] = {.lex_state = 224, .external_lex_state = 2},
  [416] = {.lex_state = 225, .external_lex_state = 2},
  [417] = {.lex_state = 225, .external_lex_state = 2},
  [418] = {.lex_state = 225, .external_lex_state = 2},
  [419] = {.lex_state = 225, .external_lex_state = 2},
  [420] = {.lex_state = 224, .external_lex_state = 2},
  [421] = {.lex_state = 225, .external_lex_state = 2},
  [422] = {.lex_state = 225, .external_lex_state = 2},
  [423] = {.lex_state = 225, .external_lex_state = 2},
  [424] = {.lex_state = 209, .external_lex_state = 2},
  [425] = {.lex_state = 225, .external_lex_state = 2},
  [426] = {.lex_state = 225, .external_lex_state = 2},
  [427] = {.lex_state = 239, .external_lex_state = 3},
  [428] = {.lex_state = 225, .external_lex_state = 2},
  [429] = {.lex_state = 239, .external_lex_state = 3},
  [430] = {.lex_state = 225, .external_lex_state = 2},
  [431] = {.lex_state = 225, .external_lex_state = 2},
  [432] = {.lex_state = 225, .external_lex_state = 2},
  [433] = {.lex_state = 225, .external_lex_state = 2},
  [434] = {.lex_state = 209, .external_lex_state = 2},
  [435] = {.lex_state = 209, .external_lex_state = 2},
  [436] = {.lex_state = 225, .external_lex_state = 2},
  [437] = {.lex_state = 225, .external_lex_state = 2},
  [438] = {.lex_state = 225, .external_lex_state = 2},
  [439] = {.lex_state = 225, .external_lex_state = 2},
  [440] = {.lex_state = 225, .external_lex_state = 2},
  [441] = {.lex_state = 225, .external_lex_state = 2},
  [442] = {.lex_state = 225, .external_lex_state = 2},
  [443] = {.lex_state = 225, .external_lex_state = 2},
  [444] = {.lex_state = 239, .external_lex_state = 3},
  [445] = {.lex_state = 225, .external_lex_state = 2},
  [446] = {.lex_state = 225, .external_lex_state = 2},
  [447] = {.lex_state = 225, .external_lex_state = 2},
  [448] = {.lex_state = 225, .external_lex_state = 2},
  [449] = {.lex_state = 225, .external_lex_state = 2},
  [450] = {.lex_state = 225, .external_lex_state = 2},
  [451] = {.lex_state = 225, .external_lex_state = 2},
  [452] = {.lex_state = 225, .external_lex_state = 2},
  [453] = {.lex_state = 225, .external_lex_state = 2},
  [454] = {.lex_state = 211, .external_lex_state = 2},
  [455] = {.lex_state = 209, .external_lex_state = 2},
  [456] = {.lex_state = 225, .external_lex_state = 2},
  [457] = {.lex_state = 225, .external_lex_state = 2},
  [458] = {.lex_state = 239, .external_lex_state = 3},
  [459] = {.lex_state = 225, .external_lex_state = 2},
  [460] = {.lex_state = 225, .external_lex_state = 2},
  [461] = {.lex_state = 225, .external_lex_state = 2},
  [462] = {.lex_state = 225, .external_lex_state = 2},
  [463] = {.lex_state = 225, .external_lex_state = 2},
  [464] = {.lex_state = 225, .external_lex_state = 2},
  [465] = {.lex_state = 208, .external_lex_state = 2},
  [466] = {.lex_state = 225, .external_lex_state = 2},
  [467] = {.lex_state = 209, .external_lex_state = 2},
  [468] = {.lex_state = 225, .external_lex_state = 2},
  [469] = {.lex_state = 225, .external_lex_state = 2},
  [470] = {.lex_state = 225, .external_lex_state = 2},
  [471] = {.lex_state = 225, .external_lex_state = 2},
  [472] = {.lex_state = 225, .external_lex_state = 2},
  [473] = {.lex_state = 225, .external_lex_state = 2},
  [474] = {.lex_state = 208, .external_lex_state = 2},
  [475] = {.lex_state = 225, .external_lex_state = 2},
  [476] = {.lex_state = 225, .external_lex_state = 2},
  [477] = {.lex_state = 209, .external_lex_state = 2},
  [478] = {.lex_state = 209, .external_lex_state = 2},
  [479] = {.lex_state = 225, .external_lex_state = 2},
  [480] = {.lex_state = 211, .external_lex_state = 2},
  [481] = {.lex_state = 225, .external_lex_state = 2},
  [482] = {.lex_state = 225, .external_lex_state = 2},
  [483] = {.lex_state = 225, .external_lex_state = 2},
  [484] = {.lex_state = 210, .external_lex_state = 2},
  [485] = {.lex_state = 209, .external_lex_state = 2},
  [486] = {.lex_state = 225, .external_lex_state = 2},
  [487] = {.lex_state = 225, .external_lex_state = 2},
  [488] = {.lex_state = 225, .external_lex_state = 2},
  [489] = {.lex_state = 225, .external_lex_state = 2},
  [490] = {.lex_state = 225, .external_lex_state = 2},
  [491] = {.lex_state = 225, .external_lex_state = 2},
  [492] = {.lex_state = 225, .external_lex_state = 2},
  [493] = {.lex_state = 209, .external_lex_state = 2},
  [494] = {.lex_state = 209, .external_lex_state = 2},
  [495] = {.lex_state = 225, .external_lex_state = 2},
  [496] = {.lex_state = 225, .external_lex_state = 2},
  [497] = {.lex_state = 211, .external_lex_state = 2},
  [498] = {.lex_state = 211, .external_lex_state = 2},
  [499] = {.lex_state = 225, .external_lex_state = 2},
  [500] = {.lex_state = 239, .external_lex_state = 3},
  [501] = {.lex_state = 225, .external_lex_state = 2},
  [502] = {.lex_state = 225, .external_lex_state = 2},
  [503] = {.lex_state = 225, .external_lex_state = 2},
  [504] = {.lex_state = 239, .external_lex_state = 3},
  [505] = {.lex_state = 239, .external_lex_state = 3},
  [506] = {.lex_state = 239, .external_lex_state = 3},
  [507] = {.lex_state = 240, .external_lex_state = 2},
  [508] = {.lex_state = 240, .external_lex_state = 2},
  [509] = {.lex_state = 239, .external_lex_state = 3},
  [510] = {.lex_state = 239, .external_lex_state = 3},
  [511] = {.lex_state = 239, .external_lex_state = 3},
  [512] = {.lex_state = 239, .external_lex_state = 3},
  [513] = {.lex_state = 239, .external_lex_state = 3},
  [514] = {.lex_state = 239, .external_lex_state = 3},
  [515] = {.lex_state = 239, .external_lex_state = 3},
  [516] = {.lex_state = 210, .external_lex_state = 2},
  [517] = {.lex_state = 239, .external_lex_state = 3},
  [518] = {.lex_state = 239, .external_lex_state = 3},
  [519] = {.lex_state = 239, .external_lex_state = 3},
  [520] = {.lex_state = 239, .external_lex_state = 3},
  [521] = {.lex_state = 239, .external_lex_state = 3},
  [522] = {.lex_state = 239, .external_lex_state = 3},
  [523] = {.lex_state = 239, .external_lex_state = 3},
  [524] = {.lex_state = 239, .external_lex_state = 3},
  [525] = {.lex_state = 239, .external_lex_state = 3},
  [526] = {.lex_state = 239, .external_lex_state = 3},
  [527] = {.lex_state = 239, .external_lex_state = 3},
  [528] = {.lex_state = 239, .external_lex_state = 3},
  [529] = {.lex_state = 239, .external_lex_state = 3},
  [530] = {.lex_state = 239, .external_lex_state = 3},
  [531] = {.lex_state = 239, .external_lex_state = 3},
  [532] = {.lex_state = 239, .external_lex_state = 3},
  [533] = {.lex_state = 239, .external_lex_state = 3},
  [534] = {.lex_state = 211, .external_lex_state = 2},
  [535] = {.lex_state = 239, .external_lex_state = 3},
  [536] = {.lex_state = 225, .external_lex_state = 2},
  [537] = {.lex_state = 239, .external_lex_state = 3},
  [538] = {.lex_state = 239, .external_lex_state = 3},
  [539] = {.lex_state = 239, .external_lex_state = 2},
  [540] = {.lex_state = 239, .external_lex_state = 2},
  [541] = {.lex_state = 239, .external_lex_state = 2},
  [542] = {.lex_state = 239, .external_lex_state = 2},
  [543] = {.lex_state = 239, .external_lex_state = 2},
  [544] = {.lex_state = 239, .external_lex_state = 2},
  [545] = {.lex_state = 239, .external_lex_state = 2},
  [546] = {.lex_state = 239, .external_lex_state = 2},
  [547] = {.lex_state = 239, .external_lex_state = 2},
  [548] = {.lex_state = 211, .external_lex_state = 2},
  [549] = {.lex_state = 225, .external_lex_state = 2},
  [550] = {.lex_state = 241, .external_lex_state = 3},
  [551] = {.lex_state = 241, .external_lex_state = 3},
  [552] = {.lex_state = 241, .external_lex_state = 3},
  [553] = {.lex_state = 241, .external_lex_state = 3},
  [554] = {.lex_state = 239, .external_lex_state = 3},
  [555] = {.lex_state = 241, .external_lex_state = 3},
  [556] = {.lex_state = 241, .external_lex_state = 3},
  [557] = {.lex_state = 241, .external_lex_state = 3},
  [558] = {.lex_state = 241, .external_lex_state = 3},
  [559] = {.lex_state = 241, .external_lex_state = 3},
  [560] = {.lex_state = 241, .external_lex_state = 3},
  [561] = {.lex_state = 241, .external_lex_state = 3},
  [562] = {.lex_state = 241, .external_lex_state = 3},
  [563] = {.lex_state = 241, .external_lex_state = 3},
  [564] = {.lex_state = 241, .external_lex_state = 3},
  [565] = {.lex_state = 241, .external_lex_state = 3},
  [566] = {.lex_state = 241, .external_lex_state = 3},
  [567] = {.lex_state = 241, .external_lex_state = 3},
  [568] = {.lex_state = 241, .external_lex_state = 3},
  [569] = {.lex_state = 239, .external_lex_state = 2},
  [570] = {.lex_state = 239, .external_lex_state = 2},
  [571] = {.lex_state = 241, .external_lex_state = 3},
  [572] = {.lex_state = 237, .external_lex_state = 3},
  [573] = {.lex_state = 237, .external_lex_state = 3},
  [574] = {.lex_state = 237, .external_lex_state = 3},
  [575] = {.lex_state = 237, .external_lex_state = 3},
  [576] = {.lex_state = 212, .external_lex_state = 2},
  [577] = {.lex_state = 212, .external_lex_state = 2},
  [578] = {.lex_state = 212, .external_lex_state = 2},
  [579] = {.lex_state = 237, .external_lex_state = 3},
  [580] = {.lex_state = 241, .external_lex_state = 3},
  [581] = {.lex_state = 241, .external_lex_state = 3},
  [582] = {.lex_state = 241, .external_lex_state = 3},
  [583] = {.lex_state = 241, .external_lex_state = 3},
  [584] = {.lex_state = 213, .external_lex_state = 3},
  [585] = {.lex_state = 241, .external_lex_state = 3},
  [586] = {.lex_state = 241, .external_lex_state = 3},
  [587] = {.lex_state = 241, .external_lex_state = 3},
  [588] = {.lex_state = 241, .external_lex_state = 3},
  [589] = {.lex_state = 241, .external_lex_state = 3},
  [590] = {.lex_state = 241, .external_lex_state = 3},
  [591] = {.lex_state = 237, .external_lex_state = 3},
  [592] = {.lex_state = 237, .external_lex_state = 3},
  [593] = {.lex_state = 237, .external_lex_state = 3},
  [594] = {.lex_state = 237, .external_lex_state = 3},
  [595] = {.lex_state = 237, .external_lex_state = 3},
  [596] = {.lex_state = 237, .external_lex_state = 3},
  [597] = {.lex_state = 237, .external_lex_state = 3},
  [598] = {.lex_state = 241, .external_lex_state = 3},
  [599] = {.lex_state = 237, .external_lex_state = 3},
  [600] = {.lex_state = 237, .external_lex_state = 3},
  [601] = {.lex_state = 237, .external_lex_state = 3},
  [602] = {.lex_state = 237, .external_lex_state = 3},
  [603] = {.lex_state = 237, .external_lex_state = 3},
  [604] = {.lex_state = 237, .external_lex_state = 3},
  [605] = {.lex_state = 237, .external_lex_state = 3},
  [606] = {.lex_state = 237, .external_lex_state = 3},
  [607] = {.lex_state = 237, .external_lex_state = 3},
  [608] = {.lex_state = 210, .external_lex_state = 3},
  [609] = {.lex_state = 241, .external_lex_state = 3},
  [610] = {.lex_state = 210, .external_lex_state = 3},
  [611] = {.lex_state = 214, .external_lex_state = 3},
  [612] = {.lex_state = 241, .external_lex_state = 3},
  [613] = {.lex_state = 241, .external_lex_state = 3},
  [614] = {.lex_state = 210, .external_lex_state = 3},
  [615] = {.lex_state = 215, .external_lex_state = 3},
  [616] = {.lex_state = 210, .external_lex_state = 3},
  [617] = {.lex_state = 210, .external_lex_state = 3},
  [618] = {.lex_state = 241, .external_lex_state = 3},
  [619] = {.lex_state = 241, .external_lex_state = 3},
  [620] = {.lex_state = 241, .external_lex_state = 3},
  [621] = {.lex_state = 241, .external_lex_state = 3},
  [622] = {.lex_state = 241, .external_lex_state = 3},
  [623] = {.lex_state = 241, .external_lex_state = 3},
  [624] = {.lex_state = 241, .external_lex_state = 3},
  [625] = {.lex_state = 241, .external_lex_state = 3},
  [626] = {.lex_state = 241, .external_lex_state = 3},
  [627] = {.lex_state = 241, .external_lex_state = 3},
  [628] = {.lex_state = 241, .external_lex_state = 3},
  [629] = {.lex_state = 241, .external_lex_state = 3},
  [630] = {.lex_state = 241, .external_lex_state = 3},
  [631] = {.lex_state = 241, .external_lex_state = 3},
  [632] = {.lex_state = 241, .external_lex_state = 3},
  [633] = {.lex_state = 241, .external_lex_state = 3},
  [634] = {.lex_state = 241, .external_lex_state = 3},
  [635] = {.lex_state = 241, .external_lex_state = 3},
  [636] = {.lex_state = 241, .external_lex_state = 3},
  [637] = {.lex_state = 241, .external_lex_state = 3},
  [638] = {.lex_state = 241, .external_lex_state = 3},
  [639] = {.lex_state = 241, .external_lex_state = 3},
  [640] = {.lex_state = 241, .external_lex_state = 3},
  [641] = {.lex_state = 241, .external_lex_state = 3},
  [642] = {.lex_state = 241, .external_lex_state = 3},
  [643] = {.lex_state = 241, .external_lex_state = 3},
  [644] = {.lex_state = 241, .external_lex_state = 3},
  [645] = {.lex_state = 241, .external_lex_state = 3},
  [646] = {.lex_state = 241, .external_lex_state = 3},
  [647] = {.lex_state = 241, .external_lex_state = 3},
  [648] = {.lex_state = 241, .external_lex_state = 3},
  [649] = {.lex_state = 241, .external_lex_state = 3},
  [650] = {.lex_state = 241, .external_lex_state = 3},
  [651] = {.lex_state = 241, .external_lex_state = 3},
  [652] = {.lex_state = 241, .external_lex_state = 3},
  [653] = {.lex_state = 241, .external_lex_state = 3},
  [654] = {.lex_state = 241, .external_lex_state = 3},
  [655] = {.lex_state = 241, .external_lex_state = 3},
  [656] = {.lex_state = 241, .external_lex_state = 3},
  [657] = {.lex_state = 239, .external_lex_state = 2},
  [658] = {.lex_state = 239, .external_lex_state = 2},
  [659] = {.lex_state = 241, .external_lex_state = 3},
  [660] = {.lex_state = 237, .external_lex_state = 2},
  [661] = {.lex_state = 241, .external_lex_state = 3},
  [662] = {.lex_state = 241, .external_lex_state = 3},
  [663] = {.lex_state = 237, .external_lex_state = 2},
  [664] = {.lex_state = 241, .external_lex_state = 3},
  [665] = {.lex_state = 241, .external_lex_state = 3},
  [666] = {.lex_state = 239, .external_lex_state = 2},
  [667] = {.lex_state = 241, .external_lex_state = 3},
  [668] = {.lex_state = 241, .external_lex_state = 3},
  [669] = {.lex_state = 241, .external_lex_state = 3},
  [670] = {.lex_state = 241, .external_lex_state = 3},
  [671] = {.lex_state = 241, .external_lex_state = 3},
  [672] = {.lex_state = 241, .external_lex_state = 3},
  [673] = {.lex_state = 241, .external_lex_state = 3},
  [674] = {.lex_state = 241, .external_lex_state = 3},
  [675] = {.lex_state = 241, .external_lex_state = 3},
  [676] = {.lex_state = 241, .external_lex_state = 3},
  [677] = {.lex_state = 241, .external_lex_state = 3},
  [678] = {.lex_state = 241, .external_lex_state = 3},
  [679] = {.lex_state = 241, .external_lex_state = 3},
  [680] = {.lex_state = 241, .external_lex_state = 3},
  [681] = {.lex_state = 241, .external_lex_state = 3},
  [682] = {.lex_state = 241, .external_lex_state = 3},
  [683] = {.lex_state = 241, .external_lex_state = 3},
  [684] = {.lex_state = 241, .external_lex_state = 3},
  [685] = {.lex_state = 241, .external_lex_state = 3},
  [686] = {.lex_state = 237, .external_lex_state = 2},
  [687] = {.lex_state = 241, .external_lex_state = 3},
  [688] = {.lex_state = 241, .external_lex_state = 3},
  [689] = {.lex_state = 241, .external_lex_state = 3},
  [690] = {.lex_state = 241, .external_lex_state = 3},
  [691] = {.lex_state = 241, .external_lex_state = 3},
  [692] = {.lex_state = 241, .external_lex_state = 3},
  [693] = {.lex_state = 241, .external_lex_state = 3},
  [694] = {.lex_state = 241, .external_lex_state = 3},
  [695] = {.lex_state = 241, .external_lex_state = 3},
  [696] = {.lex_state = 241, .external_lex_state = 3},
  [697] = {.lex_state = 241, .external_lex_state = 3},
  [698] = {.lex_state = 241, .external_lex_state = 3},
  [699] = {.lex_state = 241, .external_lex_state = 3},
  [700] = {.lex_state = 241, .external_lex_state = 3},
  [701] = {.lex_state = 241, .external_lex_state = 3},
  [702] = {.lex_state = 241, .external_lex_state = 3},
  [703] = {.lex_state = 241, .external_lex_state = 3},
  [704] = {.lex_state = 241, .external_lex_state = 3},
  [705] = {.lex_state = 241, .external_lex_state = 3},
  [706] = {.lex_state = 241, .external_lex_state = 3},
  [707] = {.lex_state = 241, .external_lex_state = 3},
  [708] = {.lex_state = 241, .external_lex_state = 3},
  [709] = {.lex_state = 241, .external_lex_state = 3},
  [710] = {.lex_state = 241, .external_lex_state = 3},
  [711] = {.lex_state = 241, .external_lex_state = 3},
  [712] = {.lex_state = 241, .external_lex_state = 3},
  [713] = {.lex_state = 241, .external_lex_state = 3},
  [714] = {.lex_state = 241, .external_lex_state = 3},
  [715] = {.lex_state = 241, .external_lex_state = 3},
  [716] = {.lex_state = 241, .external_lex_state = 3},
  [717] = {.lex_state = 241, .external_lex_state = 3},
  [718] = {.lex_state = 241, .external_lex_state = 3},
  [719] = {.lex_state = 241, .external_lex_state = 3},
  [720] = {.lex_state = 237, .external_lex_state = 2},
  [721] = {.lex_state = 241, .external_lex_state = 3},
  [722] = {.lex_state = 241, .external_lex_state = 3},
  [723] = {.lex_state = 241, .external_lex_state = 3},
  [724] = {.lex_state = 241, .external_lex_state = 3},
  [725] = {.lex_state = 241, .external_lex_state = 3},
  [726] = {.lex_state = 241, .external_lex_state = 3},
  [727] = {.lex_state = 241, .external_lex_state = 3},
  [728] = {.lex_state = 241, .external_lex_state = 3},
  [729] = {.lex_state = 241, .external_lex_state = 3},
  [730] = {.lex_state = 241, .external_lex_state = 3},
  [731] = {.lex_state = 241, .external_lex_state = 3},
  [732] = {.lex_state = 241, .external_lex_state = 3},
  [733] = {.lex_state = 241, .external_lex_state = 3},
  [734] = {.lex_state = 241, .external_lex_state = 3},
  [735] = {.lex_state = 241, .external_lex_state = 3},
  [736] = {.lex_state = 241, .external_lex_state = 3},
  [737] = {.lex_state = 241, .external_lex_state = 3},
  [738] = {.lex_state = 241, .external_lex_state = 3},
  [739] = {.lex_state = 241, .external_lex_state = 3},
  [740] = {.lex_state = 241, .external_lex_state = 3},
  [741] = {.lex_state = 241, .external_lex_state = 3},
  [742] = {.lex_state = 241, .external_lex_state = 3},
  [743] = {.lex_state = 241, .external_lex_state = 3},
  [744] = {.lex_state = 241, .external_lex_state = 3},
  [745] = {.lex_state = 241, .external_lex_state = 3},
  [746] = {.lex_state = 237, .external_lex_state = 2},
  [747] = {.lex_state = 241, .external_lex_state = 3},
  [748] = {.lex_state = 241, .external_lex_state = 3},
  [749] = {.lex_state = 241, .external_lex_state = 3},
  [750] = {.lex_state = 241, .external_lex_state = 3},
  [751] = {.lex_state = 237, .external_lex_state = 2},
  [752] = {.lex_state = 241, .external_lex_state = 3},
  [753] = {.lex_state = 241, .external_lex_state = 3},
  [754] = {.lex_state = 241, .external_lex_state = 3},
  [755] = {.lex_state = 241, .external_lex_state = 3},
  [756] = {.lex_state = 241, .external_lex_state = 3},
  [757] = {.lex_state = 241, .external_lex_state = 3},
  [758] = {.lex_state = 241, .external_lex_state = 3},
  [759] = {.lex_state = 237, .external_lex_state = 2},
  [760] = {.lex_state = 241, .external_lex_state = 3},
  [761] = {.lex_state = 241, .external_lex_state = 3},
  [762] = {.lex_state = 237, .external_lex_state = 2},
  [763] = {.lex_state = 241, .external_lex_state = 3},
  [764] = {.lex_state = 239, .external_lex_state = 2},
  [765] = {.lex_state = 241, .external_lex_state = 3},
  [766] = {.lex_state = 241, .external_lex_state = 3},
  [767] = {.lex_state = 241, .external_lex_state = 3},
  [768] = {.lex_state = 239, .external_lex_state = 2},
  [769] = {.lex_state = 241, .external_lex_state = 3},
  [770] = {.lex_state = 241, .external_lex_state = 3},
  [771] = {.lex_state = 237, .external_lex_state = 2},
  [772] = {.lex_state = 241, .external_lex_state = 3},
  [773] = {.lex_state = 241, .external_lex_state = 3},
  [774] = {.lex_state = 241, .external_lex_state = 3},
  [775] = {.lex_state = 241, .external_lex_state = 3},
  [776] = {.lex_state = 241, .external_lex_state = 3},
  [777] = {.lex_state = 241, .external_lex_state = 3},
  [778] = {.lex_state = 241, .external_lex_state = 3},
  [779] = {.lex_state = 241, .external_lex_state = 3},
  [780] = {.lex_state = 241, .external_lex_state = 3},
  [781] = {.lex_state = 210, .external_lex_state = 3},
  [782] = {.lex_state = 237, .external_lex_state = 2},
  [783] = {.lex_state = 211, .external_lex_state = 3},
  [784] = {.lex_state = 237, .external_lex_state = 2},
  [785] = {.lex_state = 237, .external_lex_state = 2},
  [786] = {.lex_state = 210, .external_lex_state = 3},
  [787] = {.lex_state = 210, .external_lex_state = 3},
  [788] = {.lex_state = 237, .external_lex_state = 2},
  [789] = {.lex_state = 211, .external_lex_state = 3},
  [790] = {.lex_state = 210, .external_lex_state = 3},
  [791] = {.lex_state = 210, .external_lex_state = 3},
  [792] = {.lex_state = 210, .external_lex_state = 3},
  [793] = {.lex_state = 237, .external_lex_state = 2},
  [794] = {.lex_state = 237, .external_lex_state = 2},
  [795] = {.lex_state = 225, .external_lex_state = 3},
  [796] = {.lex_state = 210, .external_lex_state = 3},
  [797] = {.lex_state = 211, .external_lex_state = 3},
  [798] = {.lex_state = 211, .external_lex_state = 3},
  [799] = {.lex_state = 237, .external_lex_state = 2},
  [800] = {.lex_state = 225, .external_lex_state = 3},
  [801] = {.lex_state = 237, .external_lex_state = 2},
  [802] = {.lex_state = 237, .external_lex_state = 2},
  [803] = {.lex_state = 242, .external_lex_state = 2},
  [804] = {.lex_state = 210, .external_lex_state = 3},
  [805] = {.lex_state = 237, .external_lex_state = 2},
  [806] = {.lex_state = 237, .external_lex_state = 2},
  [807] = {.lex_state = 237, .external_lex_state = 2},
  [808] = {.lex_state = 237, .external_lex_state = 2},
  [809] = {.lex_state = 212, .external_lex_state = 2},
  [810] = {.lex_state = 210, .external_lex_state = 3},
  [811] = {.lex_state = 237, .external_lex_state = 2},
  [812] = {.lex_state = 242, .external_lex_state = 2},
  [813] = {.lex_state = 239, .external_lex_state = 2},
  [814] = {.lex_state = 239, .external_lex_state = 2},
  [815] = {.lex_state = 239, .external_lex_state = 2},
  [816] = {.lex_state = 212, .external_lex_state = 2},
  [817] = {.lex_state = 225, .external_lex_state = 3},
  [818] = {.lex_state = 239, .external_lex_state = 2},
  [819] = {.lex_state = 239, .external_lex_state = 2},
  [820] = {.lex_state = 237, .external_lex_state = 2},
  [821] = {.lex_state = 237, .external_lex_state = 2},
  [822] = {.lex_state = 239, .external_lex_state = 2},
  [823] = {.lex_state = 237, .external_lex_state = 2},
  [824] = {.lex_state = 237, .external_lex_state = 2},
  [825] = {.lex_state = 237, .external_lex_state = 2},
  [826] = {.lex_state = 237, .external_lex_state = 2},
  [827] = {.lex_state = 237, .external_lex_state = 2},
  [828] = {.lex_state = 237, .external_lex_state = 2},
  [829] = {.lex_state = 210, .external_lex_state = 3},
  [830] = {.lex_state = 237, .external_lex_state = 2},
  [831] = {.lex_state = 237, .external_lex_state = 2},
  [832] = {.lex_state = 210, .external_lex_state = 3},
  [833] = {.lex_state = 210, .external_lex_state = 3},
  [834] = {.lex_state = 210, .external_lex_state = 3},
  [835] = {.lex_state = 237, .external_lex_state = 2},
  [836] = {.lex_state = 237, .external_lex_state = 2},
  [837] = {.lex_state = 237, .external_lex_state = 2},
  [838] = {.lex_state = 242, .external_lex_state = 2},
  [839] = {.lex_state = 237, .external_lex_state = 2},
  [840] = {.lex_state = 237, .external_lex_state = 2},
  [841] = {.lex_state = 237, .external_lex_state = 2},
  [842] = {.lex_state = 239, .external_lex_state = 2},
  [843] = {.lex_state = 237, .external_lex_state = 2},
  [844] = {.lex_state = 237, .external_lex_state = 2},
  [845] = {.lex_state = 237, .external_lex_state = 2},
  [846] = {.lex_state = 237, .external_lex_state = 2},
  [847] = {.lex_state = 237, .external_lex_state = 2},
  [848] = {.lex_state = 225, .external_lex_state = 3},
  [849] = {.lex_state = 237, .external_lex_state = 2},
  [850] = {.lex_state = 237, .external_lex_state = 2},
  [851] = {.lex_state = 237, .external_lex_state = 2},
  [852] = {.lex_state = 237, .external_lex_state = 2},
  [853] = {.lex_state = 237, .external_lex_state = 2},
  [854] = {.lex_state = 237, .external_lex_state = 2},
  [855] = {.lex_state = 225, .external_lex_state = 3},
  [856] = {.lex_state = 237, .external_lex_state = 2},
  [857] = {.lex_state = 210, .external_lex_state = 3},
  [858] = {.lex_state = 210, .external_lex_state = 3},
  [859] = {.lex_state = 237, .external_lex_state = 2},
  [860] = {.lex_state = 237, .external_lex_state = 2},
  [861] = {.lex_state = 237, .external_lex_state = 2},
  [862] = {.lex_state = 237, .external_lex_state = 2},
  [863] = {.lex_state = 210, .external_lex_state = 3},
  [864] = {.lex_state = 237, .external_lex_state = 2},
  [865] = {.lex_state = 212, .external_lex_state = 2},
  [866] = {.lex_state = 237, .external_lex_state = 2},
  [867] = {.lex_state = 237, .external_lex_state = 2},
  [868] = {.lex_state = 237, .external_lex_state = 2},
  [869] = {.lex_state = 211, .external_lex_state = 3},
  [870] = {.lex_state = 239, .external_lex_state = 2},
  [871] = {.lex_state = 239, .external_lex_state = 2},
  [872] = {.lex_state = 212, .external_lex_state = 2},
  [873] = {.lex_state = 239, .external_lex_state = 2},
  [874] = {.lex_state = 239, .external_lex_state = 2},
  [875] = {.lex_state = 239, .external_lex_state = 2},
  [876] = {.lex_state = 239, .external_lex_state = 2},
  [877] = {.lex_state = 239, .external_lex_state = 2},
  [878] = {.lex_state = 239, .external_lex_state = 2},
  [879] = {.lex_state = 239, .external_lex_state = 2},
  [880] = {.lex_state = 239, .external_lex_state = 2},
  [881] = {.lex_state = 212, .external_lex_state = 2},
  [882] = {.lex_state = 212, .external_lex_state = 2},
  [883] = {.lex_state = 212, .external_lex_state = 2},
  [884] = {.lex_state = 239, .external_lex_state = 2},
  [885] = {.lex_state = 239, .external_lex_state = 2},
  [886] = {.lex_state = 239, .external_lex_state = 2},
  [887] = {.lex_state = 212, .external_lex_state = 2},
  [888] = {.lex_state = 239, .external_lex_state = 2},
  [889] = {.lex_state = 239, .external_lex_state = 2},
  [890] = {.lex_state = 239, .external_lex_state = 2},
  [891] = {.lex_state = 239, .external_lex_state = 2},
  [892] = {.lex_state = 239, .external_lex_state = 2},
  [893] = {.lex_state = 239, .external_lex_state = 2},
  [894] = {.lex_state = 239, .external_lex_state = 2},
  [895] = {.lex_state = 239, .external_lex_state = 2},
  [896] = {.lex_state = 239, .external_lex_state = 2},
  [897] = {.lex_state = 239, .external_lex_state = 2},
  [898] = {.lex_state = 242, .external_lex_state = 2},
  [899] = {.lex_state = 242, .external_lex_state = 2},
  [900] = {.lex_state = 225, .external_lex_state = 3},
  [901] = {.lex_state = 237, .external_lex_state = 2},
  [902] = {.lex_state = 212, .external_lex_state = 2},
  [903] = {.lex_state = 212, .external_lex_state = 2},
  [904] = {.lex_state = 212, .external_lex_state = 2},
  [905] = {.lex_state = 242, .external_lex_state = 2},
  [906] = {.lex_state = 211, .external_lex_state = 3},
  [907] = {.lex_state = 242, .external_lex_state = 2},
  [908] = {.lex_state = 225, .external_lex_state = 3},
  [909] = {.lex_state = 242, .external_lex_state = 2},
  [910] = {.lex_state = 237, .external_lex_state = 2},
  [911] = {.lex_state = 212, .external_lex_state = 2},
  [912] = {.lex_state = 237, .external_lex_state = 2},
  [913] = {.lex_state = 237, .external_lex_state = 2},
  [914] = {.lex_state = 237, .external_lex_state = 2},
  [915] = {.lex_state = 237, .external_lex_state = 2},
  [916] = {.lex_state = 225, .external_lex_state = 3},
  [917] = {.lex_state = 211, .external_lex_state = 3},
  [918] = {.lex_state = 225, .external_lex_state = 3},
  [919] = {.lex_state = 237, .external_lex_state = 2},
  [920] = {.lex_state = 225, .external_lex_state = 3},
  [921] = {.lex_state = 225, .external_lex_state = 3},
  [922] = {.lex_state = 237, .external_lex_state = 2},
  [923] = {.lex_state = 237, .external_lex_state = 2},
  [924] = {.lex_state = 237, .external_lex_state = 2},
  [925] = {.lex_state = 237, .external_lex_state = 2},
  [926] = {.lex_state = 237, .external_lex_state = 2},
  [927] = {.lex_state = 225, .external_lex_state = 3},
  [928] = {.lex_state = 237, .external_lex_state = 2},
  [929] = {.lex_state = 225, .external_lex_state = 3},
  [930] = {.lex_state = 211, .external_lex_state = 3},
  [931] = {.lex_state = 237, .external_lex_state = 2},
  [932] = {.lex_state = 225, .external_lex_state = 3},
  [933] = {.lex_state = 237, .external_lex_state = 2},
  [934] = {.lex_state = 225, .external_lex_state = 3},
  [935] = {.lex_state = 225, .external_lex_state = 3},
  [936] = {.lex_state = 225, .external_lex_state = 3},
  [937] = {.lex_state = 212, .external_lex_state = 2},
  [938] = {.lex_state = 212, .external_lex_state = 2},
  [939] = {.lex_state = 212, .external_lex_state = 2},
  [940] = {.lex_state = 237, .external_lex_state = 2},
  [941] = {.lex_state = 212, .external_lex_state = 2},
  [942] = {.lex_state = 225, .external_lex_state = 3},
  [943] = {.lex_state = 210, .external_lex_state = 2},
  [944] = {.lex_state = 211, .external_lex_state = 3},
  [945] = {.lex_state = 237, .external_lex_state = 2},
  [946] = {.lex_state = 210, .external_lex_state = 2},
  [947] = {.lex_state = 237, .external_lex_state = 2},
  [948] = {.lex_state = 237, .external_lex_state = 2},
  [949] = {.lex_state = 225, .external_lex_state = 3},
  [950] = {.lex_state = 237, .external_lex_state = 2},
  [951] = {.lex_state = 237, .external_lex_state = 2},
  [952] = {.lex_state = 237, .external_lex_state = 2},
  [953] = {.lex_state = 210, .external_lex_state = 2},
  [954] = {.lex_state = 237, .external_lex_state = 2},
  [955] = {.lex_state = 225, .external_lex_state = 3},
  [956] = {.lex_state = 210, .external_lex_state = 2},
  [957] = {.lex_state = 212, .external_lex_state = 2},
  [958] = {.lex_state = 242, .external_lex_state = 2},
  [959] = {.lex_state = 225, .external_lex_state = 3},
  [960] = {.lex_state = 212, .external_lex_state = 2},
  [961] = {.lex_state = 212, .external_lex_state = 2},
  [962] = {.lex_state = 237, .external_lex_state = 2},
  [963] = {.lex_state = 237, .external_lex_state = 2},
  [964] = {.lex_state = 237, .external_lex_state = 2},
  [965] = {.lex_state = 211, .external_lex_state = 3},
  [966] = {.lex_state = 237, .external_lex_state = 2},
  [967] = {.lex_state = 237, .external_lex_state = 2},
  [968] = {.lex_state = 210, .external_lex_state = 2},
  [969] = {.lex_state = 211, .external_lex_state = 3},
  [970] = {.lex_state = 242, .external_lex_state = 2},
  [971] = {.lex_state = 210, .external_lex_state = 2},
  [972] = {.lex_state = 242, .external_lex_state = 2},
  [973] = {.lex_state = 242, .external_lex_state = 2},
  [974] = {.lex_state = 242, .external_lex_state = 2},
  [975] = {.lex_state = 242, .external_lex_state = 2},
  [976] = {.lex_state = 211, .external_lex_state = 3},
  [977] = {.lex_state = 211, .external_lex_state = 3},
  [978] = {.lex_state = 210, .external_lex_state = 2},
  [979] = {.lex_state = 210, .external_lex_state = 2},
  [980] = {.lex_state = 211, .external_lex_state = 3},
  [981] = {.lex_state = 211, .external_lex_state = 3},
  [982] = {.lex_state = 211, .external_lex_state = 3},
  [983] = {.lex_state = 211, .external_lex_state = 3},
  [984] = {.lex_state = 211, .external_lex_state = 3},
  [985] = {.lex_state = 211, .external_lex_state = 3},
  [986] = {.lex_state = 211, .external_lex_state = 3},
  [987] = {.lex_state = 210, .external_lex_state = 2},
  [988] = {.lex_state = 212, .external_lex_state = 2},
  [989] = {.lex_state = 212, .external_lex_state = 2},
  [990] = {.lex_state = 242, .external_lex_state = 2},
  [991] = {.lex_state = 242, .external_lex_state = 2},
  [992] = {.lex_state = 211, .external_lex_state = 3},
  [993] = {.lex_state = 237, .external_lex_state = 2},
  [994] = {.lex_state = 210, .external_lex_state = 2},
  [995] = {.lex_state = 210, .external_lex_state = 2},
  [996] = {.lex_state = 210, .external_lex_state = 2},
  [997] = {.lex_state = 210, .external_lex_state = 2},
  [998] = {.lex_state = 210, .external_lex_state = 2},
  [999] = {.lex_state = 210, .external_lex_state = 2},
  [1000] = {.lex_state = 210, .external_lex_state = 2},
  [1001] = {.lex_state = 210, .external_lex_state = 2},
  [1002] = {.lex_state = 210, .external_lex_state = 2},
  [1003] = {.lex_state = 210, .external_lex_state = 2},
  [1004] = {.lex_state = 210, .external_lex_state = 2},
  [1005] = {.lex_state = 210, .external_lex_state = 2},
  [1006] = {.lex_state = 210, .external_lex_state = 2},
  [1007] = {.lex_state = 210, .external_lex_state = 2},
  [1008] = {.lex_state = 210, .external_lex_state = 2},
  [1009] = {.lex_state = 210, .external_lex_state = 2},
  [1010] = {.lex_state = 210, .external_lex_state = 2},
  [1011] = {.lex_state = 210, .external_lex_state = 2},
  [1012] = {.lex_state = 210, .external_lex_state = 2},
  [1013] = {.lex_state = 210, .external_lex_state = 2},
  [1014] = {.lex_state = 210, .external_lex_state = 2},
  [1015] = {.lex_state = 210, .external_lex_state = 2},
  [1016] = {.lex_state = 210, .external_lex_state = 2},
  [1017] = {.lex_state = 210, .external_lex_state = 2},
  [1018] = {.lex_state = 210, .external_lex_state = 2},
  [1019] = {.lex_state = 210, .external_lex_state = 2},
  [1020] = {.lex_state = 210, .external_lex_state = 2},
  [1021] = {.lex_state = 210, .external_lex_state = 2},
  [1022] = {.lex_state = 210, .external_lex_state = 2},
  [1023] = {.lex_state = 210, .external_lex_state = 2},
  [1024] = {.lex_state = 210, .external_lex_state = 2},
  [1025] = {.lex_state = 210, .external_lex_state = 2},
  [1026] = {.lex_state = 210, .external_lex_state = 2},
  [1027] = {.lex_state = 210, .external_lex_state = 2},
  [1028] = {.lex_state = 210, .external_lex_state = 2},
  [1029] = {.lex_state = 210, .external_lex_state = 2},
  [1030] = {.lex_state = 210, .external_lex_state = 2},
  [1031] = {.lex_state = 210, .external_lex_state = 2},
  [1032] = {.lex_state = 210, .external_lex_state = 2},
  [1033] = {.lex_state = 210, .external_lex_state = 2},
  [1034] = {.lex_state = 210, .external_lex_state = 2},
  [1035] = {.lex_state = 210, .external_lex_state = 2},
  [1036] = {.lex_state = 210, .external_lex_state = 2},
  [1037] = {.lex_state = 210, .external_lex_state = 2},
  [1038] = {.lex_state = 210, .external_lex_state = 2},
  [1039] = {.lex_state = 237, .external_lex_state = 2},
  [1040] = {.lex_state = 237, .external_lex_state = 2},
  [1041] = {.lex_state = 237, .external_lex_state = 2},
  [1042] = {.lex_state = 237, .external_lex_state = 2},
  [1043] = {.lex_state = 237, .external_lex_state = 2},
  [1044] = {.lex_state = 237, .external_lex_state = 2},
  [1045] = {.lex_state = 210, .external_lex_state = 2},
  [1046] = {.lex_state = 212, .external_lex_state = 2},
  [1047] = {.lex_state = 212, .external_lex_state = 2},
  [1048] = {.lex_state = 237, .external_lex_state = 2},
  [1049] = {.lex_state = 210, .external_lex_state = 2},
  [1050] = {.lex_state = 210, .external_lex_state = 2},
  [1051] = {.lex_state = 210, .external_lex_state = 2},
  [1052] = {.lex_state = 210, .external_lex_state = 2},
  [1053] = {.lex_state = 211, .external_lex_state = 2},
  [1054] = {.lex_state = 211, .external_lex_state = 2},
  [1055] = {.lex_state = 211, .external_lex_state = 2},
  [1056] = {.lex_state = 225, .external_lex_state = 2},
  [1057] = {.lex_state = 211, .external_lex_state = 2},
  [1058] = {.lex_state = 225, .external_lex_state = 2},
  [1059] = {.lex_state = 211, .external_lex_state = 2},
  [1060] = {.lex_state = 225, .external_lex_state = 2},
  [1061] = {.lex_state = 225, .external_lex_state = 2},
  [1062] = {.lex_state = 225, .external_lex_state = 2},
  [1063] = {.lex_state = 225, .external_lex_state = 2},
  [1064] = {.lex_state = 211, .external_lex_state = 2},
  [1065] = {.lex_state = 225, .external_lex_state = 2},
  [1066] = {.lex_state = 225, .external_lex_state = 2},
  [1067] = {.lex_state = 211, .external_lex_state = 2},
  [1068] = {.lex_state = 225, .external_lex_state = 2},
  [1069] = {.lex_state = 211, .external_lex_state = 2},
  [1070] = {.lex_state = 212, .external_lex_state = 2},
  [1071] = {.lex_state = 211, .external_lex_state = 2},
  [1072] = {.lex_state = 225, .external_lex_state = 2},
  [1073] = {.lex_state = 225, .external_lex_state = 2},
  [1074] = {.lex_state = 225, .external_lex_state = 2},
  [1075] = {.lex_state = 225, .external_lex_state = 2},
  [1076] = {.lex_state = 225, .external_lex_state = 2},
  [1077] = {.lex_state = 225, .external_lex_state = 2},
  [1078] = {.lex_state = 225, .external_lex_state = 2},
  [1079] = {.lex_state = 225, .external_lex_state = 2},
  [1080] = {.lex_state = 225, .external_lex_state = 2},
  [1081] = {.lex_state = 225, .external_lex_state = 2},
  [1082] = {.lex_state = 225, .external_lex_state = 2},
  [1083] = {.lex_state = 225, .external_lex_state = 2},
  [1084] = {.lex_state = 225, .external_lex_state = 2},
  [1085] = {.lex_state = 225, .external_lex_state = 2},
  [1086] = {.lex_state = 210, .external_lex_state = 2},
  [1087] = {.lex_state = 210, .external_lex_state = 2},
  [1088] = {.lex_state = 225, .external_lex_state = 2},
  [1089] = {.lex_state = 225, .external_lex_state = 2},
  [1090] = {.lex_state = 210, .external_lex_state = 2},
  [1091] = {.lex_state = 225, .external_lex_state = 2},
  [1092] = {.lex_state = 225, .external_lex_state = 2},
  [1093] = {.lex_state = 210, .external_lex_state = 2},
  [1094] = {.lex_state = 210, .external_lex_state = 2},
  [1095] = {.lex_state = 210, .external_lex_state = 2},
  [1096] = {.lex_state = 225, .external_lex_state = 2},
  [1097] = {.lex_state = 225, .external_lex_state = 2},
  [1098] = {.lex_state = 211, .external_lex_state = 2},
  [1099] = {.lex_state = 225, .external_lex_state = 2},
  [1100] = {.lex_state = 225, .external_lex_state = 2},
  [1101] = {.lex_state = 225, .external_lex_state = 2},
  [1102] = {.lex_state = 225, .external_lex_state = 2},
  [1103] = {.lex_state = 225, .external_lex_state = 2},
  [1104] = {.lex_state = 225, .external_lex_state = 2},
  [1105] = {.lex_state = 225, .external_lex_state = 2},
  [1106] = {.lex_state = 225, .external_lex_state = 2},
  [1107] = {.lex_state = 225, .external_lex_state = 2},
  [1108] = {.lex_state = 225, .external_lex_state = 2},
  [1109] = {.lex_state = 225, .external_lex_state = 2},
  [1110] = {.lex_state = 210, .external_lex_state = 2},
  [1111] = {.lex_state = 225, .external_lex_state = 2},
  [1112] = {.lex_state = 225, .external_lex_state = 2},
  [1113] = {.lex_state = 225, .external_lex_state = 2},
  [1114] = {.lex_state = 210, .external_lex_state = 2},
  [1115] = {.lex_state = 210, .external_lex_state = 2},
  [1116] = {.lex_state = 211, .external_lex_state = 2},
  [1117] = {.lex_state = 211, .external_lex_state = 2},
  [1118] = {.lex_state = 225, .external_lex_state = 2},
  [1119] = {.lex_state = 225, .external_lex_state = 2},
  [1120] = {.lex_state = 225, .external_lex_state = 2},
  [1121] = {.lex_state = 225, .external_lex_state = 2},
  [1122] = {.lex_state = 225, .external_lex_state = 2},
  [1123] = {.lex_state = 225, .external_lex_state = 2},
  [1124] = {.lex_state = 225, .external_lex_state = 2},
  [1125] = {.lex_state = 225, .external_lex_state = 2},
  [1126] = {.lex_state = 225, .external_lex_state = 2},
  [1127] = {.lex_state = 225, .external_lex_state = 2},
  [1128] = {.lex_state = 225, .external_lex_state = 2},
  [1129] = {.lex_state = 211, .external_lex_state = 2},
  [1130] = {.lex_state = 225, .external_lex_state = 2},
  [1131] = {.lex_state = 211, .external_lex_state = 2},
  [1132] = {.lex_state = 211, .external_lex_state = 2},
  [1133] = {.lex_state = 211, .external_lex_state = 2},
  [1134] = {.lex_state = 211, .external_lex_state = 2},
  [1135] = {.lex_state = 211, .external_lex_state = 2},
  [1136] = {.lex_state = 210, .external_lex_state = 2},
  [1137] = {.lex_state = 225, .external_lex_state = 2},
  [1138] = {.lex_state = 211, .external_lex_state = 2},
  [1139] = {.lex_state = 210, .external_lex_state = 2},
  [1140] = {.lex_state = 210, .external_lex_state = 2},
  [1141] = {.lex_state = 211, .external_lex_state = 2},
  [1142] = {.lex_state = 211, .external_lex_state = 2},
  [1143] = {.lex_state = 211, .external_lex_state = 2},
  [1144] = {.lex_state = 211, .external_lex_state = 2},
  [1145] = {.lex_state = 211, .external_lex_state = 2},
  [1146] = {.lex_state = 225, .external_lex_state = 2},
  [1147] = {.lex_state = 211, .external_lex_state = 2},
  [1148] = {.lex_state = 211, .external_lex_state = 2},
  [1149] = {.lex_state = 211, .external_lex_state = 2},
  [1150] = {.lex_state = 211, .external_lex_state = 2},
  [1151] = {.lex_state = 211, .external_lex_state = 2},
  [1152] = {.lex_state = 211, .external_lex_state = 2},
  [1153] = {.lex_state = 211, .external_lex_state = 2},
  [1154] = {.lex_state = 211, .external_lex_state = 2},
  [1155] = {.lex_state = 211, .external_lex_state = 2},
  [1156] = {.lex_state = 211, .external_lex_state = 2},
  [1157] = {.lex_state = 211, .external_lex_state = 2},
  [1158] = {.lex_state = 211, .external_lex_state = 2},
  [1159] = {.lex_state = 211, .external_lex_state = 2},
  [1160] = {.lex_state = 211, .external_lex_state = 2},
  [1161] = {.lex_state = 211, .external_lex_state = 2},
  [1162] = {.lex_state = 211, .external_lex_state = 2},
  [1163] = {.lex_state = 211, .external_lex_state = 2},
  [1164] = {.lex_state = 211, .external_lex_state = 2},
  [1165] = {.lex_state = 211, .external_lex_state = 2},
  [1166] = {.lex_state = 211, .external_lex_state = 2},
  [1167] = {.lex_state = 211, .external_lex_state = 2},
  [1168] = {.lex_state = 211, .external_lex_state = 2},
  [1169] = {.lex_state = 225, .external_lex_state = 2},
  [1170] = {.lex_state = 225, .external_lex_state = 2},
  [1171] = {.lex_state = 211, .external_lex_state = 2},
  [1172] = {.lex_state = 211, .external_lex_state = 2},
  [1173] = {.lex_state = 210, .external_lex_state = 2},
  [1174] = {.lex_state = 210, .external_lex_state = 2},
  [1175] = {.lex_state = 211, .external_lex_state = 2},
  [1176] = {.lex_state = 210, .external_lex_state = 2},
  [1177] = {.lex_state = 210, .external_lex_state = 2},
  [1178] = {.lex_state = 210, .external_lex_state = 2},
  [1179] = {.lex_state = 210, .external_lex_state = 2},
  [1180] = {.lex_state = 210, .external_lex_state = 2},
  [1181] = {.lex_state = 211, .external_lex_state = 2},
  [1182] = {.lex_state = 211, .external_lex_state = 2},
  [1183] = {.lex_state = 211, .external_lex_state = 2},
  [1184] = {.lex_state = 211, .external_lex_state = 2},
  [1185] = {.lex_state = 211, .external_lex_state = 2},
  [1186] = {.lex_state = 211, .external_lex_state = 2},
  [1187] = {.lex_state = 211, .external_lex_state = 2},
  [1188] = {.lex_state = 211, .external_lex_state = 2},
  [1189] = {.lex_state = 211, .external_lex_state = 2},
  [1190] = {.lex_state = 211, .external_lex_state = 2},
  [1191] = {.lex_state = 210, .external_lex_state = 2},
  [1192] = {.lex_state = 210, .external_lex_state = 2},
  [1193] = {.lex_state = 210, .external_lex_state = 2},
  [1194] = {.lex_state = 210, .external_lex_state = 2},
  [1195] = {.lex_state = 210, .external_lex_state = 2},
  [1196] = {.lex_state = 210, .external_lex_state = 2},
  [1197] = {.lex_state = 210, .external_lex_state = 2},
  [1198] = {.lex_state = 210, .external_lex_state = 2},
  [1199] = {.lex_state = 210, .external_lex_state = 2},
  [1200] = {.lex_state = 210, .external_lex_state = 2},
  [1201] = {.lex_state = 210, .external_lex_state = 2},
  [1202] = {.lex_state = 211, .external_lex_state = 2},
  [1203] = {.lex_state = 225, .external_lex_state = 2},
  [1204] = {.lex_state = 212, .external_lex_state = 2},
  [1205] = {.lex_state = 212, .external_lex_state = 2},
  [1206] = {.lex_state = 212, .external_lex_state = 2},
  [1207] = {.lex_state = 225, .external_lex_state = 2},
  [1208] = {.lex_state = 211, .external_lex_state = 2},
  [1209] = {.lex_state = 211, .external_lex_state = 2},
  [1210] = {.lex_state = 211, .external_lex_state = 2},
  [1211] = {.lex_state = 225, .external_lex_state = 2},
  [1212] = {.lex_state = 225, .external_lex_state = 2},
  [1213] = {.lex_state = 225, .external_lex_state = 2},
  [1214] = {.lex_state = 225, .external_lex_state = 2},
  [1215] = {.lex_state = 225, .external_lex_state = 2},
  [1216] = {.lex_state = 212, .external_lex_state = 2},
  [1217] = {.lex_state = 212, .external_lex_state = 2},
  [1218] = {.lex_state = 225, .external_lex_state = 2},
  [1219] = {.lex_state = 212, .external_lex_state = 2},
  [1220] = {.lex_state = 225, .external_lex_state = 2},
  [1221] = {.lex_state = 211, .external_lex_state = 2},
  [1222] = {.lex_state = 225, .external_lex_state = 2},
  [1223] = {.lex_state = 225, .external_lex_state = 2},
  [1224] = {.lex_state = 211, .external_lex_state = 2},
  [1225] = {.lex_state = 211, .external_lex_state = 2},
  [1226] = {.lex_state = 211, .external_lex_state = 2},
  [1227] = {.lex_state = 211, .external_lex_state = 2},
  [1228] = {.lex_state = 211, .external_lex_state = 2},
  [1229] = {.lex_state = 225, .external_lex_state = 2},
  [1230] = {.lex_state = 211, .external_lex_state = 2},
  [1231] = {.lex_state = 225, .external_lex_state = 2},
  [1232] = {.lex_state = 225, .external_lex_state = 2},
  [1233] = {.lex_state = 225, .external_lex_state = 2},
  [1234] = {.lex_state = 225, .external_lex_state = 2},
  [1235] = {.lex_state = 225, .external_lex_state = 2},
  [1236] = {.lex_state = 211, .external_lex_state = 2},
  [1237] = {.lex_state = 212, .external_lex_state = 2},
  [1238] = {.lex_state = 212, .external_lex_state = 2},
  [1239] = {.lex_state = 212, .external_lex_state = 2},
  [1240] = {.lex_state = 212, .external_lex_state = 2},
  [1241] = {.lex_state = 211, .external_lex_state = 2},
  [1242] = {.lex_state = 212, .external_lex_state = 2},
  [1243] = {.lex_state = 225, .external_lex_state = 2},
  [1244] = {.lex_state = 225, .external_lex_state = 2},
  [1245] = {.lex_state = 212, .external_lex_state = 2},
  [1246] = {.lex_state = 212, .external_lex_state = 2},
  [1247] = {.lex_state = 211, .external_lex_state = 2},
  [1248] = {.lex_state = 211, .external_lex_state = 2},
  [1249] = {.lex_state = 211, .external_lex_state = 2},
  [1250] = {.lex_state = 211, .external_lex_state = 2},
  [1251] = {.lex_state = 211, .external_lex_state = 2},
  [1252] = {.lex_state = 211, .external_lex_state = 2},
  [1253] = {.lex_state = 212, .external_lex_state = 2},
  [1254] = {.lex_state = 211, .external_lex_state = 2},
  [1255] = {.lex_state = 211, .external_lex_state = 2},
  [1256] = {.lex_state = 225, .external_lex_state = 2},
  [1257] = {.lex_state = 211, .external_lex_state = 2},
  [1258] = {.lex_state = 212, .external_lex_state = 2},
  [1259] = {.lex_state = 211, .external_lex_state = 2},
  [1260] = {.lex_state = 211, .external_lex_state = 2},
  [1261] = {.lex_state = 212, .external_lex_state = 2},
  [1262] = {.lex_state = 225, .external_lex_state = 2},
  [1263] = {.lex_state = 225, .external_lex_state = 2},
  [1264] = {.lex_state = 212, .external_lex_state = 2},
  [1265] = {.lex_state = 225, .external_lex_state = 2},
  [1266] = {.lex_state = 225, .external_lex_state = 2},
  [1267] = {.lex_state = 211, .external_lex_state = 2},
  [1268] = {.lex_state = 212, .external_lex_state = 2},
  [1269] = {.lex_state = 212, .external_lex_state = 2},
  [1270] = {.lex_state = 225, .external_lex_state = 2},
  [1271] = {.lex_state = 225, .external_lex_state = 2},
  [1272] = {.lex_state = 211, .external_lex_state = 2},
  [1273] = {.lex_state = 225, .external_lex_state = 2},
  [1274] = {.lex_state = 211, .external_lex_state = 2},
  [1275] = {.lex_state = 225, .external_lex_state = 2},
  [1276] = {.lex_state = 211, .external_lex_state = 2},
  [1277] = {.lex_state = 212, .external_lex_state = 2},
  [1278] = {.lex_state = 212, .external_lex_state = 2},
  [1279] = {.lex_state = 212, .external_lex_state = 2},
  [1280] = {.lex_state = 212, .external_lex_state = 2},
  [1281] = {.lex_state = 212, .external_lex_state = 2},
  [1282] = {.lex_state = 225, .external_lex_state = 2},
  [1283] = {.lex_state = 211, .external_lex_state = 2},
  [1284] = {.lex_state = 211, .external_lex_state = 2},
  [1285] = {.lex_state = 225, .external_lex_state = 2},
  [1286] = {.lex_state = 225, .external_lex_state = 2},
  [1287] = {.lex_state = 216, .external_lex_state = 3},
  [1288] = {.lex_state = 216, .external_lex_state = 3},
  [1289] = {.lex_state = 216, .external_lex_state = 3},
  [1290] = {.lex_state = 216, .external_lex_state = 3},
  [1291] = {.lex_state = 216, .external_lex_state = 3},
  [1292] = {.lex_state = 216, .external_lex_state = 3},
  [1293] = {.lex_state = 216, .external_lex_state = 3},
  [1294] = {.lex_state = 216, .external_lex_state = 3},
  [1295] = {.lex_state = 216, .external_lex_state = 3},
  [1296] = {.lex_state = 216, .external_lex_state = 3},
  [1297] = {.lex_state = 216, .external_lex_state = 3},
  [1298] = {.lex_state = 216, .external_lex_state = 3},
  [1299] = {.lex_state = 216, .external_lex_state = 3},
  [1300] = {.lex_state = 216, .external_lex_state = 3},
  [1301] = {.lex_state = 216, .external_lex_state = 3},
  [1302] = {.lex_state = 216, .external_lex_state = 3},
  [1303] = {.lex_state = 216, .external_lex_state = 3},
  [1304] = {.lex_state = 216, .external_lex_state = 3},
  [1305] = {.lex_state = 216, .external_lex_state = 3},
  [1306] = {.lex_state = 216, .external_lex_state = 3},
  [1307] = {.lex_state = 216, .external_lex_state = 3},
  [1308] = {.lex_state = 216, .external_lex_state = 3},
  [1309] = {.lex_state = 216, .external_lex_state = 3},
  [1310] = {.lex_state = 216, .external_lex_state = 3},
  [1311] = {.lex_state = 216, .external_lex_state = 3},
  [1312] = {.lex_state = 216, .external_lex_state = 3},
  [1313] = {.lex_state = 241, .external_lex_state = 3},
  [1314] = {.lex_state = 216, .external_lex_state = 3},
  [1315] = {.lex_state = 216, .external_lex_state = 3},
  [1316] = {.lex_state = 239, .external_lex_state = 3},
  [1317] = {.lex_state = 239, .external_lex_state = 3},
  [1318] = {.lex_state = 239, .external_lex_state = 3},
  [1319] = {.lex_state = 239, .external_lex_state = 3},
  [1320] = {.lex_state = 239, .external_lex_state = 3},
  [1321] = {.lex_state = 239, .external_lex_state = 3},
  [1322] = {.lex_state = 239, .external_lex_state = 3},
  [1323] = {.lex_state = 239, .external_lex_state = 3},
  [1324] = {.lex_state = 217, .external_lex_state = 2},
  [1325] = {.lex_state = 217, .external_lex_state = 2},
  [1326] = {.lex_state = 217, .external_lex_state = 2},
  [1327] = {.lex_state = 239, .external_lex_state = 2},
  [1328] = {.lex_state = 217, .external_lex_state = 2},
  [1329] = {.lex_state = 216, .external_lex_state = 2},
  [1330] = {.lex_state = 239, .external_lex_state = 3},
  [1331] = {.lex_state = 216, .external_lex_state = 2},
  [1332] = {.lex_state = 239, .external_lex_state = 3},
  [1333] = {.lex_state = 239, .external_lex_state = 3},
  [1334] = {.lex_state = 239, .external_lex_state = 3},
  [1335] = {.lex_state = 239, .external_lex_state = 3},
  [1336] = {.lex_state = 239, .external_lex_state = 3},
  [1337] = {.lex_state = 239, .external_lex_state = 3},
  [1338] = {.lex_state = 239, .external_lex_state = 3},
  [1339] = {.lex_state = 216, .external_lex_state = 2},
  [1340] = {.lex_state = 239, .external_lex_state = 3},
  [1341] = {.lex_state = 239, .external_lex_state = 3},
  [1342] = {.lex_state = 11, .external_lex_state = 2},
  [1343] = {.lex_state = 239, .external_lex_state = 2},
  [1344] = {.lex_state = 216, .external_lex_state = 2},
  [1345] = {.lex_state = 213, .external_lex_state = 2},
  [1346] = {.lex_state = 11, .external_lex_state = 2},
  [1347] = {.lex_state = 11, .external_lex_state = 2},
  [1348] = {.lex_state = 213, .external_lex_state = 2},
  [1349] = {.lex_state = 213, .external_lex_state = 2},
  [1350] = {.lex_state = 218, .external_lex_state = 2},
  [1351] = {.lex_state = 218, .external_lex_state = 2},
  [1352] = {.lex_state = 213, .external_lex_state = 2},
  [1353] = {.lex_state = 218, .external_lex_state = 2},
  [1354] = {.lex_state = 218, .external_lex_state = 2},
  [1355] = {.lex_state = 218, .external_lex_state = 2},
  [1356] = {.lex_state = 11, .external_lex_state = 2},
  [1357] = {.lex_state = 213, .external_lex_state = 2},
  [1358] = {.lex_state = 219, .external_lex_state = 2},
  [1359] = {.lex_state = 218, .external_lex_state = 2},
  [1360] = {.lex_state = 213, .external_lex_state = 2},
  [1361] = {.lex_state = 213, .external_lex_state = 2},
  [1362] = {.lex_state = 11, .external_lex_state = 2},
  [1363] = {.lex_state = 240, .external_lex_state = 2},
  [1364] = {.lex_state = 218, .external_lex_state = 2},
  [1365] = {.lex_state = 213, .external_lex_state = 2},
  [1366] = {.lex_state = 218, .external_lex_state = 2},
  [1367] = {.lex_state = 213, .external_lex_state = 2},
  [1368] = {.lex_state = 240, .external_lex_state = 2},
  [1369] = {.lex_state = 218, .external_lex_state = 2},
  [1370] = {.lex_state = 11, .external_lex_state = 2},
  [1371] = {.lex_state = 218, .external_lex_state = 2},
  [1372] = {.lex_state = 213, .external_lex_state = 2},
  [1373] = {.lex_state = 218, .external_lex_state = 2},
  [1374] = {.lex_state = 218, .external_lex_state = 2},
  [1375] = {.lex_state = 213, .external_lex_state = 2},
  [1376] = {.lex_state = 213, .external_lex_state = 2},
  [1377] = {.lex_state = 11, .external_lex_state = 2},
  [1378] = {.lex_state = 12, .external_lex_state = 2},
  [1379] = {.lex_state = 11, .external_lex_state = 2},
  [1380] = {.lex_state = 240, .external_lex_state = 2},
  [1381] = {.lex_state = 12, .external_lex_state = 2},
  [1382] = {.lex_state = 218, .external_lex_state = 2},
  [1383] = {.lex_state = 11, .external_lex_state = 2},
  [1384] = {.lex_state = 218, .external_lex_state = 2},
  [1385] = {.lex_state = 218, .external_lex_state = 2},
  [1386] = {.lex_state = 218, .external_lex_state = 2},
  [1387] = {.lex_state = 218, .external_lex_state = 2},
  [1388] = {.lex_state = 11, .external_lex_state = 2},
  [1389] = {.lex_state = 11, .external_lex_state = 2},
  [1390] = {.lex_state = 216, .external_lex_state = 3},
  [1391] = {.lex_state = 11, .external_lex_state = 2},
  [1392] = {.lex_state = 218, .external_lex_state = 2},
  [1393] = {.lex_state = 213, .external_lex_state = 2},
  [1394] = {.lex_state = 218, .external_lex_state = 2},
  [1395] = {.lex_state = 213, .external_lex_state = 2},
  [1396] = {.lex_state = 11, .external_lex_state = 2},
  [1397] = {.lex_state = 11, .external_lex_state = 2},
  [1398] = {.lex_state = 13, .external_lex_state = 2},
  [1399] = {.lex_state = 218, .external_lex_state = 2},
  [1400] = {.lex_state = 218, .external_lex_state = 2},
  [1401] = {.lex_state = 218, .external_lex_state = 2},
  [1402] = {.lex_state = 218, .external_lex_state = 2},
  [1403] = {.lex_state = 218, .external_lex_state = 2},
  [1404] = {.lex_state = 220, .external_lex_state = 2},
  [1405] = {.lex_state = 13, .external_lex_state = 2},
  [1406] = {.lex_state = 11, .external_lex_state = 2},
  [1407] = {.lex_state = 218, .external_lex_state = 2},
  [1408] = {.lex_state = 11, .external_lex_state = 2},
  [1409] = {.lex_state = 218, .external_lex_state = 2},
  [1410] = {.lex_state = 218, .external_lex_state = 2},
  [1411] = {.lex_state = 218, .external_lex_state = 2},
  [1412] = {.lex_state = 218, .external_lex_state = 2},
  [1413] = {.lex_state = 218, .external_lex_state = 2},
  [1414] = {.lex_state = 11, .external_lex_state = 2},
  [1415] = {.lex_state = 218, .external_lex_state = 2},
  [1416] = {.lex_state = 218, .external_lex_state = 2},
  [1417] = {.lex_state = 218, .external_lex_state = 2},
  [1418] = {.lex_state = 218, .external_lex_state = 2},
  [1419] = {.lex_state = 11, .external_lex_state = 2},
  [1420] = {.lex_state = 11, .external_lex_state = 2},
  [1421] = {.lex_state = 11, .external_lex_state = 2},
  [1422] = {.lex_state = 11, .external_lex_state = 2},
  [1423] = {.lex_state = 11, .external_lex_state = 2},
  [1424] = {.lex_state = 220, .external_lex_state = 2},
  [1425] = {.lex_state = 218, .external_lex_state = 2},
  [1426] = {.lex_state = 11, .external_lex_state = 2},
  [1427] = {.lex_state = 218, .external_lex_state = 2},
  [1428] = {.lex_state = 213, .external_lex_state = 2},
  [1429] = {.lex_state = 213, .external_lex_state = 2},
  [1430] = {.lex_state = 218, .external_lex_state = 2},
  [1431] = {.lex_state = 218, .external_lex_state = 2},
  [1432] = {.lex_state = 218, .external_lex_state = 2},
  [1433] = {.lex_state = 11, .external_lex_state = 2},
  [1434] = {.lex_state = 213, .external_lex_state = 2},
  [1435] = {.lex_state = 218, .external_lex_state = 2},
  [1436] = {.lex_state = 218, .external_lex_state = 2},
  [1437] = {.lex_state = 218, .external_lex_state = 2},
  [1438] = {.lex_state = 218, .external_lex_state = 2},
  [1439] = {.lex_state = 218, .external_lex_state = 2},
  [1440] = {.lex_state = 239, .external_lex_state = 2},
  [1441] = {.lex_state = 218, .external_lex_state = 2},
  [1442] = {.lex_state = 239, .external_lex_state = 2},
  [1443] = {.lex_state = 239, .external_lex_state = 2},
  [1444] = {.lex_state = 239, .external_lex_state = 2},
  [1445] = {.lex_state = 239, .external_lex_state = 2},
  [1446] = {.lex_state = 239, .external_lex_state = 2},
  [1447] = {.lex_state = 239, .external_lex_state = 2},
  [1448] = {.lex_state = 239, .external_lex_state = 2},
  [1449] = {.lex_state = 11, .external_lex_state = 2},
  [1450] = {.lex_state = 218, .external_lex_state = 2},
  [1451] = {.lex_state = 239, .external_lex_state = 2},
  [1452] = {.lex_state = 239, .external_lex_state = 2},
  [1453] = {.lex_state = 219, .external_lex_state = 2},
  [1454] = {.lex_state = 239, .external_lex_state = 2},
  [1455] = {.lex_state = 218, .external_lex_state = 2},
  [1456] = {.lex_state = 11, .external_lex_state = 2},
  [1457] = {.lex_state = 239, .external_lex_state = 2},
  [1458] = {.lex_state = 239, .external_lex_state = 2},
  [1459] = {.lex_state = 239, .external_lex_state = 2},
  [1460] = {.lex_state = 239, .external_lex_state = 2},
  [1461] = {.lex_state = 239, .external_lex_state = 2},
  [1462] = {.lex_state = 213, .external_lex_state = 2},
  [1463] = {.lex_state = 213, .external_lex_state = 2},
  [1464] = {.lex_state = 218, .external_lex_state = 2},
  [1465] = {.lex_state = 239, .external_lex_state = 2},
  [1466] = {.lex_state = 219, .external_lex_state = 2},
  [1467] = {.lex_state = 239, .external_lex_state = 2},
  [1468] = {.lex_state = 239, .external_lex_state = 2},
  [1469] = {.lex_state = 239, .external_lex_state = 2},
  [1470] = {.lex_state = 239, .external_lex_state = 2},
  [1471] = {.lex_state = 239, .external_lex_state = 2},
  [1472] = {.lex_state = 239, .external_lex_state = 2},
  [1473] = {.lex_state = 14, .external_lex_state = 2},
  [1474] = {.lex_state = 15, .external_lex_state = 2},
  [1475] = {.lex_state = 239, .external_lex_state = 2},
  [1476] = {.lex_state = 15, .external_lex_state = 2},
  [1477] = {.lex_state = 15, .external_lex_state = 2},
  [1478] = {.lex_state = 11, .external_lex_state = 2},
  [1479] = {.lex_state = 15, .external_lex_state = 2},
  [1480] = {.lex_state = 11, .external_lex_state = 2},
  [1481] = {.lex_state = 15, .external_lex_state = 2},
  [1482] = {.lex_state = 221, .external_lex_state = 2},
  [1483] = {.lex_state = 15, .external_lex_state = 2},
  [1484] = {.lex_state = 15, .external_lex_state = 2},
  [1485] = {.lex_state = 239, .external_lex_state = 2},
  [1486] = {.lex_state = 218, .external_lex_state = 2},
  [1487] = {.lex_state = 15, .external_lex_state = 2},
  [1488] = {.lex_state = 222, .external_lex_state = 2},
  [1489] = {.lex_state = 239, .external_lex_state = 2},
  [1490] = {.lex_state = 11, .external_lex_state = 2},
  [1491] = {.lex_state = 239, .external_lex_state = 2},
  [1492] = {.lex_state = 239, .external_lex_state = 2},
  [1493] = {.lex_state = 14, .external_lex_state = 2},
  [1494] = {.lex_state = 219, .external_lex_state = 2},
  [1495] = {.lex_state = 15, .external_lex_state = 2},
  [1496] = {.lex_state = 11, .external_lex_state = 2},
  [1497] = {.lex_state = 240, .external_lex_state = 2},
  [1498] = {.lex_state = 239, .external_lex_state = 2},
  [1499] = {.lex_state = 14, .external_lex_state = 2},
  [1500] = {.lex_state = 239, .external_lex_state = 2},
  [1501] = {.lex_state = 218, .external_lex_state = 2},
  [1502] = {.lex_state = 11, .external_lex_state = 2},
  [1503] = {.lex_state = 222, .external_lex_state = 2},
  [1504] = {.lex_state = 15, .external_lex_state = 2},
  [1505] = {.lex_state = 226, .external_lex_state = 2},
  [1506] = {.lex_state = 11, .external_lex_state = 2},
  [1507] = {.lex_state = 15, .external_lex_state = 2},
  [1508] = {.lex_state = 219, .external_lex_state = 2},
  [1509] = {.lex_state = 11, .external_lex_state = 2},
  [1510] = {.lex_state = 218, .external_lex_state = 2},
  [1511] = {.lex_state = 11, .external_lex_state = 2},
  [1512] = {.lex_state = 239, .external_lex_state = 2},
  [1513] = {.lex_state = 239, .external_lex_state = 2},
  [1514] = {.lex_state = 218, .external_lex_state = 2},
  [1515] = {.lex_state = 239, .external_lex_state = 2},
  [1516] = {.lex_state = 239, .external_lex_state = 2},
  [1517] = {.lex_state = 241, .external_lex_state = 2},
  [1518] = {.lex_state = 218, .external_lex_state = 2},
  [1519] = {.lex_state = 239, .external_lex_state = 2},
  [1520] = {.lex_state = 239, .external_lex_state = 2},
  [1521] = {.lex_state = 239, .external_lex_state = 2},
  [1522] = {.lex_state = 239, .external_lex_state = 2},
  [1523] = {.lex_state = 239, .external_lex_state = 2},
  [1524] = {.lex_state = 222, .external_lex_state = 2},
  [1525] = {.lex_state = 218, .external_lex_state = 2},
  [1526] = {.lex_state = 239, .external_lex_state = 2},
  [1527] = {.lex_state = 15, .external_lex_state = 2},
  [1528] = {.lex_state = 239, .external_lex_state = 2},
  [1529] = {.lex_state = 240, .external_lex_state = 2},
  [1530] = {.lex_state = 218, .external_lex_state = 2},
  [1531] = {.lex_state = 239, .external_lex_state = 2},
  [1532] = {.lex_state = 11, .external_lex_state = 2},
  [1533] = {.lex_state = 241, .external_lex_state = 2},
  [1534] = {.lex_state = 11, .external_lex_state = 2},
  [1535] = {.lex_state = 221, .external_lex_state = 2},
  [1536] = {.lex_state = 239, .external_lex_state = 2},
  [1537] = {.lex_state = 218, .external_lex_state = 2},
  [1538] = {.lex_state = 15, .external_lex_state = 2},
  [1539] = {.lex_state = 239, .external_lex_state = 2},
  [1540] = {.lex_state = 239, .external_lex_state = 2},
  [1541] = {.lex_state = 226, .external_lex_state = 2},
  [1542] = {.lex_state = 218, .external_lex_state = 2},
  [1543] = {.lex_state = 239, .external_lex_state = 2},
  [1544] = {.lex_state = 239, .external_lex_state = 2},
  [1545] = {.lex_state = 218, .external_lex_state = 2},
  [1546] = {.lex_state = 226, .external_lex_state = 2},
  [1547] = {.lex_state = 11, .external_lex_state = 2},
  [1548] = {.lex_state = 218, .external_lex_state = 2},
  [1549] = {.lex_state = 218, .external_lex_state = 2},
  [1550] = {.lex_state = 218, .external_lex_state = 2},
  [1551] = {.lex_state = 239, .external_lex_state = 2},
  [1552] = {.lex_state = 218, .external_lex_state = 2},
  [1553] = {.lex_state = 218, .external_lex_state = 2},
  [1554] = {.lex_state = 218, .external_lex_state = 2},
  [1555] = {.lex_state = 222, .external_lex_state = 2},
  [1556] = {.lex_state = 222, .external_lex_state = 2},
  [1557] = {.lex_state = 222, .external_lex_state = 2},
  [1558] = {.lex_state = 222, .external_lex_state = 2},
  [1559] = {.lex_state = 240, .external_lex_state = 2},
  [1560] = {.lex_state = 222, .external_lex_state = 2},
  [1561] = {.lex_state = 239, .external_lex_state = 4},
  [1562] = {.lex_state = 223, .external_lex_state = 2},
  [1563] = {.lex_state = 218, .external_lex_state = 2},
  [1564] = {.lex_state = 218, .external_lex_state = 2},
  [1565] = {.lex_state = 239, .external_lex_state = 2},
  [1566] = {.lex_state = 218, .external_lex_state = 2},
  [1567] = {.lex_state = 218, .external_lex_state = 2},
  [1568] = {.lex_state = 422, .external_lex_state = 2},
  [1569] = {.lex_state = 218, .external_lex_state = 2},
  [1570] = {.lex_state = 218, .external_lex_state = 2},
  [1571] = {.lex_state = 218, .external_lex_state = 2},
  [1572] = {.lex_state = 218, .external_lex_state = 2},
  [1573] = {.lex_state = 218, .external_lex_state = 2},
  [1574] = {.lex_state = 240, .external_lex_state = 2},
  [1575] = {.lex_state = 422, .external_lex_state = 2},
  [1576] = {.lex_state = 218, .external_lex_state = 2},
  [1577] = {.lex_state = 239, .external_lex_state = 4},
  [1578] = {.lex_state = 223, .external_lex_state = 2},
  [1579] = {.lex_state = 240, .external_lex_state = 2},
  [1580] = {.lex_state = 223, .external_lex_state = 2},
  [1581] = {.lex_state = 422, .external_lex_state = 2},
  [1582] = {.lex_state = 218, .external_lex_state = 2},
  [1583] = {.lex_state = 239, .external_lex_state = 2},
  [1584] = {.lex_state = 218, .external_lex_state = 2},
  [1585] = {.lex_state = 239, .external_lex_state = 4},
  [1586] = {.lex_state = 239, .external_lex_state = 2},
  [1587] = {.lex_state = 218, .external_lex_state = 2},
  [1588] = {.lex_state = 218, .external_lex_state = 2},
  [1589] = {.lex_state = 239, .external_lex_state = 2},
  [1590] = {.lex_state = 239, .external_lex_state = 2},
  [1591] = {.lex_state = 221, .external_lex_state = 2},
  [1592] = {.lex_state = 218, .external_lex_state = 2},
  [1593] = {.lex_state = 239, .external_lex_state = 2},
  [1594] = {.lex_state = 218, .external_lex_state = 2},
  [1595] = {.lex_state = 218, .external_lex_state = 2},
  [1596] = {.lex_state = 218, .external_lex_state = 2},
  [1597] = {.lex_state = 218, .external_lex_state = 2},
  [1598] = {.lex_state = 239, .external_lex_state = 2},
  [1599] = {.lex_state = 223, .external_lex_state = 2},
  [1600] = {.lex_state = 218, .external_lex_state = 2},
  [1601] = {.lex_state = 239, .external_lex_state = 2},
  [1602] = {.lex_state = 239, .external_lex_state = 2},
  [1603] = {.lex_state = 239, .external_lex_state = 2},
  [1604] = {.lex_state = 239, .external_lex_state = 2},
  [1605] = {.lex_state = 239, .external_lex_state = 2},
  [1606] = {.lex_state = 239, .external_lex_state = 2},
  [1607] = {.lex_state = 239, .external_lex_state = 2},
  [1608] = {.lex_state = 218, .external_lex_state = 2},
  [1609] = {.lex_state = 218, .external_lex_state = 2},
  [1610] = {.lex_state = 223, .external_lex_state = 2},
  [1611] = {.lex_state = 213, .external_lex_state = 2},
  [1612] = {.lex_state = 240, .external_lex_state = 2},
  [1613] = {.lex_state = 218, .external_lex_state = 2},
  [1614] = {.lex_state = 218, .external_lex_state = 2},
  [1615] = {.lex_state = 218, .external_lex_state = 2},
  [1616] = {.lex_state = 239, .external_lex_state = 2},
  [1617] = {.lex_state = 239, .external_lex_state = 4},
  [1618] = {.lex_state = 239, .external_lex_state = 2},
  [1619] = {.lex_state = 218, .external_lex_state = 2},
  [1620] = {.lex_state = 213, .external_lex_state = 2},
  [1621] = {.lex_state = 239, .external_lex_state = 2},
  [1622] = {.lex_state = 239, .external_lex_state = 2},
  [1623] = {.lex_state = 239, .external_lex_state = 2},
  [1624] = {.lex_state = 218, .external_lex_state = 2},
  [1625] = {.lex_state = 239, .external_lex_state = 2},
  [1626] = {.lex_state = 239, .external_lex_state = 2},
  [1627] = {.lex_state = 239, .external_lex_state = 2},
  [1628] = {.lex_state = 239, .external_lex_state = 2},
  [1629] = {.lex_state = 218, .external_lex_state = 2},
  [1630] = {.lex_state = 213, .external_lex_state = 2},
  [1631] = {.lex_state = 218, .external_lex_state = 2},
  [1632] = {.lex_state = 218, .external_lex_state = 2},
  [1633] = {.lex_state = 218, .external_lex_state = 2},
  [1634] = {.lex_state = 239, .external_lex_state = 4},
  [1635] = {.lex_state = 239, .external_lex_state = 2},
  [1636] = {.lex_state = 239, .external_lex_state = 2},
  [1637] = {.lex_state = 14, .external_lex_state = 2},
  [1638] = {.lex_state = 239, .external_lex_state = 2},
  [1639] = {.lex_state = 239, .external_lex_state = 2},
  [1640] = {.lex_state = 239, .external_lex_state = 2},
  [1641] = {.lex_state = 218, .external_lex_state = 2},
  [1642] = {.lex_state = 239, .external_lex_state = 2},
  [1643] = {.lex_state = 218, .external_lex_state = 2},
  [1644] = {.lex_state = 239, .external_lex_state = 2},
  [1645] = {.lex_state = 239, .external_lex_state = 2},
  [1646] = {.lex_state = 239, .external_lex_state = 2},
  [1647] = {.lex_state = 218, .external_lex_state = 2},
  [1648] = {.lex_state = 239, .external_lex_state = 4},
  [1649] = {.lex_state = 218, .external_lex_state = 2},
  [1650] = {.lex_state = 218, .external_lex_state = 2},
  [1651] = {.lex_state = 239, .external_lex_state = 4},
  [1652] = {.lex_state = 218, .external_lex_state = 2},
  [1653] = {.lex_state = 239, .external_lex_state = 2},
  [1654] = {.lex_state = 218, .external_lex_state = 2},
  [1655] = {.lex_state = 239, .external_lex_state = 4},
  [1656] = {.lex_state = 239, .external_lex_state = 4},
  [1657] = {.lex_state = 226, .external_lex_state = 2},
  [1658] = {.lex_state = 239, .external_lex_state = 4},
  [1659] = {.lex_state = 239, .external_lex_state = 2},
  [1660] = {.lex_state = 226, .external_lex_state = 2},
  [1661] = {.lex_state = 239, .external_lex_state = 4},
  [1662] = {.lex_state = 239, .external_lex_state = 4},
  [1663] = {.lex_state = 218, .external_lex_state = 2},
  [1664] = {.lex_state = 239, .external_lex_state = 5},
  [1665] = {.lex_state = 239, .external_lex_state = 4},
  [1666] = {.lex_state = 239, .external_lex_state = 2},
  [1667] = {.lex_state = 239, .external_lex_state = 4},
  [1668] = {.lex_state = 239, .external_lex_state = 4},
  [1669] = {.lex_state = 239, .external_lex_state = 2},
  [1670] = {.lex_state = 239, .external_lex_state = 4},
  [1671] = {.lex_state = 227, .external_lex_state = 2},
  [1672] = {.lex_state = 239, .external_lex_state = 4},
  [1673] = {.lex_state = 239, .external_lex_state = 2},
  [1674] = {.lex_state = 239, .external_lex_state = 4},
  [1675] = {.lex_state = 239, .external_lex_state = 4},
  [1676] = {.lex_state = 218, .external_lex_state = 2},
  [1677] = {.lex_state = 239, .external_lex_state = 2},
  [1678] = {.lex_state = 239, .external_lex_state = 2},
  [1679] = {.lex_state = 239, .external_lex_state = 2},
  [1680] = {.lex_state = 223, .external_lex_state = 2},
  [1681] = {.lex_state = 11, .external_lex_state = 2},
  [1682] = {.lex_state = 239, .external_lex_state = 2},
  [1683] = {.lex_state = 239, .external_lex_state = 2},
  [1684] = {.lex_state = 239, .external_lex_state = 6},
  [1685] = {.lex_state = 239, .external_lex_state = 2},
  [1686] = {.lex_state = 223, .external_lex_state = 2},
  [1687] = {.lex_state = 218, .external_lex_state = 2},
  [1688] = {.lex_state = 239, .external_lex_state = 2},
  [1689] = {.lex_state = 239, .external_lex_state = 6},
  [1690] = {.lex_state = 239, .external_lex_state = 2},
  [1691] = {.lex_state = 239, .external_lex_state = 6},
  [1692] = {.lex_state = 11, .external_lex_state = 2},
  [1693] = {.lex_state = 239, .external_lex_state = 6},
  [1694] = {.lex_state = 239, .external_lex_state = 2},
  [1695] = {.lex_state = 11, .external_lex_state = 2},
  [1696] = {.lex_state = 11, .external_lex_state = 2},
  [1697] = {.lex_state = 239, .external_lex_state = 6},
  [1698] = {.lex_state = 239, .external_lex_state = 2},
  [1699] = {.lex_state = 333, .external_lex_state = 2},
  [1700] = {.lex_state = 223, .external_lex_state = 2},
  [1701] = {.lex_state = 239, .external_lex_state = 6},
  [1702] = {.lex_state = 239, .external_lex_state = 2},
  [1703] = {.lex_state = 239, .external_lex_state = 2},
  [1704] = {.lex_state = 239, .external_lex_state = 2},
  [1705] = {.lex_state = 239, .external_lex_state = 6},
  [1706] = {.lex_state = 239, .external_lex_state = 2},
  [1707] = {.lex_state = 239, .external_lex_state = 6},
  [1708] = {.lex_state = 11, .external_lex_state = 2},
  [1709] = {.lex_state = 239, .external_lex_state = 6},
  [1710] = {.lex_state = 239, .external_lex_state = 2},
  [1711] = {.lex_state = 239, .external_lex_state = 2},
  [1712] = {.lex_state = 239, .external_lex_state = 6},
  [1713] = {.lex_state = 239, .external_lex_state = 2},
  [1714] = {.lex_state = 239, .external_lex_state = 6},
  [1715] = {.lex_state = 239, .external_lex_state = 2},
  [1716] = {.lex_state = 239, .external_lex_state = 6},
  [1717] = {.lex_state = 239, .external_lex_state = 2},
  [1718] = {.lex_state = 239, .external_lex_state = 2},
  [1719] = {.lex_state = 239, .external_lex_state = 2},
  [1720] = {.lex_state = 239, .external_lex_state = 2},
  [1721] = {.lex_state = 239, .external_lex_state = 6},
  [1722] = {.lex_state = 239, .external_lex_state = 2},
  [1723] = {.lex_state = 239, .external_lex_state = 2},
  [1724] = {.lex_state = 239, .external_lex_state = 2},
  [1725] = {.lex_state = 239, .external_lex_state = 2},
  [1726] = {.lex_state = 239, .external_lex_state = 2},
  [1727] = {.lex_state = 239, .external_lex_state = 6},
  [1728] = {.lex_state = 239, .external_lex_state = 2},
  [1729] = {.lex_state = 239, .external_lex_state = 2},
  [1730] = {.lex_state = 239, .external_lex_state = 2},
  [1731] = {.lex_state = 432, .external_lex_state = 2},
  [1732] = {.lex_state = 239, .external_lex_state = 2},
  [1733] = {.lex_state = 240, .external_lex_state = 2},
  [1734] = {.lex_state = 239, .external_lex_state = 2},
  [1735] = {.lex_state = 11, .external_lex_state = 2},
  [1736] = {.lex_state = 239, .external_lex_state = 2},
  [1737] = {.lex_state = 11, .external_lex_state = 2},
  [1738] = {.lex_state = 239, .external_lex_state = 2},
  [1739] = {.lex_state = 239, .external_lex_state = 2},
  [1740] = {.lex_state = 11, .external_lex_state = 2},
  [1741] = {.lex_state = 11, .external_lex_state = 2},
  [1742] = {.lex_state = 11, .external_lex_state = 2},
  [1743] = {.lex_state = 239, .external_lex_state = 2},
  [1744] = {.lex_state = 239, .external_lex_state = 2},
  [1745] = {.lex_state = 239, .external_lex_state = 2},
  [1746] = {.lex_state = 239, .external_lex_state = 2},
  [1747] = {.lex_state = 11, .external_lex_state = 2},
  [1748] = {.lex_state = 239, .external_lex_state = 2},
  [1749] = {.lex_state = 333, .external_lex_state = 2},
  [1750] = {.lex_state = 239, .external_lex_state = 2},
  [1751] = {.lex_state = 239, .external_lex_state = 2},
  [1752] = {.lex_state = 239, .external_lex_state = 2},
  [1753] = {.lex_state = 239, .external_lex_state = 2},
  [1754] = {.lex_state = 239, .external_lex_state = 2},
  [1755] = {.lex_state = 11, .external_lex_state = 2},
  [1756] = {.lex_state = 239, .external_lex_state = 2},
  [1757] = {.lex_state = 11, .external_lex_state = 2},
  [1758] = {.lex_state = 239, .external_lex_state = 2},
  [1759] = {.lex_state = 239, .external_lex_state = 2},
  [1760] = {.lex_state = 239, .external_lex_state = 2},
  [1761] = {.lex_state = 239, .external_lex_state = 2},
  [1762] = {.lex_state = 11, .external_lex_state = 2},
  [1763] = {.lex_state = 239, .external_lex_state = 2},
  [1764] = {.lex_state = 239, .external_lex_state = 2},
  [1765] = {.lex_state = 239, .external_lex_state = 2},
  [1766] = {.lex_state = 239, .external_lex_state = 2},
  [1767] = {.lex_state = 11, .external_lex_state = 2},
  [1768] = {.lex_state = 239, .external_lex_state = 2},
  [1769] = {.lex_state = 239, .external_lex_state = 2},
  [1770] = {.lex_state = 239, .external_lex_state = 2},
  [1771] = {.lex_state = 239, .external_lex_state = 2},
  [1772] = {.lex_state = 218, .external_lex_state = 2},
  [1773] = {.lex_state = 239, .external_lex_state = 2},
  [1774] = {.lex_state = 239, .external_lex_state = 2},
  [1775] = {.lex_state = 239, .external_lex_state = 2},
  [1776] = {.lex_state = 223, .external_lex_state = 2},
  [1777] = {.lex_state = 239, .external_lex_state = 6},
  [1778] = {.lex_state = 239, .external_lex_state = 6},
  [1779] = {.lex_state = 239, .external_lex_state = 6},
  [1780] = {.lex_state = 239, .external_lex_state = 2},
  [1781] = {.lex_state = 11, .external_lex_state = 2},
  [1782] = {.lex_state = 239, .external_lex_state = 2},
  [1783] = {.lex_state = 239, .external_lex_state = 2},
  [1784] = {.lex_state = 239, .external_lex_state = 2},
  [1785] = {.lex_state = 239, .external_lex_state = 2},
  [1786] = {.lex_state = 239, .external_lex_state = 2},
  [1787] = {.lex_state = 239, .external_lex_state = 2},
  [1788] = {.lex_state = 239, .external_lex_state = 2},
  [1789] = {.lex_state = 239, .external_lex_state = 2},
  [1790] = {.lex_state = 422, .external_lex_state = 2},
  [1791] = {.lex_state = 422, .external_lex_state = 2},
  [1792] = {.lex_state = 239, .external_lex_state = 2},
  [1793] = {.lex_state = 422, .external_lex_state = 2},
  [1794] = {.lex_state = 239, .external_lex_state = 2},
  [1795] = {.lex_state = 239, .external_lex_state = 2},
  [1796] = {.lex_state = 422, .external_lex_state = 2},
  [1797] = {.lex_state = 218, .external_lex_state = 2},
  [1798] = {.lex_state = 239, .external_lex_state = 2},
  [1799] = {.lex_state = 239, .external_lex_state = 2},
  [1800] = {.lex_state = 223, .external_lex_state = 2},
  [1801] = {.lex_state = 239, .external_lex_state = 2},
  [1802] = {.lex_state = 422, .external_lex_state = 2},
  [1803] = {.lex_state = 240, .external_lex_state = 2},
  [1804] = {.lex_state = 239, .external_lex_state = 2},
  [1805] = {.lex_state = 239, .external_lex_state = 2},
  [1806] = {.lex_state = 239, .external_lex_state = 2},
  [1807] = {.lex_state = 239, .external_lex_state = 6},
  [1808] = {.lex_state = 239, .external_lex_state = 2},
  [1809] = {.lex_state = 239, .external_lex_state = 2},
  [1810] = {.lex_state = 239, .external_lex_state = 2},
  [1811] = {.lex_state = 239, .external_lex_state = 2},
  [1812] = {.lex_state = 239, .external_lex_state = 2},
  [1813] = {.lex_state = 239, .external_lex_state = 2},
  [1814] = {.lex_state = 486, .external_lex_state = 2},
  [1815] = {.lex_state = 239, .external_lex_state = 2},
  [1816] = {.lex_state = 239, .external_lex_state = 2},
  [1817] = {.lex_state = 239, .external_lex_state = 2},
  [1818] = {.lex_state = 239, .external_lex_state = 2},
  [1819] = {.lex_state = 240, .external_lex_state = 2},
  [1820] = {.lex_state = 239, .external_lex_state = 2},
  [1821] = {.lex_state = 239, .external_lex_state = 2},
  [1822] = {.lex_state = 333, .external_lex_state = 2},
  [1823] = {.lex_state = 239, .external_lex_state = 2},
  [1824] = {.lex_state = 239, .external_lex_state = 2},
  [1825] = {.lex_state = 239, .external_lex_state = 6},
  [1826] = {.lex_state = 240, .external_lex_state = 2},
  [1827] = {.lex_state = 223, .external_lex_state = 2},
  [1828] = {.lex_state = 239, .external_lex_state = 2},
  [1829] = {.lex_state = 239, .external_lex_state = 2},
  [1830] = {.lex_state = 239, .external_lex_state = 2},
  [1831] = {.lex_state = 223, .external_lex_state = 2},
  [1832] = {.lex_state = 239, .external_lex_state = 2},
  [1833] = {.lex_state = 239, .external_lex_state = 2},
  [1834] = {.lex_state = 239, .external_lex_state = 2},
  [1835] = {.lex_state = 239, .external_lex_state = 2},
  [1836] = {.lex_state = 239, .external_lex_state = 2},
  [1837] = {.lex_state = 239, .external_lex_state = 2},
  [1838] = {.lex_state = 239, .external_lex_state = 2},
  [1839] = {.lex_state = 239, .external_lex_state = 2},
  [1840] = {.lex_state = 239, .external_lex_state = 2},
  [1841] = {.lex_state = 239, .external_lex_state = 2},
  [1842] = {.lex_state = 239, .external_lex_state = 2},
  [1843] = {.lex_state = 239, .external_lex_state = 2},
  [1844] = {.lex_state = 239, .external_lex_state = 2},
  [1845] = {.lex_state = 239, .external_lex_state = 2},
  [1846] = {.lex_state = 239, .external_lex_state = 2},
  [1847] = {.lex_state = 239, .external_lex_state = 2},
  [1848] = {.lex_state = 239, .external_lex_state = 2},
  [1849] = {.lex_state = 239, .external_lex_state = 2},
  [1850] = {.lex_state = 239, .external_lex_state = 2},
  [1851] = {.lex_state = 239, .external_lex_state = 2},
  [1852] = {.lex_state = 239, .external_lex_state = 2},
  [1853] = {.lex_state = 432, .external_lex_state = 2},
  [1854] = {.lex_state = 239, .external_lex_state = 2},
  [1855] = {.lex_state = 239, .external_lex_state = 2},
  [1856] = {.lex_state = 239, .external_lex_state = 2},
  [1857] = {.lex_state = 239, .external_lex_state = 2},
  [1858] = {.lex_state = 239, .external_lex_state = 2},
  [1859] = {.lex_state = 422, .external_lex_state = 2},
  [1860] = {.lex_state = 239, .external_lex_state = 2},
  [1861] = {.lex_state = 239, .external_lex_state = 2},
  [1862] = {.lex_state = 239, .external_lex_state = 2},
  [1863] = {.lex_state = 239, .external_lex_state = 2},
  [1864] = {.lex_state = 239, .external_lex_state = 2},
  [1865] = {.lex_state = 239, .external_lex_state = 2},
  [1866] = {.lex_state = 239, .external_lex_state = 2},
  [1867] = {.lex_state = 239, .external_lex_state = 7},
  [1868] = {.lex_state = 333, .external_lex_state = 2},
  [1869] = {.lex_state = 239, .external_lex_state = 2},
  [1870] = {.lex_state = 333, .external_lex_state = 2},
  [1871] = {.lex_state = 223, .external_lex_state = 2},
  [1872] = {.lex_state = 239, .external_lex_state = 2},
  [1873] = {.lex_state = 333, .external_lex_state = 2},
  [1874] = {.lex_state = 333, .external_lex_state = 2},
  [1875] = {.lex_state = 333, .external_lex_state = 2},
  [1876] = {.lex_state = 239, .external_lex_state = 2},
  [1877] = {(TSStateId)(-1)},
  [1878] = {(TSStateId)(-1)},
  [1879] = {(TSStateId)(-1)},
};

enum {
  ts_external_token__block_comment_start = 0,
  ts_external_token__block_comment_content = 1,
  ts_external_token__block_comment_end = 2,
  ts_external_token__string_start = 3,
  ts_external_token__string_content = 4,
  ts_external_token__string_end = 5,
};

static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = {
  [ts_external_token__block_comment_start] = sym__block_comment_start,
  [ts_external_token__block_comment_content] = sym__block_comment_content,
  [ts_external_token__block_comment_end] = sym__block_comment_end,
  [ts_external_token__string_start] = sym__string_start,
  [ts_external_token__string_content] = sym__string_content,
  [ts_external_token__string_end] = sym__string_end,
};

static const bool ts_external_scanner_states[8][EXTERNAL_TOKEN_COUNT] = {
  [1] = {
    [ts_external_token__block_comment_start] = true,
    [ts_external_token__block_comment_content] = true,
    [ts_external_token__block_comment_end] = true,
    [ts_external_token__string_start] = true,
    [ts_external_token__string_content] = true,
    [ts_external_token__string_end] = true,
  },
  [2] = {
    [ts_external_token__block_comment_start] = true,
  },
  [3] = {
    [ts_external_token__block_comment_start] = true,
    [ts_external_token__string_start] = true,
  },
  [4] = {
    [ts_external_token__block_comment_start] = true,
    [ts_external_token__string_content] = true,
    [ts_external_token__string_end] = true,
  },
  [5] = {
    [ts_external_token__block_comment_start] = true,
    [ts_external_token__block_comment_content] = true,
    [ts_external_token__block_comment_end] = true,
  },
  [6] = {
    [ts_external_token__block_comment_start] = true,
    [ts_external_token__string_end] = true,
  },
  [7] = {
    [ts_external_token__block_comment_start] = true,
    [ts_external_token__block_comment_end] = true,
  },
};

static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
  [0] = {
    [sym_comment] = STATE(0),
    [ts_builtin_sym_end] = ACTIONS(1),
    [anon_sym_] = ACTIONS(1),
    [anon_sym_SEMI] = ACTIONS(1),
    [sym_shebang] = ACTIONS(1),
    [sym_nil] = ACTIONS(1),
    [anon_sym_true] = ACTIONS(1),
    [anon_sym_false] = ACTIONS(1),
    [sym_number] = ACTIONS(1),
    [anon_sym_DOT] = ACTIONS(1),
    [anon_sym_COLON] = ACTIONS(1),
    [anon_sym_end] = ACTIONS(1),
    [anon_sym_COMMA] = ACTIONS(1),
    [anon_sym_or] = ACTIONS(1),
    [anon_sym_and] = ACTIONS(1),
    [anon_sym_LT] = ACTIONS(1),
    [anon_sym_LT_EQ] = ACTIONS(1),
    [anon_sym_EQ_EQ] = ACTIONS(1),
    [anon_sym_TILDE_EQ] = ACTIONS(1),
    [anon_sym_GT_EQ] = ACTIONS(1),
    [anon_sym_GT] = ACTIONS(1),
    [anon_sym_PIPE] = ACTIONS(1),
    [anon_sym_TILDE] = ACTIONS(1),
    [anon_sym_AMP] = ACTIONS(1),
    [anon_sym_LT_LT] = ACTIONS(1),
    [anon_sym_GT_GT] = ACTIONS(1),
    [anon_sym_PLUS] = ACTIONS(1),
    [anon_sym_DASH] = ACTIONS(1),
    [anon_sym_STAR] = ACTIONS(1),
    [anon_sym_SLASH] = ACTIONS(1),
    [anon_sym_SLASH_SLASH] = ACTIONS(1),
    [anon_sym_PERCENT] = ACTIONS(1),
    [anon_sym_DOT_DOT] = ACTIONS(1),
    [anon_sym_CARET] = ACTIONS(1),
    [anon_sym_not] = ACTIONS(1),
    [anon_sym_POUND] = ACTIONS(1),
    [anon_sym_local] = ACTIONS(1),
    [anon_sym_EQ] = ACTIONS(1),
    [anon_sym_LBRACK] = ACTIONS(1),
    [anon_sym_RBRACK] = ACTIONS(1),
    [anon_sym_return] = ACTIONS(1),
    [sym_break_statement] = ACTIONS(1),
    [anon_sym_do] = ACTIONS(1),
    [anon_sym_while] = ACTIONS(1),
    [anon_sym_repeat] = ACTIONS(1),
    [anon_sym_until] = ACTIONS(1),
    [anon_sym_if] = ACTIONS(1),
    [anon_sym_then] = ACTIONS(1),
    [anon_sym_elseif] = ACTIONS(1),
    [anon_sym_else] = ACTIONS(1),
    [anon_sym_for] = ACTIONS(1),
    [anon_sym_in] = ACTIONS(1),
    [sym_function_start] = ACTIONS(1),
    [anon_sym_LBRACE] = ACTIONS(1),
    [anon_sym_RBRACE] = ACTIONS(1),
    [sym_left_paren] = ACTIONS(1),
    [anon_sym_RPAREN] = ACTIONS(1),
    [aux_sym__documentation_tag_container_token1] = ACTIONS(1),
    [aux_sym__documentation_config_container_token1] = ACTIONS(1),
    [aux_sym__documentation_brief_container_token1] = ACTIONS(1),
    [aux_sym_documentation_command_token1] = ACTIONS(1),
    [aux_sym_documentation_command_token2] = ACTIONS(1),
    [sym_emmy_ignore] = ACTIONS(1),
    [sym_emmy_comment] = ACTIONS(1),
    [anon_sym_LBRACK_RBRACK] = ACTIONS(1),
    [anon_sym_table_LT] = ACTIONS(1),
    [anon_sym_QMARK] = ACTIONS(1),
    [anon_sym_fun_LPAREN] = ACTIONS(1),
    [aux_sym_emmy_class_token1] = ACTIONS(1),
    [aux_sym_emmy_class_token2] = ACTIONS(1),
    [aux_sym_emmy_class_token3] = ACTIONS(1),
    [aux_sym_emmy_parameter_token1] = ACTIONS(1),
    [aux_sym_emmy_field_token1] = ACTIONS(1),
    [anon_sym_public] = ACTIONS(1),
    [anon_sym_protected] = ACTIONS(1),
    [anon_sym_private] = ACTIONS(1),
    [aux_sym_emmy_return_token1] = ACTIONS(1),
    [aux_sym__emmy_eval_container_token1] = ACTIONS(1),
    [aux_sym_emmy_typedecl_token1] = ACTIONS(1),
    [aux_sym_emmy_note_token1] = ACTIONS(1),
    [aux_sym_emmy_see_token1] = ACTIONS(1),
    [aux_sym_emmy_todo_token1] = ACTIONS(1),
    [aux_sym_emmy_usage_token1] = ACTIONS(1),
    [aux_sym_emmy_varargs_token1] = ACTIONS(1),
    [anon_sym_DASH_DASH] = ACTIONS(3),
    [sym__block_comment_start] = ACTIONS(5),
    [sym__block_comment_content] = ACTIONS(1),
    [sym__block_comment_end] = ACTIONS(1),
    [sym__string_start] = ACTIONS(1),
    [sym__string_content] = ACTIONS(1),
    [sym__string_end] = ACTIONS(1),
  },
  [1] = {
    [sym_program] = STATE(1862),
    [sym__statement] = STATE(1039),
    [sym_local] = STATE(1369),
    [sym_variable_declaration] = STATE(945),
    [sym_variable_declarator] = STATE(762),
    [sym__var] = STATE(572),
    [sym_return_statement] = STATE(1565),
    [sym_do_statement] = STATE(945),
    [sym_while_statement] = STATE(945),
    [sym_repeat_statement] = STATE(945),
    [sym_if_statement] = STATE(945),
    [sym_for_statement] = STATE(945),
    [sym_function_statement] = STATE(945),
    [sym__prefix_exp] = STATE(1320),
    [sym_function_call] = STATE(593),
    [sym_identifier] = STATE(573),
    [sym__documentation_tag_container] = STATE(1039),
    [sym__documentation_config_container] = STATE(1039),
    [sym__documentation_brief_container] = STATE(1039),
    [sym_documentation_command] = STATE(1039),
    [sym_emmy_class] = STATE(803),
    [sym_documentation_class] = STATE(1039),
    [sym_emmy_return] = STATE(577),
    [sym_emmy_typedecl] = STATE(577),
    [sym_emmy_documentation] = STATE(1328),
    [sym_comment] = STATE(1),
    [aux_sym_program_repeat1] = STATE(82),
    [ts_builtin_sym_end] = ACTIONS(7),
    [anon_sym_] = ACTIONS(9),
    [sym_shebang] = ACTIONS(11),
    [anon_sym_local] = ACTIONS(13),
    [anon_sym_return] = ACTIONS(15),
    [anon_sym_do] = ACTIONS(17),
    [anon_sym_while] = ACTIONS(19),
    [anon_sym_repeat] = ACTIONS(21),
    [anon_sym_if] = ACTIONS(23),
    [anon_sym_for] = ACTIONS(25),
    [sym_function_start] = ACTIONS(27),
    [sym__identifier] = ACTIONS(29),
    [sym_left_paren] = ACTIONS(31),
    [aux_sym__documentation_tag_container_token1] = ACTIONS(33),
    [aux_sym__documentation_config_container_token1] = ACTIONS(35),
    [aux_sym__documentation_brief_container_token1] = ACTIONS(37),
    [aux_sym_documentation_command_token1] = ACTIONS(39),
    [sym_emmy_comment] = ACTIONS(41),
    [aux_sym_emmy_class_token1] = ACTIONS(43),
    [aux_sym_emmy_return_token1] = ACTIONS(45),
    [aux_sym_emmy_typedecl_token1] = ACTIONS(47),
    [anon_sym_DASH_DASH] = ACTIONS(3),
    [sym__block_comment_start] = ACTIONS(5),
  },
};

static const uint16_t ts_small_parse_table[] = {
  [0] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(51), 1,
      anon_sym_DOT,
    ACTIONS(53), 1,
      anon_sym_COLON,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    ACTIONS(87), 1,
      anon_sym_LBRACK,
    ACTIONS(89), 1,
      anon_sym_LBRACE,
    ACTIONS(91), 1,
      sym_left_paren,
    ACTIONS(93), 1,
      sym__string_start,
    STATE(2), 1,
      sym_comment,
    STATE(68), 1,
      sym__self_call,
    STATE(69), 1,
      sym__table_call,
    STATE(72), 1,
      sym_string,
    STATE(73), 1,
      sym_tableconstructor,
    STATE(75), 1,
      sym__args,
    STATE(76), 1,
      sym__parentheses_call,
    STATE(77), 1,
      sym__string_call,
    STATE(844), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(85), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(49), 11,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [128] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(51), 1,
      anon_sym_DOT,
    ACTIONS(53), 1,
      anon_sym_COLON,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    ACTIONS(87), 1,
      anon_sym_LBRACK,
    ACTIONS(89), 1,
      anon_sym_LBRACE,
    ACTIONS(91), 1,
      sym_left_paren,
    ACTIONS(93), 1,
      sym__string_start,
    STATE(3), 1,
      sym_comment,
    STATE(68), 1,
      sym__self_call,
    STATE(69), 1,
      sym__table_call,
    STATE(72), 1,
      sym_string,
    STATE(73), 1,
      sym_tableconstructor,
    STATE(75), 1,
      sym__args,
    STATE(76), 1,
      sym__parentheses_call,
    STATE(77), 1,
      sym__string_call,
    STATE(824), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(97), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(95), 11,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [256] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(51), 1,
      anon_sym_DOT,
    ACTIONS(53), 1,
      anon_sym_COLON,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    ACTIONS(87), 1,
      anon_sym_LBRACK,
    ACTIONS(89), 1,
      anon_sym_LBRACE,
    ACTIONS(91), 1,
      sym_left_paren,
    ACTIONS(93), 1,
      sym__string_start,
    STATE(4), 1,
      sym_comment,
    STATE(68), 1,
      sym__self_call,
    STATE(69), 1,
      sym__table_call,
    STATE(72), 1,
      sym_string,
    STATE(73), 1,
      sym_tableconstructor,
    STATE(75), 1,
      sym__args,
    STATE(76), 1,
      sym__parentheses_call,
    STATE(77), 1,
      sym__string_call,
    STATE(823), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(101), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(99), 11,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [384] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(51), 1,
      anon_sym_DOT,
    ACTIONS(53), 1,
      anon_sym_COLON,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    ACTIONS(87), 1,
      anon_sym_LBRACK,
    ACTIONS(89), 1,
      anon_sym_LBRACE,
    ACTIONS(91), 1,
      sym_left_paren,
    ACTIONS(93), 1,
      sym__string_start,
    STATE(5), 1,
      sym_comment,
    STATE(68), 1,
      sym__self_call,
    STATE(69), 1,
      sym__table_call,
    STATE(72), 1,
      sym_string,
    STATE(73), 1,
      sym_tableconstructor,
    STATE(75), 1,
      sym__args,
    STATE(76), 1,
      sym__parentheses_call,
    STATE(77), 1,
      sym__string_call,
    STATE(862), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(105), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(103), 11,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [512] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(51), 1,
      anon_sym_DOT,
    ACTIONS(53), 1,
      anon_sym_COLON,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    ACTIONS(87), 1,
      anon_sym_LBRACK,
    ACTIONS(89), 1,
      anon_sym_LBRACE,
    ACTIONS(91), 1,
      sym_left_paren,
    ACTIONS(93), 1,
      sym__string_start,
    STATE(6), 1,
      sym_comment,
    STATE(68), 1,
      sym__self_call,
    STATE(69), 1,
      sym__table_call,
    STATE(72), 1,
      sym_string,
    STATE(73), 1,
      sym_tableconstructor,
    STATE(75), 1,
      sym__args,
    STATE(76), 1,
      sym__parentheses_call,
    STATE(77), 1,
      sym__string_call,
    STATE(820), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(109), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(107), 11,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [640] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(51), 1,
      anon_sym_DOT,
    ACTIONS(53), 1,
      anon_sym_COLON,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    ACTIONS(87), 1,
      anon_sym_LBRACK,
    ACTIONS(89), 1,
      anon_sym_LBRACE,
    ACTIONS(91), 1,
      sym_left_paren,
    ACTIONS(93), 1,
      sym__string_start,
    STATE(7), 1,
      sym_comment,
    STATE(68), 1,
      sym__self_call,
    STATE(69), 1,
      sym__table_call,
    STATE(72), 1,
      sym_string,
    STATE(73), 1,
      sym_tableconstructor,
    STATE(75), 1,
      sym__args,
    STATE(76), 1,
      sym__parentheses_call,
    STATE(77), 1,
      sym__string_call,
    STATE(850), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(113), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(111), 11,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [768] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(51), 1,
      anon_sym_DOT,
    ACTIONS(53), 1,
      anon_sym_COLON,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    ACTIONS(87), 1,
      anon_sym_LBRACK,
    ACTIONS(89), 1,
      anon_sym_LBRACE,
    ACTIONS(91), 1,
      sym_left_paren,
    ACTIONS(93), 1,
      sym__string_start,
    STATE(8), 1,
      sym_comment,
    STATE(68), 1,
      sym__self_call,
    STATE(69), 1,
      sym__table_call,
    STATE(72), 1,
      sym_string,
    STATE(73), 1,
      sym_tableconstructor,
    STATE(75), 1,
      sym__args,
    STATE(76), 1,
      sym__parentheses_call,
    STATE(77), 1,
      sym__string_call,
    STATE(837), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(117), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(115), 11,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [896] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(51), 1,
      anon_sym_DOT,
    ACTIONS(53), 1,
      anon_sym_COLON,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    ACTIONS(87), 1,
      anon_sym_LBRACK,
    ACTIONS(89), 1,
      anon_sym_LBRACE,
    ACTIONS(91), 1,
      sym_left_paren,
    ACTIONS(93), 1,
      sym__string_start,
    STATE(9), 1,
      sym_comment,
    STATE(68), 1,
      sym__self_call,
    STATE(69), 1,
      sym__table_call,
    STATE(72), 1,
      sym_string,
    STATE(73), 1,
      sym_tableconstructor,
    STATE(75), 1,
      sym__args,
    STATE(76), 1,
      sym__parentheses_call,
    STATE(77), 1,
      sym__string_call,
    STATE(830), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(121), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(119), 11,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [1024] = 18,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(51), 1,
      anon_sym_DOT,
    ACTIONS(53), 1,
      anon_sym_COLON,
    ACTIONS(87), 1,
      anon_sym_LBRACK,
    ACTIONS(89), 1,
      anon_sym_LBRACE,
    ACTIONS(91), 1,
      sym_left_paren,
    ACTIONS(93), 1,
      sym__string_start,
    STATE(10), 1,
      sym_comment,
    STATE(68), 1,
      sym__self_call,
    STATE(69), 1,
      sym__table_call,
    STATE(72), 1,
      sym_string,
    STATE(73), 1,
      sym_tableconstructor,
    STATE(75), 1,
      sym__args,
    STATE(76), 1,
      sym__parentheses_call,
    STATE(77), 1,
      sym__string_call,
    ACTIONS(125), 16,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(123), 26,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [1119] = 32,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(51), 1,
      anon_sym_DOT,
    ACTIONS(53), 1,
      anon_sym_COLON,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    ACTIONS(87), 1,
      anon_sym_LBRACK,
    ACTIONS(89), 1,
      anon_sym_LBRACE,
    ACTIONS(91), 1,
      sym_left_paren,
    ACTIONS(93), 1,
      sym__string_start,
    STATE(11), 1,
      sym_comment,
    STATE(68), 1,
      sym__self_call,
    STATE(69), 1,
      sym__table_call,
    STATE(72), 1,
      sym_string,
    STATE(73), 1,
      sym_tableconstructor,
    STATE(75), 1,
      sym__args,
    STATE(76), 1,
      sym__parentheses_call,
    STATE(77), 1,
      sym__string_call,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(129), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(127), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COMMA,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [1242] = 18,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(51), 1,
      anon_sym_DOT,
    ACTIONS(53), 1,
      anon_sym_COLON,
    ACTIONS(87), 1,
      anon_sym_LBRACK,
    ACTIONS(89), 1,
      anon_sym_LBRACE,
    ACTIONS(91), 1,
      sym_left_paren,
    ACTIONS(93), 1,
      sym__string_start,
    STATE(12), 1,
      sym_comment,
    STATE(68), 1,
      sym__self_call,
    STATE(69), 1,
      sym__table_call,
    STATE(72), 1,
      sym_string,
    STATE(73), 1,
      sym_tableconstructor,
    STATE(75), 1,
      sym__args,
    STATE(76), 1,
      sym__parentheses_call,
    STATE(77), 1,
      sym__string_call,
    ACTIONS(133), 16,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(131), 26,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [1337] = 32,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(51), 1,
      anon_sym_DOT,
    ACTIONS(53), 1,
      anon_sym_COLON,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    ACTIONS(87), 1,
      anon_sym_LBRACK,
    ACTIONS(89), 1,
      anon_sym_LBRACE,
    ACTIONS(91), 1,
      sym_left_paren,
    ACTIONS(93), 1,
      sym__string_start,
    STATE(13), 1,
      sym_comment,
    STATE(68), 1,
      sym__self_call,
    STATE(69), 1,
      sym__table_call,
    STATE(72), 1,
      sym_string,
    STATE(73), 1,
      sym_tableconstructor,
    STATE(75), 1,
      sym__args,
    STATE(76), 1,
      sym__parentheses_call,
    STATE(77), 1,
      sym__string_call,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(137), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(135), 11,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [1459] = 32,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(51), 1,
      anon_sym_DOT,
    ACTIONS(53), 1,
      anon_sym_COLON,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    ACTIONS(87), 1,
      anon_sym_LBRACK,
    ACTIONS(89), 1,
      anon_sym_LBRACE,
    ACTIONS(91), 1,
      sym_left_paren,
    ACTIONS(93), 1,
      sym__string_start,
    STATE(14), 1,
      sym_comment,
    STATE(68), 1,
      sym__self_call,
    STATE(69), 1,
      sym__table_call,
    STATE(72), 1,
      sym_string,
    STATE(73), 1,
      sym_tableconstructor,
    STATE(75), 1,
      sym__args,
    STATE(76), 1,
      sym__parentheses_call,
    STATE(77), 1,
      sym__string_call,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(141), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(139), 11,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [1581] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(143), 1,
      anon_sym_DOT,
    ACTIONS(145), 1,
      anon_sym_COLON,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    ACTIONS(177), 1,
      anon_sym_LBRACK,
    ACTIONS(179), 1,
      anon_sym_LBRACE,
    ACTIONS(181), 1,
      sym_left_paren,
    ACTIONS(183), 1,
      sym__string_start,
    STATE(15), 1,
      sym_comment,
    STATE(81), 1,
      sym__string_call,
    STATE(83), 1,
      sym__table_call,
    STATE(85), 1,
      sym__parentheses_call,
    STATE(86), 1,
      sym__self_call,
    STATE(92), 1,
      sym__args,
    STATE(97), 1,
      sym_string,
    STATE(103), 1,
      sym_tableconstructor,
    STATE(1003), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(119), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(121), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [1706] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(143), 1,
      anon_sym_DOT,
    ACTIONS(145), 1,
      anon_sym_COLON,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    ACTIONS(177), 1,
      anon_sym_LBRACK,
    ACTIONS(179), 1,
      anon_sym_LBRACE,
    ACTIONS(181), 1,
      sym_left_paren,
    ACTIONS(183), 1,
      sym__string_start,
    STATE(16), 1,
      sym_comment,
    STATE(81), 1,
      sym__string_call,
    STATE(83), 1,
      sym__table_call,
    STATE(85), 1,
      sym__parentheses_call,
    STATE(86), 1,
      sym__self_call,
    STATE(92), 1,
      sym__args,
    STATE(97), 1,
      sym_string,
    STATE(103), 1,
      sym_tableconstructor,
    STATE(1001), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(111), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(113), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [1831] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(143), 1,
      anon_sym_DOT,
    ACTIONS(145), 1,
      anon_sym_COLON,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    ACTIONS(177), 1,
      anon_sym_LBRACK,
    ACTIONS(179), 1,
      anon_sym_LBRACE,
    ACTIONS(181), 1,
      sym_left_paren,
    ACTIONS(183), 1,
      sym__string_start,
    STATE(17), 1,
      sym_comment,
    STATE(81), 1,
      sym__string_call,
    STATE(83), 1,
      sym__table_call,
    STATE(85), 1,
      sym__parentheses_call,
    STATE(86), 1,
      sym__self_call,
    STATE(92), 1,
      sym__args,
    STATE(97), 1,
      sym_string,
    STATE(103), 1,
      sym_tableconstructor,
    STATE(1045), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(107), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(109), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [1956] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(143), 1,
      anon_sym_DOT,
    ACTIONS(145), 1,
      anon_sym_COLON,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    ACTIONS(177), 1,
      anon_sym_LBRACK,
    ACTIONS(179), 1,
      anon_sym_LBRACE,
    ACTIONS(181), 1,
      sym_left_paren,
    ACTIONS(183), 1,
      sym__string_start,
    STATE(18), 1,
      sym_comment,
    STATE(81), 1,
      sym__string_call,
    STATE(83), 1,
      sym__table_call,
    STATE(85), 1,
      sym__parentheses_call,
    STATE(86), 1,
      sym__self_call,
    STATE(92), 1,
      sym__args,
    STATE(97), 1,
      sym_string,
    STATE(103), 1,
      sym_tableconstructor,
    STATE(1023), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(95), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(97), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [2081] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(143), 1,
      anon_sym_DOT,
    ACTIONS(145), 1,
      anon_sym_COLON,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    ACTIONS(177), 1,
      anon_sym_LBRACK,
    ACTIONS(179), 1,
      anon_sym_LBRACE,
    ACTIONS(181), 1,
      sym_left_paren,
    ACTIONS(183), 1,
      sym__string_start,
    STATE(19), 1,
      sym_comment,
    STATE(81), 1,
      sym__string_call,
    STATE(83), 1,
      sym__table_call,
    STATE(85), 1,
      sym__parentheses_call,
    STATE(86), 1,
      sym__self_call,
    STATE(92), 1,
      sym__args,
    STATE(97), 1,
      sym_string,
    STATE(103), 1,
      sym_tableconstructor,
    STATE(1026), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(49), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(85), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [2206] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(143), 1,
      anon_sym_DOT,
    ACTIONS(145), 1,
      anon_sym_COLON,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    ACTIONS(177), 1,
      anon_sym_LBRACK,
    ACTIONS(179), 1,
      anon_sym_LBRACE,
    ACTIONS(181), 1,
      sym_left_paren,
    ACTIONS(183), 1,
      sym__string_start,
    STATE(20), 1,
      sym_comment,
    STATE(81), 1,
      sym__string_call,
    STATE(83), 1,
      sym__table_call,
    STATE(85), 1,
      sym__parentheses_call,
    STATE(86), 1,
      sym__self_call,
    STATE(92), 1,
      sym__args,
    STATE(97), 1,
      sym_string,
    STATE(103), 1,
      sym_tableconstructor,
    STATE(1051), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(115), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(117), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [2331] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(143), 1,
      anon_sym_DOT,
    ACTIONS(145), 1,
      anon_sym_COLON,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    ACTIONS(177), 1,
      anon_sym_LBRACK,
    ACTIONS(179), 1,
      anon_sym_LBRACE,
    ACTIONS(181), 1,
      sym_left_paren,
    ACTIONS(183), 1,
      sym__string_start,
    STATE(21), 1,
      sym_comment,
    STATE(81), 1,
      sym__string_call,
    STATE(83), 1,
      sym__table_call,
    STATE(85), 1,
      sym__parentheses_call,
    STATE(86), 1,
      sym__self_call,
    STATE(92), 1,
      sym__args,
    STATE(97), 1,
      sym_string,
    STATE(103), 1,
      sym_tableconstructor,
    STATE(1032), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(99), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(101), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [2456] = 32,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(51), 1,
      anon_sym_DOT,
    ACTIONS(53), 1,
      anon_sym_COLON,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    ACTIONS(87), 1,
      anon_sym_LBRACK,
    ACTIONS(89), 1,
      anon_sym_LBRACE,
    ACTIONS(91), 1,
      sym_left_paren,
    ACTIONS(93), 1,
      sym__string_start,
    STATE(22), 1,
      sym_comment,
    STATE(68), 1,
      sym__self_call,
    STATE(69), 1,
      sym__table_call,
    STATE(72), 1,
      sym_string,
    STATE(73), 1,
      sym_tableconstructor,
    STATE(75), 1,
      sym__args,
    STATE(76), 1,
      sym__parentheses_call,
    STATE(77), 1,
      sym__string_call,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(187), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(185), 10,
      ts_builtin_sym_end,
      anon_sym_,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [2577] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(143), 1,
      anon_sym_DOT,
    ACTIONS(145), 1,
      anon_sym_COLON,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    ACTIONS(177), 1,
      anon_sym_LBRACK,
    ACTIONS(179), 1,
      anon_sym_LBRACE,
    ACTIONS(181), 1,
      sym_left_paren,
    ACTIONS(183), 1,
      sym__string_start,
    STATE(23), 1,
      sym_comment,
    STATE(81), 1,
      sym__string_call,
    STATE(83), 1,
      sym__table_call,
    STATE(85), 1,
      sym__parentheses_call,
    STATE(86), 1,
      sym__self_call,
    STATE(92), 1,
      sym__args,
    STATE(97), 1,
      sym_string,
    STATE(103), 1,
      sym_tableconstructor,
    STATE(1028), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(103), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(105), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [2702] = 18,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(143), 1,
      anon_sym_DOT,
    ACTIONS(145), 1,
      anon_sym_COLON,
    ACTIONS(177), 1,
      anon_sym_LBRACK,
    ACTIONS(179), 1,
      anon_sym_LBRACE,
    ACTIONS(181), 1,
      sym_left_paren,
    ACTIONS(183), 1,
      sym__string_start,
    STATE(24), 1,
      sym_comment,
    STATE(81), 1,
      sym__string_call,
    STATE(83), 1,
      sym__table_call,
    STATE(85), 1,
      sym__parentheses_call,
    STATE(86), 1,
      sym__self_call,
    STATE(92), 1,
      sym__args,
    STATE(97), 1,
      sym_string,
    STATE(103), 1,
      sym_tableconstructor,
    ACTIONS(123), 19,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(125), 20,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [2794] = 32,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(143), 1,
      anon_sym_DOT,
    ACTIONS(145), 1,
      anon_sym_COLON,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    ACTIONS(177), 1,
      anon_sym_LBRACK,
    ACTIONS(179), 1,
      anon_sym_LBRACE,
    ACTIONS(181), 1,
      sym_left_paren,
    ACTIONS(183), 1,
      sym__string_start,
    STATE(25), 1,
      sym_comment,
    STATE(81), 1,
      sym__string_call,
    STATE(83), 1,
      sym__table_call,
    STATE(85), 1,
      sym__parentheses_call,
    STATE(86), 1,
      sym__self_call,
    STATE(92), 1,
      sym__args,
    STATE(97), 1,
      sym_string,
    STATE(103), 1,
      sym_tableconstructor,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(127), 5,
      anon_sym_SEMI,
      anon_sym_COMMA,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(129), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [2914] = 18,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(143), 1,
      anon_sym_DOT,
    ACTIONS(145), 1,
      anon_sym_COLON,
    ACTIONS(177), 1,
      anon_sym_LBRACK,
    ACTIONS(179), 1,
      anon_sym_LBRACE,
    ACTIONS(181), 1,
      sym_left_paren,
    ACTIONS(183), 1,
      sym__string_start,
    STATE(26), 1,
      sym_comment,
    STATE(81), 1,
      sym__string_call,
    STATE(83), 1,
      sym__table_call,
    STATE(85), 1,
      sym__parentheses_call,
    STATE(86), 1,
      sym__self_call,
    STATE(92), 1,
      sym__args,
    STATE(97), 1,
      sym_string,
    STATE(103), 1,
      sym_tableconstructor,
    ACTIONS(131), 19,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(133), 20,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [3006] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(189), 1,
      anon_sym_DOT,
    ACTIONS(191), 1,
      anon_sym_COLON,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    ACTIONS(223), 1,
      anon_sym_LBRACK,
    ACTIONS(225), 1,
      anon_sym_LBRACE,
    ACTIONS(227), 1,
      sym_left_paren,
    ACTIONS(229), 1,
      sym__string_start,
    STATE(27), 1,
      sym_comment,
    STATE(146), 1,
      sym_tableconstructor,
    STATE(147), 1,
      sym_string,
    STATE(148), 1,
      sym__args,
    STATE(149), 1,
      sym__parentheses_call,
    STATE(150), 1,
      sym__string_call,
    STATE(151), 1,
      sym__table_call,
    STATE(158), 1,
      sym__self_call,
    STATE(1117), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(107), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(109), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [3129] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(231), 1,
      anon_sym_DOT,
    ACTIONS(233), 1,
      anon_sym_COLON,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    ACTIONS(265), 1,
      anon_sym_LBRACK,
    ACTIONS(267), 1,
      anon_sym_LBRACE,
    ACTIONS(269), 1,
      sym_left_paren,
    ACTIONS(271), 1,
      sym__string_start,
    STATE(28), 1,
      sym_comment,
    STATE(161), 1,
      sym__self_call,
    STATE(164), 1,
      sym__table_call,
    STATE(174), 1,
      sym__string_call,
    STATE(179), 1,
      sym__parentheses_call,
    STATE(180), 1,
      sym__args,
    STATE(182), 1,
      sym_tableconstructor,
    STATE(184), 1,
      sym_string,
    STATE(1118), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(119), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(121), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [3252] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(189), 1,
      anon_sym_DOT,
    ACTIONS(191), 1,
      anon_sym_COLON,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    ACTIONS(223), 1,
      anon_sym_LBRACK,
    ACTIONS(225), 1,
      anon_sym_LBRACE,
    ACTIONS(227), 1,
      sym_left_paren,
    ACTIONS(229), 1,
      sym__string_start,
    STATE(29), 1,
      sym_comment,
    STATE(146), 1,
      sym_tableconstructor,
    STATE(147), 1,
      sym_string,
    STATE(148), 1,
      sym__args,
    STATE(149), 1,
      sym__parentheses_call,
    STATE(150), 1,
      sym__string_call,
    STATE(151), 1,
      sym__table_call,
    STATE(158), 1,
      sym__self_call,
    STATE(1181), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(103), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(105), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [3375] = 32,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(143), 1,
      anon_sym_DOT,
    ACTIONS(145), 1,
      anon_sym_COLON,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    ACTIONS(177), 1,
      anon_sym_LBRACK,
    ACTIONS(179), 1,
      anon_sym_LBRACE,
    ACTIONS(181), 1,
      sym_left_paren,
    ACTIONS(183), 1,
      sym__string_start,
    STATE(30), 1,
      sym_comment,
    STATE(81), 1,
      sym__string_call,
    STATE(83), 1,
      sym__table_call,
    STATE(85), 1,
      sym__parentheses_call,
    STATE(86), 1,
      sym__self_call,
    STATE(92), 1,
      sym__args,
    STATE(97), 1,
      sym_string,
    STATE(103), 1,
      sym_tableconstructor,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(135), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(137), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [3494] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(231), 1,
      anon_sym_DOT,
    ACTIONS(233), 1,
      anon_sym_COLON,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    ACTIONS(265), 1,
      anon_sym_LBRACK,
    ACTIONS(267), 1,
      anon_sym_LBRACE,
    ACTIONS(269), 1,
      sym_left_paren,
    ACTIONS(271), 1,
      sym__string_start,
    STATE(31), 1,
      sym_comment,
    STATE(161), 1,
      sym__self_call,
    STATE(164), 1,
      sym__table_call,
    STATE(174), 1,
      sym__string_call,
    STATE(179), 1,
      sym__parentheses_call,
    STATE(180), 1,
      sym__args,
    STATE(182), 1,
      sym_tableconstructor,
    STATE(184), 1,
      sym_string,
    STATE(1099), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(49), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(85), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [3617] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(189), 1,
      anon_sym_DOT,
    ACTIONS(191), 1,
      anon_sym_COLON,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    ACTIONS(223), 1,
      anon_sym_LBRACK,
    ACTIONS(225), 1,
      anon_sym_LBRACE,
    ACTIONS(227), 1,
      sym_left_paren,
    ACTIONS(229), 1,
      sym__string_start,
    STATE(32), 1,
      sym_comment,
    STATE(146), 1,
      sym_tableconstructor,
    STATE(147), 1,
      sym_string,
    STATE(148), 1,
      sym__args,
    STATE(149), 1,
      sym__parentheses_call,
    STATE(150), 1,
      sym__string_call,
    STATE(151), 1,
      sym__table_call,
    STATE(158), 1,
      sym__self_call,
    STATE(1168), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(111), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(113), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [3740] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(189), 1,
      anon_sym_DOT,
    ACTIONS(191), 1,
      anon_sym_COLON,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    ACTIONS(223), 1,
      anon_sym_LBRACK,
    ACTIONS(225), 1,
      anon_sym_LBRACE,
    ACTIONS(227), 1,
      sym_left_paren,
    ACTIONS(229), 1,
      sym__string_start,
    STATE(33), 1,
      sym_comment,
    STATE(146), 1,
      sym_tableconstructor,
    STATE(147), 1,
      sym_string,
    STATE(148), 1,
      sym__args,
    STATE(149), 1,
      sym__parentheses_call,
    STATE(150), 1,
      sym__string_call,
    STATE(151), 1,
      sym__table_call,
    STATE(158), 1,
      sym__self_call,
    STATE(1159), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(119), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(121), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [3863] = 32,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(143), 1,
      anon_sym_DOT,
    ACTIONS(145), 1,
      anon_sym_COLON,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    ACTIONS(177), 1,
      anon_sym_LBRACK,
    ACTIONS(179), 1,
      anon_sym_LBRACE,
    ACTIONS(181), 1,
      sym_left_paren,
    ACTIONS(183), 1,
      sym__string_start,
    STATE(34), 1,
      sym_comment,
    STATE(81), 1,
      sym__string_call,
    STATE(83), 1,
      sym__table_call,
    STATE(85), 1,
      sym__parentheses_call,
    STATE(86), 1,
      sym__self_call,
    STATE(92), 1,
      sym__args,
    STATE(97), 1,
      sym_string,
    STATE(103), 1,
      sym_tableconstructor,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(139), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(141), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [3982] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(189), 1,
      anon_sym_DOT,
    ACTIONS(191), 1,
      anon_sym_COLON,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    ACTIONS(223), 1,
      anon_sym_LBRACK,
    ACTIONS(225), 1,
      anon_sym_LBRACE,
    ACTIONS(227), 1,
      sym_left_paren,
    ACTIONS(229), 1,
      sym__string_start,
    STATE(35), 1,
      sym_comment,
    STATE(146), 1,
      sym_tableconstructor,
    STATE(147), 1,
      sym_string,
    STATE(148), 1,
      sym__args,
    STATE(149), 1,
      sym__parentheses_call,
    STATE(150), 1,
      sym__string_call,
    STATE(151), 1,
      sym__table_call,
    STATE(158), 1,
      sym__self_call,
    STATE(1145), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(115), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(117), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [4105] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(231), 1,
      anon_sym_DOT,
    ACTIONS(233), 1,
      anon_sym_COLON,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    ACTIONS(265), 1,
      anon_sym_LBRACK,
    ACTIONS(267), 1,
      anon_sym_LBRACE,
    ACTIONS(269), 1,
      sym_left_paren,
    ACTIONS(271), 1,
      sym__string_start,
    STATE(36), 1,
      sym_comment,
    STATE(161), 1,
      sym__self_call,
    STATE(164), 1,
      sym__table_call,
    STATE(174), 1,
      sym__string_call,
    STATE(179), 1,
      sym__parentheses_call,
    STATE(180), 1,
      sym__args,
    STATE(182), 1,
      sym_tableconstructor,
    STATE(184), 1,
      sym_string,
    STATE(1146), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(107), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(109), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [4228] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(189), 1,
      anon_sym_DOT,
    ACTIONS(191), 1,
      anon_sym_COLON,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    ACTIONS(223), 1,
      anon_sym_LBRACK,
    ACTIONS(225), 1,
      anon_sym_LBRACE,
    ACTIONS(227), 1,
      sym_left_paren,
    ACTIONS(229), 1,
      sym__string_start,
    STATE(37), 1,
      sym_comment,
    STATE(146), 1,
      sym_tableconstructor,
    STATE(147), 1,
      sym_string,
    STATE(148), 1,
      sym__args,
    STATE(149), 1,
      sym__parentheses_call,
    STATE(150), 1,
      sym__string_call,
    STATE(151), 1,
      sym__table_call,
    STATE(158), 1,
      sym__self_call,
    STATE(1171), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(49), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(85), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [4351] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(189), 1,
      anon_sym_DOT,
    ACTIONS(191), 1,
      anon_sym_COLON,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    ACTIONS(223), 1,
      anon_sym_LBRACK,
    ACTIONS(225), 1,
      anon_sym_LBRACE,
    ACTIONS(227), 1,
      sym_left_paren,
    ACTIONS(229), 1,
      sym__string_start,
    STATE(38), 1,
      sym_comment,
    STATE(146), 1,
      sym_tableconstructor,
    STATE(147), 1,
      sym_string,
    STATE(148), 1,
      sym__args,
    STATE(149), 1,
      sym__parentheses_call,
    STATE(150), 1,
      sym__string_call,
    STATE(151), 1,
      sym__table_call,
    STATE(158), 1,
      sym__self_call,
    STATE(1153), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(95), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(97), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [4474] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(231), 1,
      anon_sym_DOT,
    ACTIONS(233), 1,
      anon_sym_COLON,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    ACTIONS(265), 1,
      anon_sym_LBRACK,
    ACTIONS(267), 1,
      anon_sym_LBRACE,
    ACTIONS(269), 1,
      sym_left_paren,
    ACTIONS(271), 1,
      sym__string_start,
    STATE(39), 1,
      sym_comment,
    STATE(161), 1,
      sym__self_call,
    STATE(164), 1,
      sym__table_call,
    STATE(174), 1,
      sym__string_call,
    STATE(179), 1,
      sym__parentheses_call,
    STATE(180), 1,
      sym__args,
    STATE(182), 1,
      sym_tableconstructor,
    STATE(184), 1,
      sym_string,
    STATE(1130), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(115), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(117), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [4597] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(231), 1,
      anon_sym_DOT,
    ACTIONS(233), 1,
      anon_sym_COLON,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    ACTIONS(265), 1,
      anon_sym_LBRACK,
    ACTIONS(267), 1,
      anon_sym_LBRACE,
    ACTIONS(269), 1,
      sym_left_paren,
    ACTIONS(271), 1,
      sym__string_start,
    STATE(40), 1,
      sym_comment,
    STATE(161), 1,
      sym__self_call,
    STATE(164), 1,
      sym__table_call,
    STATE(174), 1,
      sym__string_call,
    STATE(179), 1,
      sym__parentheses_call,
    STATE(180), 1,
      sym__args,
    STATE(182), 1,
      sym_tableconstructor,
    STATE(184), 1,
      sym_string,
    STATE(1082), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(95), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(97), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [4720] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(231), 1,
      anon_sym_DOT,
    ACTIONS(233), 1,
      anon_sym_COLON,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    ACTIONS(265), 1,
      anon_sym_LBRACK,
    ACTIONS(267), 1,
      anon_sym_LBRACE,
    ACTIONS(269), 1,
      sym_left_paren,
    ACTIONS(271), 1,
      sym__string_start,
    STATE(41), 1,
      sym_comment,
    STATE(161), 1,
      sym__self_call,
    STATE(164), 1,
      sym__table_call,
    STATE(174), 1,
      sym__string_call,
    STATE(179), 1,
      sym__parentheses_call,
    STATE(180), 1,
      sym__args,
    STATE(182), 1,
      sym_tableconstructor,
    STATE(184), 1,
      sym_string,
    STATE(1072), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(99), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(101), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [4843] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(231), 1,
      anon_sym_DOT,
    ACTIONS(233), 1,
      anon_sym_COLON,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    ACTIONS(265), 1,
      anon_sym_LBRACK,
    ACTIONS(267), 1,
      anon_sym_LBRACE,
    ACTIONS(269), 1,
      sym_left_paren,
    ACTIONS(271), 1,
      sym__string_start,
    STATE(42), 1,
      sym_comment,
    STATE(161), 1,
      sym__self_call,
    STATE(164), 1,
      sym__table_call,
    STATE(174), 1,
      sym__string_call,
    STATE(179), 1,
      sym__parentheses_call,
    STATE(180), 1,
      sym__args,
    STATE(182), 1,
      sym_tableconstructor,
    STATE(184), 1,
      sym_string,
    STATE(1101), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(103), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(105), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [4966] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(189), 1,
      anon_sym_DOT,
    ACTIONS(191), 1,
      anon_sym_COLON,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    ACTIONS(223), 1,
      anon_sym_LBRACK,
    ACTIONS(225), 1,
      anon_sym_LBRACE,
    ACTIONS(227), 1,
      sym_left_paren,
    ACTIONS(229), 1,
      sym__string_start,
    STATE(43), 1,
      sym_comment,
    STATE(146), 1,
      sym_tableconstructor,
    STATE(147), 1,
      sym_string,
    STATE(148), 1,
      sym__args,
    STATE(149), 1,
      sym__parentheses_call,
    STATE(150), 1,
      sym__string_call,
    STATE(151), 1,
      sym__table_call,
    STATE(158), 1,
      sym__self_call,
    STATE(1131), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(99), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(101), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [5089] = 34,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(231), 1,
      anon_sym_DOT,
    ACTIONS(233), 1,
      anon_sym_COLON,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    ACTIONS(265), 1,
      anon_sym_LBRACK,
    ACTIONS(267), 1,
      anon_sym_LBRACE,
    ACTIONS(269), 1,
      sym_left_paren,
    ACTIONS(271), 1,
      sym__string_start,
    STATE(44), 1,
      sym_comment,
    STATE(161), 1,
      sym__self_call,
    STATE(164), 1,
      sym__table_call,
    STATE(174), 1,
      sym__string_call,
    STATE(179), 1,
      sym__parentheses_call,
    STATE(180), 1,
      sym__args,
    STATE(182), 1,
      sym_tableconstructor,
    STATE(184), 1,
      sym_string,
    STATE(1112), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(111), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(113), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [5212] = 18,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(189), 1,
      anon_sym_DOT,
    ACTIONS(191), 1,
      anon_sym_COLON,
    ACTIONS(223), 1,
      anon_sym_LBRACK,
    ACTIONS(225), 1,
      anon_sym_LBRACE,
    ACTIONS(227), 1,
      sym_left_paren,
    ACTIONS(229), 1,
      sym__string_start,
    STATE(45), 1,
      sym_comment,
    STATE(146), 1,
      sym_tableconstructor,
    STATE(147), 1,
      sym_string,
    STATE(148), 1,
      sym__args,
    STATE(149), 1,
      sym__parentheses_call,
    STATE(150), 1,
      sym__string_call,
    STATE(151), 1,
      sym__table_call,
    STATE(158), 1,
      sym__self_call,
    ACTIONS(125), 18,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(123), 19,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [5302] = 18,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(189), 1,
      anon_sym_DOT,
    ACTIONS(191), 1,
      anon_sym_COLON,
    ACTIONS(223), 1,
      anon_sym_LBRACK,
    ACTIONS(225), 1,
      anon_sym_LBRACE,
    ACTIONS(227), 1,
      sym_left_paren,
    ACTIONS(229), 1,
      sym__string_start,
    STATE(46), 1,
      sym_comment,
    STATE(146), 1,
      sym_tableconstructor,
    STATE(147), 1,
      sym_string,
    STATE(148), 1,
      sym__args,
    STATE(149), 1,
      sym__parentheses_call,
    STATE(150), 1,
      sym__string_call,
    STATE(151), 1,
      sym__table_call,
    STATE(158), 1,
      sym__self_call,
    ACTIONS(133), 18,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(131), 19,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [5392] = 18,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(231), 1,
      anon_sym_DOT,
    ACTIONS(233), 1,
      anon_sym_COLON,
    ACTIONS(265), 1,
      anon_sym_LBRACK,
    ACTIONS(267), 1,
      anon_sym_LBRACE,
    ACTIONS(269), 1,
      sym_left_paren,
    ACTIONS(271), 1,
      sym__string_start,
    STATE(47), 1,
      sym_comment,
    STATE(161), 1,
      sym__self_call,
    STATE(164), 1,
      sym__table_call,
    STATE(174), 1,
      sym__string_call,
    STATE(179), 1,
      sym__parentheses_call,
    STATE(180), 1,
      sym__args,
    STATE(182), 1,
      sym_tableconstructor,
    STATE(184), 1,
      sym_string,
    ACTIONS(133), 18,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(131), 19,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [5482] = 32,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(189), 1,
      anon_sym_DOT,
    ACTIONS(191), 1,
      anon_sym_COLON,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    ACTIONS(223), 1,
      anon_sym_LBRACK,
    ACTIONS(225), 1,
      anon_sym_LBRACE,
    ACTIONS(227), 1,
      sym_left_paren,
    ACTIONS(229), 1,
      sym__string_start,
    STATE(48), 1,
      sym_comment,
    STATE(146), 1,
      sym_tableconstructor,
    STATE(147), 1,
      sym_string,
    STATE(148), 1,
      sym__args,
    STATE(149), 1,
      sym__parentheses_call,
    STATE(150), 1,
      sym__string_call,
    STATE(151), 1,
      sym__table_call,
    STATE(158), 1,
      sym__self_call,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(127), 5,
      anon_sym_SEMI,
      anon_sym_COMMA,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(129), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [5600] = 18,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(231), 1,
      anon_sym_DOT,
    ACTIONS(233), 1,
      anon_sym_COLON,
    ACTIONS(265), 1,
      anon_sym_LBRACK,
    ACTIONS(267), 1,
      anon_sym_LBRACE,
    ACTIONS(269), 1,
      sym_left_paren,
    ACTIONS(271), 1,
      sym__string_start,
    STATE(49), 1,
      sym_comment,
    STATE(161), 1,
      sym__self_call,
    STATE(164), 1,
      sym__table_call,
    STATE(174), 1,
      sym__string_call,
    STATE(179), 1,
      sym__parentheses_call,
    STATE(180), 1,
      sym__args,
    STATE(182), 1,
      sym_tableconstructor,
    STATE(184), 1,
      sym_string,
    ACTIONS(125), 18,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(123), 19,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [5690] = 32,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(231), 1,
      anon_sym_DOT,
    ACTIONS(233), 1,
      anon_sym_COLON,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    ACTIONS(265), 1,
      anon_sym_LBRACK,
    ACTIONS(267), 1,
      anon_sym_LBRACE,
    ACTIONS(269), 1,
      sym_left_paren,
    ACTIONS(271), 1,
      sym__string_start,
    STATE(50), 1,
      sym_comment,
    STATE(161), 1,
      sym__self_call,
    STATE(164), 1,
      sym__table_call,
    STATE(174), 1,
      sym__string_call,
    STATE(179), 1,
      sym__parentheses_call,
    STATE(180), 1,
      sym__args,
    STATE(182), 1,
      sym_tableconstructor,
    STATE(184), 1,
      sym_string,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(127), 5,
      anon_sym_SEMI,
      anon_sym_COMMA,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(129), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [5808] = 18,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(273), 1,
      anon_sym_DOT,
    ACTIONS(275), 1,
      anon_sym_COLON,
    ACTIONS(277), 1,
      anon_sym_LBRACK,
    ACTIONS(279), 1,
      anon_sym_LBRACE,
    ACTIONS(281), 1,
      sym_left_paren,
    ACTIONS(283), 1,
      sym__string_start,
    STATE(51), 1,
      sym_comment,
    STATE(214), 1,
      sym__self_call,
    STATE(215), 1,
      sym__table_call,
    STATE(216), 1,
      sym__string_call,
    STATE(217), 1,
      sym__parentheses_call,
    STATE(218), 1,
      sym__args,
    STATE(219), 1,
      sym_tableconstructor,
    STATE(220), 1,
      sym_string,
    ACTIONS(125), 10,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(123), 26,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [5897] = 32,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(189), 1,
      anon_sym_DOT,
    ACTIONS(191), 1,
      anon_sym_COLON,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    ACTIONS(223), 1,
      anon_sym_LBRACK,
    ACTIONS(225), 1,
      anon_sym_LBRACE,
    ACTIONS(227), 1,
      sym_left_paren,
    ACTIONS(229), 1,
      sym__string_start,
    STATE(52), 1,
      sym_comment,
    STATE(146), 1,
      sym_tableconstructor,
    STATE(147), 1,
      sym_string,
    STATE(148), 1,
      sym__args,
    STATE(149), 1,
      sym__parentheses_call,
    STATE(150), 1,
      sym__string_call,
    STATE(151), 1,
      sym__table_call,
    STATE(158), 1,
      sym__self_call,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(135), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(137), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [6014] = 32,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(273), 1,
      anon_sym_DOT,
    ACTIONS(275), 1,
      anon_sym_COLON,
    ACTIONS(277), 1,
      anon_sym_LBRACK,
    ACTIONS(279), 1,
      anon_sym_LBRACE,
    ACTIONS(281), 1,
      sym_left_paren,
    ACTIONS(283), 1,
      sym__string_start,
    ACTIONS(285), 1,
      anon_sym_or,
    ACTIONS(287), 1,
      anon_sym_and,
    ACTIONS(293), 1,
      anon_sym_PIPE,
    ACTIONS(295), 1,
      anon_sym_TILDE,
    ACTIONS(297), 1,
      anon_sym_AMP,
    ACTIONS(301), 1,
      anon_sym_PLUS,
    ACTIONS(303), 1,
      anon_sym_DASH,
    ACTIONS(307), 1,
      anon_sym_SLASH,
    ACTIONS(309), 1,
      anon_sym_DOT_DOT,
    ACTIONS(311), 1,
      anon_sym_CARET,
    STATE(53), 1,
      sym_comment,
    STATE(214), 1,
      sym__self_call,
    STATE(215), 1,
      sym__table_call,
    STATE(216), 1,
      sym__string_call,
    STATE(217), 1,
      sym__parentheses_call,
    STATE(218), 1,
      sym__args,
    STATE(219), 1,
      sym_tableconstructor,
    STATE(220), 1,
      sym_string,
    ACTIONS(289), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(299), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(305), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(313), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(291), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(315), 12,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [6131] = 32,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(231), 1,
      anon_sym_DOT,
    ACTIONS(233), 1,
      anon_sym_COLON,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    ACTIONS(265), 1,
      anon_sym_LBRACK,
    ACTIONS(267), 1,
      anon_sym_LBRACE,
    ACTIONS(269), 1,
      sym_left_paren,
    ACTIONS(271), 1,
      sym__string_start,
    STATE(54), 1,
      sym_comment,
    STATE(161), 1,
      sym__self_call,
    STATE(164), 1,
      sym__table_call,
    STATE(174), 1,
      sym__string_call,
    STATE(179), 1,
      sym__parentheses_call,
    STATE(180), 1,
      sym__args,
    STATE(182), 1,
      sym_tableconstructor,
    STATE(184), 1,
      sym_string,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(135), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(137), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [6248] = 18,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(273), 1,
      anon_sym_DOT,
    ACTIONS(275), 1,
      anon_sym_COLON,
    ACTIONS(277), 1,
      anon_sym_LBRACK,
    ACTIONS(279), 1,
      anon_sym_LBRACE,
    ACTIONS(281), 1,
      sym_left_paren,
    ACTIONS(283), 1,
      sym__string_start,
    STATE(55), 1,
      sym_comment,
    STATE(214), 1,
      sym__self_call,
    STATE(215), 1,
      sym__table_call,
    STATE(216), 1,
      sym__string_call,
    STATE(217), 1,
      sym__parentheses_call,
    STATE(218), 1,
      sym__args,
    STATE(219), 1,
      sym_tableconstructor,
    STATE(220), 1,
      sym_string,
    ACTIONS(133), 10,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(131), 26,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [6337] = 32,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(231), 1,
      anon_sym_DOT,
    ACTIONS(233), 1,
      anon_sym_COLON,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    ACTIONS(265), 1,
      anon_sym_LBRACK,
    ACTIONS(267), 1,
      anon_sym_LBRACE,
    ACTIONS(269), 1,
      sym_left_paren,
    ACTIONS(271), 1,
      sym__string_start,
    STATE(56), 1,
      sym_comment,
    STATE(161), 1,
      sym__self_call,
    STATE(164), 1,
      sym__table_call,
    STATE(174), 1,
      sym__string_call,
    STATE(179), 1,
      sym__parentheses_call,
    STATE(180), 1,
      sym__args,
    STATE(182), 1,
      sym_tableconstructor,
    STATE(184), 1,
      sym_string,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(139), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(141), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [6454] = 32,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(189), 1,
      anon_sym_DOT,
    ACTIONS(191), 1,
      anon_sym_COLON,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    ACTIONS(223), 1,
      anon_sym_LBRACK,
    ACTIONS(225), 1,
      anon_sym_LBRACE,
    ACTIONS(227), 1,
      sym_left_paren,
    ACTIONS(229), 1,
      sym__string_start,
    STATE(57), 1,
      sym_comment,
    STATE(146), 1,
      sym_tableconstructor,
    STATE(147), 1,
      sym_string,
    STATE(148), 1,
      sym__args,
    STATE(149), 1,
      sym__parentheses_call,
    STATE(150), 1,
      sym__string_call,
    STATE(151), 1,
      sym__table_call,
    STATE(158), 1,
      sym__self_call,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(139), 4,
      anon_sym_SEMI,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(141), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [6571] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(58), 1,
      sym_comment,
    ACTIONS(319), 17,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(317), 31,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [6633] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(59), 1,
      sym_comment,
    ACTIONS(323), 17,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(321), 31,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [6695] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(60), 1,
      sym_comment,
    ACTIONS(327), 17,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(325), 31,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [6757] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(61), 1,
      sym_comment,
    ACTIONS(331), 17,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(329), 31,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [6819] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(62), 1,
      sym_comment,
    ACTIONS(335), 17,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(333), 31,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [6881] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(63), 1,
      sym_comment,
    ACTIONS(339), 17,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(337), 31,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [6943] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(64), 1,
      sym_comment,
    ACTIONS(343), 17,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(341), 31,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [7005] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(65), 1,
      sym_comment,
    ACTIONS(347), 17,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(345), 31,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [7067] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(66), 1,
      sym_comment,
    ACTIONS(351), 17,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(349), 31,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [7129] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(67), 1,
      sym_comment,
    ACTIONS(355), 17,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(353), 31,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [7191] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(68), 1,
      sym_comment,
    ACTIONS(359), 17,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(357), 31,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [7253] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(69), 1,
      sym_comment,
    ACTIONS(363), 17,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(361), 31,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [7315] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(70), 1,
      sym_comment,
    ACTIONS(367), 17,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(365), 31,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [7377] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(71), 1,
      sym_comment,
    ACTIONS(371), 17,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(369), 31,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [7439] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(72), 1,
      sym_comment,
    ACTIONS(375), 17,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(373), 31,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [7501] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(73), 1,
      sym_comment,
    ACTIONS(379), 17,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(377), 31,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [7563] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(74), 1,
      sym_comment,
    ACTIONS(383), 17,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(381), 31,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [7625] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(75), 1,
      sym_comment,
    ACTIONS(359), 17,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(357), 31,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [7687] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(76), 1,
      sym_comment,
    ACTIONS(363), 17,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(361), 31,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [7749] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(77), 1,
      sym_comment,
    ACTIONS(363), 17,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(361), 31,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [7811] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(78), 1,
      sym_comment,
    ACTIONS(387), 17,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(385), 31,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [7873] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    STATE(79), 1,
      sym_comment,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    ACTIONS(125), 6,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(123), 28,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
  [7960] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    STATE(80), 1,
      sym_comment,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    ACTIONS(133), 6,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(131), 28,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
  [8047] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(81), 1,
      sym_comment,
    ACTIONS(363), 21,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(361), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [8106] = 36,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(13), 1,
      anon_sym_local,
    ACTIONS(15), 1,
      anon_sym_return,
    ACTIONS(17), 1,
      anon_sym_do,
    ACTIONS(19), 1,
      anon_sym_while,
    ACTIONS(21), 1,
      anon_sym_repeat,
    ACTIONS(23), 1,
      anon_sym_if,
    ACTIONS(25), 1,
      anon_sym_for,
    ACTIONS(27), 1,
      sym_function_start,
    ACTIONS(29), 1,
      sym__identifier,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(33), 1,
      aux_sym__documentation_tag_container_token1,
    ACTIONS(35), 1,
      aux_sym__documentation_config_container_token1,
    ACTIONS(37), 1,
      aux_sym__documentation_brief_container_token1,
    ACTIONS(39), 1,
      aux_sym_documentation_command_token1,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(43), 1,
      aux_sym_emmy_class_token1,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(403), 1,
      ts_builtin_sym_end,
    ACTIONS(405), 1,
      anon_sym_,
    STATE(82), 1,
      sym_comment,
    STATE(123), 1,
      aux_sym_program_repeat1,
    STATE(572), 1,
      sym__var,
    STATE(573), 1,
      sym_identifier,
    STATE(593), 1,
      sym_function_call,
    STATE(762), 1,
      sym_variable_declarator,
    STATE(803), 1,
      sym_emmy_class,
    STATE(1320), 1,
      sym__prefix_exp,
    STATE(1328), 1,
      sym_emmy_documentation,
    STATE(1369), 1,
      sym_local,
    STATE(1638), 1,
      sym_return_statement,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1039), 6,
      sym__statement,
      sym__documentation_tag_container,
      sym__documentation_config_container,
      sym__documentation_brief_container,
      sym_documentation_command,
      sym_documentation_class,
    STATE(945), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [8227] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(83), 1,
      sym_comment,
    ACTIONS(363), 21,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(361), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [8286] = 36,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(13), 1,
      anon_sym_local,
    ACTIONS(15), 1,
      anon_sym_return,
    ACTIONS(17), 1,
      anon_sym_do,
    ACTIONS(19), 1,
      anon_sym_while,
    ACTIONS(21), 1,
      anon_sym_repeat,
    ACTIONS(23), 1,
      anon_sym_if,
    ACTIONS(25), 1,
      anon_sym_for,
    ACTIONS(27), 1,
      sym_function_start,
    ACTIONS(29), 1,
      sym__identifier,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(33), 1,
      aux_sym__documentation_tag_container_token1,
    ACTIONS(35), 1,
      aux_sym__documentation_config_container_token1,
    ACTIONS(37), 1,
      aux_sym__documentation_brief_container_token1,
    ACTIONS(39), 1,
      aux_sym_documentation_command_token1,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(43), 1,
      aux_sym_emmy_class_token1,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(407), 1,
      ts_builtin_sym_end,
    ACTIONS(409), 1,
      anon_sym_,
    STATE(84), 1,
      sym_comment,
    STATE(123), 1,
      aux_sym_program_repeat1,
    STATE(572), 1,
      sym__var,
    STATE(573), 1,
      sym_identifier,
    STATE(593), 1,
      sym_function_call,
    STATE(762), 1,
      sym_variable_declarator,
    STATE(803), 1,
      sym_emmy_class,
    STATE(1320), 1,
      sym__prefix_exp,
    STATE(1328), 1,
      sym_emmy_documentation,
    STATE(1369), 1,
      sym_local,
    STATE(1621), 1,
      sym_return_statement,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1039), 6,
      sym__statement,
      sym__documentation_tag_container,
      sym__documentation_config_container,
      sym__documentation_brief_container,
      sym_documentation_command,
      sym_documentation_class,
    STATE(945), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [8407] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(85), 1,
      sym_comment,
    ACTIONS(363), 21,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(361), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [8466] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(86), 1,
      sym_comment,
    ACTIONS(359), 21,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(357), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [8525] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(87), 1,
      sym_comment,
    ACTIONS(319), 21,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(317), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [8584] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(88), 1,
      sym_comment,
    ACTIONS(387), 21,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(385), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [8643] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(89), 1,
      sym_comment,
    ACTIONS(383), 21,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(381), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [8702] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(90), 1,
      sym_comment,
    ACTIONS(335), 21,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(333), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [8761] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(91), 1,
      sym_comment,
    ACTIONS(323), 21,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(321), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [8820] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(92), 1,
      sym_comment,
    ACTIONS(359), 21,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(357), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [8879] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(93), 1,
      sym_comment,
    ACTIONS(367), 21,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(365), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [8938] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(94), 1,
      sym_comment,
    ACTIONS(371), 21,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(369), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [8997] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(95), 1,
      sym_comment,
    ACTIONS(343), 21,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(341), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [9056] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(96), 1,
      sym_comment,
    ACTIONS(355), 21,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(353), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [9115] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(97), 1,
      sym_comment,
    ACTIONS(375), 21,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(373), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [9174] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(98), 1,
      sym_comment,
    ACTIONS(351), 21,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(349), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [9233] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(99), 1,
      sym_comment,
    ACTIONS(339), 21,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(337), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [9292] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(100), 1,
      sym_comment,
    ACTIONS(347), 21,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(345), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [9351] = 36,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(13), 1,
      anon_sym_local,
    ACTIONS(15), 1,
      anon_sym_return,
    ACTIONS(17), 1,
      anon_sym_do,
    ACTIONS(19), 1,
      anon_sym_while,
    ACTIONS(21), 1,
      anon_sym_repeat,
    ACTIONS(23), 1,
      anon_sym_if,
    ACTIONS(25), 1,
      anon_sym_for,
    ACTIONS(27), 1,
      sym_function_start,
    ACTIONS(29), 1,
      sym__identifier,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(33), 1,
      aux_sym__documentation_tag_container_token1,
    ACTIONS(35), 1,
      aux_sym__documentation_config_container_token1,
    ACTIONS(37), 1,
      aux_sym__documentation_brief_container_token1,
    ACTIONS(39), 1,
      aux_sym_documentation_command_token1,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(43), 1,
      aux_sym_emmy_class_token1,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(403), 1,
      ts_builtin_sym_end,
    ACTIONS(405), 1,
      anon_sym_,
    STATE(84), 1,
      aux_sym_program_repeat1,
    STATE(101), 1,
      sym_comment,
    STATE(572), 1,
      sym__var,
    STATE(573), 1,
      sym_identifier,
    STATE(593), 1,
      sym_function_call,
    STATE(762), 1,
      sym_variable_declarator,
    STATE(803), 1,
      sym_emmy_class,
    STATE(1320), 1,
      sym__prefix_exp,
    STATE(1328), 1,
      sym_emmy_documentation,
    STATE(1369), 1,
      sym_local,
    STATE(1638), 1,
      sym_return_statement,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1039), 6,
      sym__statement,
      sym__documentation_tag_container,
      sym__documentation_config_container,
      sym__documentation_brief_container,
      sym_documentation_command,
      sym_documentation_class,
    STATE(945), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [9472] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(102), 1,
      sym_comment,
    ACTIONS(331), 21,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(329), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [9531] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(103), 1,
      sym_comment,
    ACTIONS(379), 21,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(377), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [9590] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(104), 1,
      sym_comment,
    ACTIONS(327), 21,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(325), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [9649] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(105), 1,
      sym_comment,
    STATE(864), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(105), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(103), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [9739] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(106), 1,
      sym_comment,
    STATE(859), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(105), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(103), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [9829] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(107), 1,
      sym_comment,
    STATE(806), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(97), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(95), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [9919] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(108), 1,
      sym_comment,
    STATE(807), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(97), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(95), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [10009] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(109), 1,
      sym_comment,
    STATE(794), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(97), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(95), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [10099] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(110), 1,
      sym_comment,
    STATE(851), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(85), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(49), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [10189] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(111), 1,
      sym_comment,
    STATE(801), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(97), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(95), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [10279] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(112), 1,
      sym_comment,
    STATE(826), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(101), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(99), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [10369] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(113), 1,
      sym_comment,
    STATE(828), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(101), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(99), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [10459] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(114), 1,
      sym_comment,
    STATE(835), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(101), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(99), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [10549] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(115), 1,
      sym_comment,
    STATE(846), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(101), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(99), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [10639] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(116), 1,
      sym_comment,
    STATE(785), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(97), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(95), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [10729] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(117), 1,
      sym_comment,
    STATE(821), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(109), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(107), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [10819] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(118), 1,
      sym_comment,
    STATE(860), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(101), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(99), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [10909] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(119), 1,
      sym_comment,
    STATE(861), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(101), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(99), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [10999] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(120), 1,
      sym_comment,
    STATE(784), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(97), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(95), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [11089] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(121), 1,
      sym_comment,
    STATE(866), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(101), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(99), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [11179] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(122), 1,
      sym_comment,
    STATE(839), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(105), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(103), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [11269] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(413), 1,
      anon_sym_local,
    ACTIONS(416), 1,
      anon_sym_return,
    ACTIONS(418), 1,
      anon_sym_do,
    ACTIONS(421), 1,
      anon_sym_while,
    ACTIONS(424), 1,
      anon_sym_repeat,
    ACTIONS(427), 1,
      anon_sym_if,
    ACTIONS(430), 1,
      anon_sym_for,
    ACTIONS(433), 1,
      sym_function_start,
    ACTIONS(436), 1,
      sym__identifier,
    ACTIONS(439), 1,
      sym_left_paren,
    ACTIONS(442), 1,
      aux_sym__documentation_tag_container_token1,
    ACTIONS(445), 1,
      aux_sym__documentation_config_container_token1,
    ACTIONS(448), 1,
      aux_sym__documentation_brief_container_token1,
    ACTIONS(451), 1,
      aux_sym_documentation_command_token1,
    ACTIONS(454), 1,
      sym_emmy_comment,
    ACTIONS(457), 1,
      aux_sym_emmy_class_token1,
    ACTIONS(460), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(463), 1,
      aux_sym_emmy_typedecl_token1,
    STATE(572), 1,
      sym__var,
    STATE(573), 1,
      sym_identifier,
    STATE(593), 1,
      sym_function_call,
    STATE(762), 1,
      sym_variable_declarator,
    STATE(803), 1,
      sym_emmy_class,
    STATE(1320), 1,
      sym__prefix_exp,
    STATE(1328), 1,
      sym_emmy_documentation,
    STATE(1369), 1,
      sym_local,
    ACTIONS(411), 2,
      ts_builtin_sym_end,
      anon_sym_,
    STATE(123), 2,
      sym_comment,
      aux_sym_program_repeat1,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1039), 6,
      sym__statement,
      sym__documentation_tag_container,
      sym__documentation_config_container,
      sym__documentation_brief_container,
      sym_documentation_command,
      sym_documentation_class,
    STATE(945), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [11383] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(124), 1,
      sym_comment,
    STATE(843), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(105), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(103), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [11473] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(125), 1,
      sym_comment,
    STATE(831), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(97), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(95), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [11563] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(126), 1,
      sym_comment,
    STATE(827), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(97), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(95), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [11653] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(127), 1,
      sym_comment,
    STATE(825), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(97), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(95), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [11743] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(128), 1,
      sym_comment,
    STATE(868), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(101), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(99), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [11833] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(129), 1,
      sym_comment,
    STATE(867), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(101), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(99), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [11923] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(130), 1,
      sym_comment,
    STATE(856), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(105), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(103), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [12013] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(131), 1,
      sym_comment,
    STATE(854), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(105), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(103), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [12103] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(132), 1,
      sym_comment,
    STATE(836), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(117), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(115), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [12193] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(133), 1,
      sym_comment,
    STATE(840), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(121), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(119), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [12283] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(134), 1,
      sym_comment,
    STATE(782), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(105), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(103), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [12373] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(135), 1,
      sym_comment,
    STATE(841), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(121), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(119), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [12463] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(136), 1,
      sym_comment,
    STATE(853), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(121), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(119), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [12553] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(137), 1,
      sym_comment,
    STATE(811), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(121), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(119), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [12643] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(138), 1,
      sym_comment,
    STATE(808), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(121), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(119), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [12733] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(139), 1,
      sym_comment,
    STATE(805), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(121), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(119), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [12823] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(140), 1,
      sym_comment,
    STATE(849), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(105), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(103), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [12913] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(141), 1,
      sym_comment,
    STATE(802), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(121), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(119), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [13003] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(142), 1,
      sym_comment,
    STATE(799), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(121), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(119), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [13093] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(143), 1,
      sym_comment,
    STATE(852), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(105), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(103), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [13183] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(144), 1,
      sym_comment,
    STATE(793), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(121), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(119), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [13273] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(145), 1,
      sym_comment,
    STATE(847), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(113), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(111), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [13363] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(146), 1,
      sym_comment,
    ACTIONS(379), 19,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(377), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [13420] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(147), 1,
      sym_comment,
    ACTIONS(375), 19,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(373), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [13477] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(148), 1,
      sym_comment,
    ACTIONS(359), 19,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(357), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [13534] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(149), 1,
      sym_comment,
    ACTIONS(363), 19,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(361), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [13591] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(150), 1,
      sym_comment,
    ACTIONS(363), 19,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(361), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [13648] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(151), 1,
      sym_comment,
    ACTIONS(363), 19,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(361), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [13705] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(152), 1,
      sym_comment,
    ACTIONS(371), 19,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(369), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [13762] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(153), 1,
      sym_comment,
    ACTIONS(468), 16,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(466), 27,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [13819] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(154), 1,
      sym_comment,
    ACTIONS(343), 19,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(341), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [13876] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(155), 1,
      sym_comment,
    ACTIONS(339), 19,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(337), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [13933] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(156), 1,
      sym_comment,
    ACTIONS(355), 19,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(353), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [13990] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(157), 1,
      sym_comment,
    ACTIONS(367), 19,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(365), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [14047] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(158), 1,
      sym_comment,
    ACTIONS(359), 19,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(357), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [14104] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(159), 1,
      sym_comment,
    ACTIONS(323), 19,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(321), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [14161] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(160), 1,
      sym_comment,
    ACTIONS(319), 19,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(317), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [14218] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(161), 1,
      sym_comment,
    ACTIONS(359), 19,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(357), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [14275] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(162), 1,
      sym_comment,
    ACTIONS(327), 19,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(325), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [14332] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(163), 1,
      sym_comment,
    ACTIONS(319), 19,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(317), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [14389] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(164), 1,
      sym_comment,
    ACTIONS(363), 19,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(361), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [14446] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(165), 1,
      sym_comment,
    ACTIONS(323), 19,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(321), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [14503] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(166), 1,
      sym_comment,
    ACTIONS(472), 16,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(470), 27,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [14560] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(167), 1,
      sym_comment,
    ACTIONS(476), 16,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(474), 27,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [14617] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(168), 1,
      sym_comment,
    ACTIONS(367), 19,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(365), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [14674] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(169), 1,
      sym_comment,
    ACTIONS(480), 16,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(478), 27,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [14731] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(170), 1,
      sym_comment,
    ACTIONS(355), 19,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(353), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [14788] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(171), 1,
      sym_comment,
    ACTIONS(339), 19,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(337), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [14845] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(172), 1,
      sym_comment,
    ACTIONS(331), 19,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(329), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [14902] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(173), 1,
      sym_comment,
    ACTIONS(327), 19,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(325), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [14959] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(174), 1,
      sym_comment,
    ACTIONS(363), 19,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(361), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [15016] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(175), 1,
      sym_comment,
    ACTIONS(335), 19,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(333), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [15073] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(176), 1,
      sym_comment,
    ACTIONS(484), 16,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(482), 27,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [15130] = 19,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(177), 1,
      sym_comment,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(129), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(127), 13,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COMMA,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [15215] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(178), 1,
      sym_comment,
    ACTIONS(335), 19,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(333), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [15272] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(179), 1,
      sym_comment,
    ACTIONS(363), 19,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(361), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [15329] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(180), 1,
      sym_comment,
    ACTIONS(359), 19,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(357), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [15386] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(181), 1,
      sym_comment,
    ACTIONS(383), 19,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(381), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [15443] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(182), 1,
      sym_comment,
    ACTIONS(379), 19,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(377), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [15500] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(183), 1,
      sym_comment,
    ACTIONS(387), 19,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(385), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [15557] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(184), 1,
      sym_comment,
    ACTIONS(375), 19,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(373), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [15614] = 32,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(516), 1,
      anon_sym_else,
    STATE(185), 1,
      sym_comment,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(486), 8,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_do,
      anon_sym_until,
      anon_sym_elseif,
      anon_sym_RPAREN,
  [15725] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(186), 1,
      sym_comment,
    ACTIONS(383), 19,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(381), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [15782] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(187), 1,
      sym_comment,
    ACTIONS(371), 19,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(369), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [15839] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(188), 1,
      sym_comment,
    ACTIONS(387), 19,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(385), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [15896] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(189), 1,
      sym_comment,
    ACTIONS(351), 19,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(349), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [15953] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(190), 1,
      sym_comment,
    ACTIONS(347), 19,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(345), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [16010] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(191), 1,
      sym_comment,
    ACTIONS(351), 19,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(349), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [16067] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(192), 1,
      sym_comment,
    ACTIONS(331), 19,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(329), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [16124] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(193), 1,
      sym_comment,
    ACTIONS(387), 16,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(385), 27,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [16181] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(194), 1,
      sym_comment,
    ACTIONS(347), 19,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(345), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [16238] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(195), 1,
      sym_comment,
    ACTIONS(133), 16,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(131), 27,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [16295] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(196), 1,
      sym_comment,
    ACTIONS(347), 16,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(345), 27,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [16352] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(197), 1,
      sym_comment,
    ACTIONS(383), 16,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(381), 27,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [16409] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(198), 1,
      sym_comment,
    ACTIONS(125), 16,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(123), 27,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [16466] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(199), 1,
      sym_comment,
    ACTIONS(351), 16,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(349), 27,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [16523] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(200), 1,
      sym_comment,
    ACTIONS(343), 19,
      anon_sym_DOT,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(341), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [16580] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(201), 1,
      sym_comment,
    ACTIONS(323), 11,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(321), 31,
      sym__string_start,
      anon_sym_COLON,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [16636] = 19,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(202), 1,
      sym_comment,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(137), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(135), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [16720] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(203), 1,
      sym_comment,
    ACTIONS(347), 11,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(345), 31,
      sym__string_start,
      anon_sym_COLON,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [16776] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(204), 1,
      sym_comment,
    ACTIONS(351), 11,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(349), 31,
      sym__string_start,
      anon_sym_COLON,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [16832] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(205), 1,
      sym_comment,
    ACTIONS(387), 11,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(385), 31,
      sym__string_start,
      anon_sym_COLON,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [16888] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(206), 1,
      sym_comment,
    ACTIONS(383), 11,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(381), 31,
      sym__string_start,
      anon_sym_COLON,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [16944] = 34,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(520), 1,
      anon_sym_COMMA,
    ACTIONS(522), 1,
      anon_sym_else,
    STATE(207), 1,
      sym_comment,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(1343), 1,
      aux_sym__expression_list_repeat1,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(518), 5,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_end,
      anon_sym_until,
      anon_sym_elseif,
  [17058] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(208), 1,
      sym_comment,
    ACTIONS(335), 11,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(333), 31,
      sym__string_start,
      anon_sym_COLON,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [17114] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(209), 1,
      sym_comment,
    ACTIONS(327), 11,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(325), 31,
      sym__string_start,
      anon_sym_COLON,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [17170] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(210), 1,
      sym_comment,
    ACTIONS(339), 11,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(337), 31,
      sym__string_start,
      anon_sym_COLON,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [17226] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(211), 1,
      sym_comment,
    ACTIONS(355), 11,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(353), 31,
      sym__string_start,
      anon_sym_COLON,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [17282] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(212), 1,
      sym_comment,
    ACTIONS(367), 11,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(365), 31,
      sym__string_start,
      anon_sym_COLON,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [17338] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(213), 1,
      sym_comment,
    ACTIONS(319), 11,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(317), 31,
      sym__string_start,
      anon_sym_COLON,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [17394] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(214), 1,
      sym_comment,
    ACTIONS(359), 11,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(357), 31,
      sym__string_start,
      anon_sym_COLON,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [17450] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(215), 1,
      sym_comment,
    ACTIONS(363), 11,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(361), 31,
      sym__string_start,
      anon_sym_COLON,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [17506] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(216), 1,
      sym_comment,
    ACTIONS(363), 11,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(361), 31,
      sym__string_start,
      anon_sym_COLON,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [17562] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(217), 1,
      sym_comment,
    ACTIONS(363), 11,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(361), 31,
      sym__string_start,
      anon_sym_COLON,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [17618] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(218), 1,
      sym_comment,
    ACTIONS(359), 11,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(357), 31,
      sym__string_start,
      anon_sym_COLON,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [17674] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(219), 1,
      sym_comment,
    ACTIONS(379), 11,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(377), 31,
      sym__string_start,
      anon_sym_COLON,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [17730] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(220), 1,
      sym_comment,
    ACTIONS(375), 11,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(373), 31,
      sym__string_start,
      anon_sym_COLON,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [17786] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(221), 1,
      sym_comment,
    ACTIONS(371), 11,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(369), 31,
      sym__string_start,
      anon_sym_COLON,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [17842] = 19,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(222), 1,
      sym_comment,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(141), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(139), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [17926] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(223), 1,
      sym_comment,
    ACTIONS(343), 11,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(341), 31,
      sym__string_start,
      anon_sym_COLON,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [17982] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(224), 1,
      sym_comment,
    ACTIONS(331), 11,
      anon_sym_DOT,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(329), 31,
      sym__string_start,
      anon_sym_COLON,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [18038] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(225), 1,
      sym_comment,
    STATE(997), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(95), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(97), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [18125] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(226), 1,
      sym_comment,
    STATE(1021), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(99), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(101), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [18212] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(227), 1,
      sym_comment,
    STATE(1035), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(103), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(105), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [18299] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(228), 1,
      sym_comment,
    STATE(1036), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(103), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(105), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [18386] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(229), 1,
      sym_comment,
    STATE(1037), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(103), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(105), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [18473] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(230), 1,
      sym_comment,
    STATE(1038), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(103), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(105), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [18560] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(231), 1,
      sym_comment,
    STATE(1002), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(111), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(113), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [18647] = 19,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(57), 1,
      anon_sym_or,
    ACTIONS(59), 1,
      anon_sym_and,
    ACTIONS(65), 1,
      anon_sym_PIPE,
    ACTIONS(67), 1,
      anon_sym_TILDE,
    ACTIONS(69), 1,
      anon_sym_AMP,
    ACTIONS(73), 1,
      anon_sym_PLUS,
    ACTIONS(75), 1,
      anon_sym_DASH,
    ACTIONS(79), 1,
      anon_sym_SLASH,
    ACTIONS(81), 1,
      anon_sym_DOT_DOT,
    ACTIONS(83), 1,
      anon_sym_CARET,
    STATE(232), 1,
      sym_comment,
    ACTIONS(61), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(71), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(77), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(63), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(187), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(185), 11,
      ts_builtin_sym_end,
      anon_sym_,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [18730] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(233), 1,
      sym_comment,
    STATE(1004), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(119), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(121), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [18817] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(234), 1,
      sym_comment,
    STATE(1005), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(119), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(121), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [18904] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(235), 1,
      sym_comment,
    STATE(1006), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(119), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(121), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [18991] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(236), 1,
      sym_comment,
    STATE(1007), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(119), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(121), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [19078] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(237), 1,
      sym_comment,
    STATE(1008), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(119), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(121), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [19165] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(238), 1,
      sym_comment,
    ACTIONS(335), 8,
      anon_sym_DOT,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_EQ,
      anon_sym_else,
    ACTIONS(333), 33,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_LBRACE,
      anon_sym_RBRACE,
      sym_left_paren,
      anon_sym_RPAREN,
  [19220] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(239), 1,
      sym_comment,
    STATE(1009), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(119), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(121), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [19307] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(240), 1,
      sym_comment,
    STATE(1050), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(107), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(109), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [19394] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(241), 1,
      sym_comment,
    STATE(1012), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(119), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(121), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [19481] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(242), 1,
      sym_comment,
    STATE(1020), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(119), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(121), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [19568] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(243), 1,
      sym_comment,
    STATE(1022), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(119), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(121), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [19655] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(244), 1,
      sym_comment,
    STATE(1049), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(115), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(117), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [19742] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(245), 1,
      sym_comment,
    STATE(1000), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(99), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(101), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [19829] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(246), 1,
      sym_comment,
    STATE(995), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(99), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(101), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [19916] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(247), 1,
      sym_comment,
    STATE(996), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(99), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(101), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [20003] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(248), 1,
      sym_comment,
    STATE(1030), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(103), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(105), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [20090] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(249), 1,
      sym_comment,
    STATE(1011), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(99), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(101), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [20177] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(250), 1,
      sym_comment,
    STATE(1019), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(99), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(101), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [20264] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(251), 1,
      sym_comment,
    STATE(1033), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(103), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(105), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [20351] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(252), 1,
      sym_comment,
    STATE(1034), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(103), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(105), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [20438] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(253), 1,
      sym_comment,
    STATE(1029), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(95), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(97), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [20525] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(254), 1,
      sym_comment,
    STATE(1031), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(103), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(105), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [20612] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(255), 1,
      sym_comment,
    STATE(998), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(95), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(97), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [20699] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(256), 1,
      sym_comment,
    STATE(999), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(99), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(101), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [20786] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(257), 1,
      sym_comment,
    STATE(1025), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(95), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(97), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [20873] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(258), 1,
      sym_comment,
    STATE(1027), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(49), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(85), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [20960] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(259), 1,
      sym_comment,
    STATE(1018), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(99), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(101), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [21047] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(260), 1,
      sym_comment,
    STATE(1015), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(95), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(97), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [21134] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(261), 1,
      sym_comment,
    STATE(1013), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(99), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(101), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [21221] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(262), 1,
      sym_comment,
    STATE(994), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(103), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(105), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [21308] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(263), 1,
      sym_comment,
    STATE(1014), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(95), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(97), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [21395] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(264), 1,
      sym_comment,
    STATE(1017), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(95), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(97), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [21482] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(265), 1,
      sym_comment,
    STATE(1016), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(95), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(97), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [21569] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(266), 1,
      sym_comment,
    STATE(1010), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(95), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(97), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [21656] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(267), 1,
      sym_comment,
    ACTIONS(359), 7,
      anon_sym_DOT,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(357), 33,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_LBRACE,
      anon_sym_RBRACE,
      sym_left_paren,
      anon_sym_RPAREN,
  [21710] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(268), 1,
      sym_comment,
    ACTIONS(355), 7,
      anon_sym_DOT,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(353), 33,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_LBRACE,
      anon_sym_RBRACE,
      sym_left_paren,
      anon_sym_RPAREN,
  [21764] = 36,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(524), 1,
      anon_sym_end,
    ACTIONS(526), 1,
      anon_sym_local,
    ACTIONS(528), 1,
      anon_sym_return,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(532), 1,
      anon_sym_do,
    ACTIONS(534), 1,
      anon_sym_while,
    ACTIONS(536), 1,
      anon_sym_repeat,
    ACTIONS(538), 1,
      anon_sym_if,
    ACTIONS(540), 1,
      anon_sym_elseif,
    ACTIONS(542), 1,
      anon_sym_else,
    ACTIONS(544), 1,
      anon_sym_for,
    ACTIONS(546), 1,
      sym_function_start,
    ACTIONS(548), 1,
      sym__identifier,
    STATE(269), 1,
      sym_comment,
    STATE(484), 1,
      aux_sym__chunk_repeat1,
    STATE(614), 1,
      sym_identifier,
    STATE(616), 1,
      sym__var,
    STATE(792), 1,
      sym_function_call,
    STATE(971), 1,
      sym_variable_declarator,
    STATE(1201), 1,
      sym__statement,
    STATE(1323), 1,
      sym__prefix_exp,
    STATE(1324), 1,
      sym_emmy_documentation,
    STATE(1371), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1470), 1,
      sym__block,
    STATE(1471), 1,
      aux_sym_if_statement_repeat1,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1115), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [21880] = 36,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(526), 1,
      anon_sym_local,
    ACTIONS(528), 1,
      anon_sym_return,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(532), 1,
      anon_sym_do,
    ACTIONS(534), 1,
      anon_sym_while,
    ACTIONS(536), 1,
      anon_sym_repeat,
    ACTIONS(538), 1,
      anon_sym_if,
    ACTIONS(540), 1,
      anon_sym_elseif,
    ACTIONS(544), 1,
      anon_sym_for,
    ACTIONS(546), 1,
      sym_function_start,
    ACTIONS(548), 1,
      sym__identifier,
    ACTIONS(550), 1,
      anon_sym_end,
    ACTIONS(552), 1,
      anon_sym_else,
    STATE(270), 1,
      sym_comment,
    STATE(484), 1,
      aux_sym__chunk_repeat1,
    STATE(614), 1,
      sym_identifier,
    STATE(616), 1,
      sym__var,
    STATE(792), 1,
      sym_function_call,
    STATE(971), 1,
      sym_variable_declarator,
    STATE(1201), 1,
      sym__statement,
    STATE(1323), 1,
      sym__prefix_exp,
    STATE(1324), 1,
      sym_emmy_documentation,
    STATE(1371), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1451), 1,
      sym__block,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1472), 1,
      aux_sym_if_statement_repeat1,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1115), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [21996] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(271), 1,
      sym_comment,
    ACTIONS(345), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(347), 20,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [22050] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(272), 1,
      sym_comment,
    ACTIONS(349), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(351), 20,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [22104] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(273), 1,
      sym_comment,
    ACTIONS(385), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(387), 20,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [22158] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(274), 1,
      sym_comment,
    ACTIONS(381), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(383), 20,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [22212] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(275), 1,
      sym_comment,
    ACTIONS(383), 7,
      anon_sym_DOT,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(381), 33,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_LBRACE,
      anon_sym_RBRACE,
      sym_left_paren,
      anon_sym_RPAREN,
  [22266] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(276), 1,
      sym_comment,
    ACTIONS(343), 7,
      anon_sym_DOT,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(341), 33,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_LBRACE,
      anon_sym_RBRACE,
      sym_left_paren,
      anon_sym_RPAREN,
  [22320] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(277), 1,
      sym_comment,
    ACTIONS(478), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(480), 20,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [22374] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(278), 1,
      sym_comment,
    ACTIONS(474), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(476), 20,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [22428] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(279), 1,
      sym_comment,
    ACTIONS(470), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(472), 20,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [22482] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(280), 1,
      sym_comment,
    ACTIONS(466), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(468), 20,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [22536] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(281), 1,
      sym_comment,
    ACTIONS(131), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(133), 20,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [22590] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(282), 1,
      sym_comment,
    ACTIONS(347), 7,
      anon_sym_DOT,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(345), 33,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_LBRACE,
      anon_sym_RBRACE,
      sym_left_paren,
      anon_sym_RPAREN,
  [22644] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(283), 1,
      sym_comment,
    ACTIONS(123), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(125), 20,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [22698] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(284), 1,
      sym_comment,
    ACTIONS(371), 7,
      anon_sym_DOT,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(369), 33,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_LBRACE,
      anon_sym_RBRACE,
      sym_left_paren,
      anon_sym_RPAREN,
  [22752] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(285), 1,
      sym_comment,
    ACTIONS(351), 7,
      anon_sym_DOT,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(349), 33,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_LBRACE,
      anon_sym_RBRACE,
      sym_left_paren,
      anon_sym_RPAREN,
  [22806] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(286), 1,
      sym_comment,
    ACTIONS(375), 7,
      anon_sym_DOT,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(373), 33,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_LBRACE,
      anon_sym_RBRACE,
      sym_left_paren,
      anon_sym_RPAREN,
  [22860] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(287), 1,
      sym_comment,
    ACTIONS(379), 7,
      anon_sym_DOT,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(377), 33,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_LBRACE,
      anon_sym_RBRACE,
      sym_left_paren,
      anon_sym_RPAREN,
  [22914] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(288), 1,
      sym_comment,
    ACTIONS(363), 7,
      anon_sym_DOT,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(361), 33,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_LBRACE,
      anon_sym_RBRACE,
      sym_left_paren,
      anon_sym_RPAREN,
  [22968] = 19,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(289), 1,
      sym_comment,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(127), 6,
      anon_sym_SEMI,
      anon_sym_COMMA,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(129), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [23050] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(290), 1,
      sym_comment,
    ACTIONS(363), 7,
      anon_sym_DOT,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(361), 33,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_LBRACE,
      anon_sym_RBRACE,
      sym_left_paren,
      anon_sym_RPAREN,
  [23104] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(291), 1,
      sym_comment,
    ACTIONS(331), 7,
      anon_sym_DOT,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(329), 33,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_LBRACE,
      anon_sym_RBRACE,
      sym_left_paren,
      anon_sym_RPAREN,
  [23158] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(292), 1,
      sym_comment,
    ACTIONS(327), 7,
      anon_sym_DOT,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(325), 33,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_LBRACE,
      anon_sym_RBRACE,
      sym_left_paren,
      anon_sym_RPAREN,
  [23212] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(293), 1,
      sym_comment,
    ACTIONS(363), 7,
      anon_sym_DOT,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(361), 33,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_LBRACE,
      anon_sym_RBRACE,
      sym_left_paren,
      anon_sym_RPAREN,
  [23266] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(294), 1,
      sym_comment,
    ACTIONS(387), 7,
      anon_sym_DOT,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(385), 33,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_LBRACE,
      anon_sym_RBRACE,
      sym_left_paren,
      anon_sym_RPAREN,
  [23320] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(295), 1,
      sym_comment,
    ACTIONS(482), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(484), 20,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [23374] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(296), 1,
      sym_comment,
    ACTIONS(319), 7,
      anon_sym_DOT,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(317), 33,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_LBRACE,
      anon_sym_RBRACE,
      sym_left_paren,
      anon_sym_RPAREN,
  [23428] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(297), 1,
      sym_comment,
    ACTIONS(323), 7,
      anon_sym_DOT,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(321), 33,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_LBRACE,
      anon_sym_RBRACE,
      sym_left_paren,
      anon_sym_RPAREN,
  [23482] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(298), 1,
      sym_comment,
    ACTIONS(367), 7,
      anon_sym_DOT,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(365), 33,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_LBRACE,
      anon_sym_RBRACE,
      sym_left_paren,
      anon_sym_RPAREN,
  [23536] = 36,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(526), 1,
      anon_sym_local,
    ACTIONS(528), 1,
      anon_sym_return,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(532), 1,
      anon_sym_do,
    ACTIONS(534), 1,
      anon_sym_while,
    ACTIONS(536), 1,
      anon_sym_repeat,
    ACTIONS(538), 1,
      anon_sym_if,
    ACTIONS(540), 1,
      anon_sym_elseif,
    ACTIONS(544), 1,
      anon_sym_for,
    ACTIONS(546), 1,
      sym_function_start,
    ACTIONS(548), 1,
      sym__identifier,
    ACTIONS(554), 1,
      anon_sym_end,
    ACTIONS(556), 1,
      anon_sym_else,
    STATE(299), 1,
      sym_comment,
    STATE(484), 1,
      aux_sym__chunk_repeat1,
    STATE(614), 1,
      sym_identifier,
    STATE(616), 1,
      sym__var,
    STATE(792), 1,
      sym_function_call,
    STATE(971), 1,
      sym_variable_declarator,
    STATE(1201), 1,
      sym__statement,
    STATE(1323), 1,
      sym__prefix_exp,
    STATE(1324), 1,
      sym_emmy_documentation,
    STATE(1371), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1454), 1,
      sym__block,
    STATE(1458), 1,
      aux_sym_if_statement_repeat1,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1115), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [23652] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(300), 1,
      sym_comment,
    ACTIONS(339), 7,
      anon_sym_DOT,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(337), 33,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_LBRACE,
      anon_sym_RBRACE,
      sym_left_paren,
      anon_sym_RPAREN,
  [23706] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(301), 1,
      sym_comment,
    ACTIONS(359), 7,
      anon_sym_DOT,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(357), 33,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_LBRACE,
      anon_sym_RBRACE,
      sym_left_paren,
      anon_sym_RPAREN,
  [23760] = 36,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(526), 1,
      anon_sym_local,
    ACTIONS(528), 1,
      anon_sym_return,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(532), 1,
      anon_sym_do,
    ACTIONS(534), 1,
      anon_sym_while,
    ACTIONS(536), 1,
      anon_sym_repeat,
    ACTIONS(538), 1,
      anon_sym_if,
    ACTIONS(540), 1,
      anon_sym_elseif,
    ACTIONS(544), 1,
      anon_sym_for,
    ACTIONS(546), 1,
      sym_function_start,
    ACTIONS(548), 1,
      sym__identifier,
    ACTIONS(558), 1,
      anon_sym_end,
    ACTIONS(560), 1,
      anon_sym_else,
    STATE(302), 1,
      sym_comment,
    STATE(484), 1,
      aux_sym__chunk_repeat1,
    STATE(614), 1,
      sym_identifier,
    STATE(616), 1,
      sym__var,
    STATE(792), 1,
      sym_function_call,
    STATE(971), 1,
      sym_variable_declarator,
    STATE(1201), 1,
      sym__statement,
    STATE(1323), 1,
      sym__prefix_exp,
    STATE(1324), 1,
      sym_emmy_documentation,
    STATE(1371), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1445), 1,
      aux_sym_if_statement_repeat1,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1467), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1115), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [23876] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(303), 1,
      sym_comment,
    STATE(1084), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(95), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(97), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [23961] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(304), 1,
      sym_comment,
    STATE(1076), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(99), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(101), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [24046] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(305), 1,
      sym_comment,
    STATE(1108), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(99), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(101), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [24131] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(306), 1,
      sym_comment,
    STATE(1078), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(99), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(101), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [24216] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(307), 1,
      sym_comment,
    STATE(1081), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(99), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(101), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [24301] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(308), 1,
      sym_comment,
    STATE(1183), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(103), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(105), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [24386] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(309), 1,
      sym_comment,
    STATE(1083), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(95), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(97), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [24471] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(310), 1,
      sym_comment,
    STATE(1184), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(103), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(105), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [24556] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(311), 1,
      sym_comment,
    STATE(1085), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(95), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(97), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [24641] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(312), 1,
      sym_comment,
    STATE(1088), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(95), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(97), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [24726] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(313), 1,
      sym_comment,
    STATE(1089), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(95), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(97), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [24811] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(314), 1,
      sym_comment,
    STATE(1091), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(95), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(97), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [24896] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(315), 1,
      sym_comment,
    STATE(1092), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(95), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(97), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [24981] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(316), 1,
      sym_comment,
    STATE(1096), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(95), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(97), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [25066] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(317), 1,
      sym_comment,
    STATE(1097), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(95), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(97), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [25151] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(318), 1,
      sym_comment,
    STATE(1185), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(103), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(105), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [25236] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(319), 1,
      sym_comment,
    STATE(1186), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(103), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(105), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [25321] = 19,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(320), 1,
      sym_comment,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(139), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(141), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [25402] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(321), 1,
      sym_comment,
    STATE(1100), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(49), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(85), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [25487] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(322), 1,
      sym_comment,
    STATE(1107), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(103), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(105), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [25572] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(323), 1,
      sym_comment,
    STATE(1172), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(49), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(85), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [25657] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(324), 1,
      sym_comment,
    STATE(1102), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(103), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(105), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [25742] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(325), 1,
      sym_comment,
    STATE(1103), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(103), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(105), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [25827] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(326), 1,
      sym_comment,
    STATE(1104), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(103), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(105), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [25912] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(327), 1,
      sym_comment,
    STATE(1167), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(95), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(97), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [25997] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(328), 1,
      sym_comment,
    STATE(1166), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(95), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(97), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [26082] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(329), 1,
      sym_comment,
    STATE(1105), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(103), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(105), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [26167] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(330), 1,
      sym_comment,
    STATE(1106), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(103), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(105), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [26252] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(331), 1,
      sym_comment,
    STATE(1165), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(95), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(97), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [26337] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(332), 1,
      sym_comment,
    STATE(1073), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(103), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(105), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [26422] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(333), 1,
      sym_comment,
    STATE(1109), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(103), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(105), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [26507] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(334), 1,
      sym_comment,
    STATE(1111), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(103), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(105), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [26592] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(335), 1,
      sym_comment,
    STATE(1187), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(103), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(105), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [26677] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(336), 1,
      sym_comment,
    STATE(1188), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(103), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(105), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [26762] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(337), 1,
      sym_comment,
    STATE(1113), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(111), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(113), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [26847] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(338), 1,
      sym_comment,
    STATE(1119), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(119), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(121), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [26932] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(339), 1,
      sym_comment,
    STATE(1120), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(119), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(121), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [27017] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(340), 1,
      sym_comment,
    STATE(1121), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(119), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(121), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [27102] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(341), 1,
      sym_comment,
    STATE(1122), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(119), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(121), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [27187] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(342), 1,
      sym_comment,
    STATE(1123), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(119), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(121), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [27272] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(343), 1,
      sym_comment,
    STATE(1124), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(119), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(121), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [27357] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(344), 1,
      sym_comment,
    STATE(1125), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(119), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(121), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [27442] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(345), 1,
      sym_comment,
    STATE(1126), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(119), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(121), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [27527] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(346), 1,
      sym_comment,
    STATE(1127), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(119), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(121), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [27612] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(347), 1,
      sym_comment,
    STATE(1189), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(103), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(105), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [27697] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(348), 1,
      sym_comment,
    STATE(1137), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(115), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(117), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [27782] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(526), 1,
      anon_sym_local,
    ACTIONS(528), 1,
      anon_sym_return,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(532), 1,
      anon_sym_do,
    ACTIONS(534), 1,
      anon_sym_while,
    ACTIONS(536), 1,
      anon_sym_repeat,
    ACTIONS(538), 1,
      anon_sym_if,
    ACTIONS(544), 1,
      anon_sym_for,
    ACTIONS(546), 1,
      sym_function_start,
    ACTIONS(548), 1,
      sym__identifier,
    STATE(349), 1,
      sym_comment,
    STATE(484), 1,
      aux_sym__chunk_repeat1,
    STATE(614), 1,
      sym_identifier,
    STATE(616), 1,
      sym__var,
    STATE(792), 1,
      sym_function_call,
    STATE(971), 1,
      sym_variable_declarator,
    STATE(1201), 1,
      sym__statement,
    STATE(1323), 1,
      sym__prefix_exp,
    STATE(1324), 1,
      sym_emmy_documentation,
    STATE(1371), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1489), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    ACTIONS(562), 3,
      anon_sym_end,
      anon_sym_elseif,
      anon_sym_else,
    STATE(1115), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [27891] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(350), 1,
      sym_comment,
    STATE(1132), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(99), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(101), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [27976] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(351), 1,
      sym_comment,
    STATE(1190), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(103), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(105), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [28061] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(352), 1,
      sym_comment,
    STATE(1133), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(99), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(101), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [28146] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(353), 1,
      sym_comment,
    STATE(1134), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(99), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(101), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [28231] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(354), 1,
      sym_comment,
    STATE(1182), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(103), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(105), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [28316] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(355), 1,
      sym_comment,
    STATE(1075), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(99), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(101), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [28401] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(356), 1,
      sym_comment,
    STATE(1074), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(99), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(101), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [28486] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(357), 1,
      sym_comment,
    STATE(1169), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(107), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(109), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [28571] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(358), 1,
      sym_comment,
    STATE(1077), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(99), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(101), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [28656] = 19,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(149), 1,
      anon_sym_or,
    ACTIONS(151), 1,
      anon_sym_and,
    ACTIONS(157), 1,
      anon_sym_PIPE,
    ACTIONS(159), 1,
      anon_sym_TILDE,
    ACTIONS(161), 1,
      anon_sym_AMP,
    ACTIONS(165), 1,
      anon_sym_PLUS,
    ACTIONS(167), 1,
      anon_sym_DASH,
    ACTIONS(171), 1,
      anon_sym_SLASH,
    ACTIONS(173), 1,
      anon_sym_DOT_DOT,
    ACTIONS(175), 1,
      anon_sym_CARET,
    STATE(359), 1,
      sym_comment,
    ACTIONS(153), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(163), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(169), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(155), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(135), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(137), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [28737] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(360), 1,
      sym_comment,
    STATE(1164), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(95), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(97), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [28822] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(361), 1,
      sym_comment,
    STATE(1163), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(95), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(97), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [28907] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(362), 1,
      sym_comment,
    STATE(1162), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(95), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(97), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [28992] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(363), 1,
      sym_comment,
    STATE(1160), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(95), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(97), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [29077] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(364), 1,
      sym_comment,
    STATE(1155), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(95), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(97), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [29162] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(365), 1,
      sym_comment,
    STATE(1079), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(99), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(101), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [29247] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(366), 1,
      sym_comment,
    STATE(1080), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(99), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(101), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [29332] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(367), 1,
      sym_comment,
    STATE(1116), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(107), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(109), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [29417] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(368), 1,
      sym_comment,
    STATE(1135), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(99), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(101), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [29502] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(369), 1,
      sym_comment,
    STATE(1129), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(115), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(117), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [29587] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(370), 1,
      sym_comment,
    STATE(1148), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(119), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(121), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [29672] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(371), 1,
      sym_comment,
    STATE(1154), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(95), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(97), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [29757] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(372), 1,
      sym_comment,
    STATE(1149), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(119), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(121), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [29842] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(373), 1,
      sym_comment,
    STATE(1150), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(119), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(121), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [29927] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(374), 1,
      sym_comment,
    STATE(1144), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(99), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(101), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [30012] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(375), 1,
      sym_comment,
    STATE(1151), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(119), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(121), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [30097] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(376), 1,
      sym_comment,
    STATE(1143), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(99), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(101), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [30182] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(377), 1,
      sym_comment,
    STATE(1152), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(119), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(121), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [30267] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(378), 1,
      sym_comment,
    STATE(1156), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(119), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(121), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [30352] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(379), 1,
      sym_comment,
    STATE(1142), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(99), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(101), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [30437] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(380), 1,
      sym_comment,
    STATE(1141), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(99), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(101), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [30522] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(381), 1,
      sym_comment,
    STATE(1138), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(99), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(101), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [30607] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(382), 1,
      sym_comment,
    STATE(1157), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(119), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(121), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [30692] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(383), 1,
      sym_comment,
    STATE(1175), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(119), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(121), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [30777] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(384), 1,
      sym_comment,
    STATE(1158), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(119), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(121), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [30862] = 21,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(385), 1,
      sym_comment,
    STATE(1161), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(111), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(113), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [30947] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(386), 1,
      sym_comment,
    ACTIONS(468), 18,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(466), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [30999] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(387), 1,
      sym_comment,
    ACTIONS(351), 18,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(349), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [31051] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(388), 1,
      sym_comment,
    ACTIONS(480), 18,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(478), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [31103] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(389), 1,
      sym_comment,
    ACTIONS(383), 18,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(381), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [31155] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(390), 1,
      sym_comment,
    ACTIONS(387), 18,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(385), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [31207] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(391), 1,
      sym_comment,
    ACTIONS(468), 18,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(466), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [31259] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(392), 1,
      sym_comment,
    ACTIONS(476), 18,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(474), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [31311] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(393), 1,
      sym_comment,
    ACTIONS(383), 18,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(381), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [31363] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(394), 1,
      sym_comment,
    ACTIONS(387), 18,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(385), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [31415] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(395), 1,
      sym_comment,
    ACTIONS(347), 18,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(345), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [31467] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(396), 1,
      sym_comment,
    ACTIONS(472), 18,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(470), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [31519] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(397), 1,
      sym_comment,
    ACTIONS(133), 18,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(131), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [31571] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(398), 1,
      sym_comment,
    ACTIONS(133), 18,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(131), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [31623] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(399), 1,
      sym_comment,
    ACTIONS(484), 18,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(482), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [31675] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(400), 1,
      sym_comment,
    ACTIONS(351), 18,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(349), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [31727] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(401), 1,
      sym_comment,
    ACTIONS(347), 18,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(345), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [31779] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(402), 1,
      sym_comment,
    ACTIONS(125), 18,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(123), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [31831] = 19,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(403), 1,
      sym_comment,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(127), 6,
      anon_sym_SEMI,
      anon_sym_COMMA,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(129), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [31911] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(404), 1,
      sym_comment,
    ACTIONS(484), 18,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(482), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [31963] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(405), 1,
      sym_comment,
    ACTIONS(480), 18,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(478), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [32015] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(406), 1,
      sym_comment,
    ACTIONS(476), 18,
      anon_sym_end,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(474), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [32067] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(407), 1,
      sym_comment,
    ACTIONS(472), 18,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(470), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [32119] = 19,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(408), 1,
      sym_comment,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(127), 6,
      anon_sym_SEMI,
      anon_sym_COMMA,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(129), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [32199] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(409), 1,
      sym_comment,
    ACTIONS(125), 18,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(123), 20,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [32251] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(564), 1,
      anon_sym_end,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    STATE(410), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1682), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [32358] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(411), 1,
      sym_comment,
    ACTIONS(387), 10,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(385), 27,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [32409] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(584), 1,
      anon_sym_end,
    STATE(412), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1834), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [32516] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(586), 1,
      anon_sym_end,
    STATE(413), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1841), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [32623] = 19,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(285), 1,
      anon_sym_or,
    ACTIONS(287), 1,
      anon_sym_and,
    ACTIONS(293), 1,
      anon_sym_PIPE,
    ACTIONS(295), 1,
      anon_sym_TILDE,
    ACTIONS(297), 1,
      anon_sym_AMP,
    ACTIONS(301), 1,
      anon_sym_PLUS,
    ACTIONS(303), 1,
      anon_sym_DASH,
    ACTIONS(307), 1,
      anon_sym_SLASH,
    ACTIONS(309), 1,
      anon_sym_DOT_DOT,
    ACTIONS(311), 1,
      anon_sym_CARET,
    STATE(414), 1,
      sym_comment,
    ACTIONS(289), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(299), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(305), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(313), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(291), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(315), 13,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [32702] = 19,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(415), 1,
      sym_comment,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(135), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(137), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [32781] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(588), 1,
      anon_sym_end,
    STATE(416), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1677), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [32888] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(590), 1,
      anon_sym_end,
    STATE(417), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1812), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [32995] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(592), 1,
      anon_sym_end,
    STATE(418), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1817), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [33102] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(594), 1,
      anon_sym_end,
    STATE(419), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1717), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [33209] = 19,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(237), 1,
      anon_sym_or,
    ACTIONS(239), 1,
      anon_sym_and,
    ACTIONS(245), 1,
      anon_sym_PIPE,
    ACTIONS(247), 1,
      anon_sym_TILDE,
    ACTIONS(249), 1,
      anon_sym_AMP,
    ACTIONS(253), 1,
      anon_sym_PLUS,
    ACTIONS(255), 1,
      anon_sym_DASH,
    ACTIONS(259), 1,
      anon_sym_SLASH,
    ACTIONS(261), 1,
      anon_sym_DOT_DOT,
    ACTIONS(263), 1,
      anon_sym_CARET,
    STATE(420), 1,
      sym_comment,
    ACTIONS(241), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(251), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(257), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(243), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(139), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(141), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [33288] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(596), 1,
      anon_sym_end,
    STATE(421), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1830), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [33395] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(598), 1,
      anon_sym_end,
    STATE(422), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1730), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [33502] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(600), 1,
      anon_sym_end,
    STATE(423), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1724), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [33609] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(424), 1,
      sym_comment,
    ACTIONS(480), 10,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(478), 27,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [33660] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(602), 1,
      anon_sym_end,
    STATE(425), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1736), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [33767] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(604), 1,
      anon_sym_end,
    STATE(426), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1734), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [33874] = 31,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(427), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(606), 3,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_RBRACE,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [33977] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(608), 1,
      anon_sym_end,
    STATE(428), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1729), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [34084] = 33,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(520), 1,
      anon_sym_COMMA,
    ACTIONS(610), 1,
      anon_sym_RPAREN,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(429), 1,
      sym_comment,
    STATE(1485), 1,
      aux_sym__expression_list_repeat1,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [34191] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(612), 1,
      anon_sym_end,
    STATE(430), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1738), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [34298] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(614), 1,
      anon_sym_end,
    STATE(431), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1809), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [34405] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(616), 1,
      anon_sym_end,
    STATE(432), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1801), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [34512] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(618), 1,
      anon_sym_end,
    STATE(433), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1739), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [34619] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(434), 1,
      sym_comment,
    ACTIONS(476), 10,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(474), 27,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [34670] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(435), 1,
      sym_comment,
    ACTIONS(472), 10,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(470), 27,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [34721] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(620), 1,
      anon_sym_end,
    STATE(436), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1720), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [34828] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(622), 1,
      anon_sym_end,
    STATE(437), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1743), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [34935] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(624), 1,
      anon_sym_end,
    STATE(438), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1745), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [35042] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(626), 1,
      anon_sym_end,
    STATE(439), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1718), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [35149] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(628), 1,
      anon_sym_end,
    STATE(440), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1799), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [35256] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(630), 1,
      anon_sym_end,
    STATE(441), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1732), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [35363] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(632), 1,
      anon_sym_end,
    STATE(442), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1798), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [35470] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(634), 1,
      anon_sym_end,
    STATE(443), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1752), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [35577] = 31,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(444), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(636), 3,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_RBRACE,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [35680] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(638), 1,
      anon_sym_end,
    STATE(445), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1753), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [35787] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(640), 1,
      anon_sym_end,
    STATE(446), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1856), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [35894] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(642), 1,
      anon_sym_end,
    STATE(447), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1758), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [36001] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(644), 1,
      anon_sym_end,
    STATE(448), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1746), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [36108] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(646), 1,
      anon_sym_end,
    STATE(449), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1764), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [36215] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(648), 1,
      anon_sym_end,
    STATE(450), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1857), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [36322] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(650), 1,
      anon_sym_end,
    STATE(451), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1765), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [36429] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(652), 1,
      anon_sym_end,
    STATE(452), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1855), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [36536] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(654), 1,
      anon_sym_end,
    STATE(453), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1861), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [36643] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(656), 1,
      anon_sym_local,
    ACTIONS(658), 1,
      anon_sym_return,
    ACTIONS(660), 1,
      anon_sym_do,
    ACTIONS(662), 1,
      anon_sym_while,
    ACTIONS(664), 1,
      anon_sym_repeat,
    ACTIONS(666), 1,
      anon_sym_until,
    ACTIONS(668), 1,
      anon_sym_if,
    ACTIONS(670), 1,
      anon_sym_for,
    ACTIONS(672), 1,
      sym_function_start,
    ACTIONS(674), 1,
      sym__identifier,
    STATE(454), 1,
      sym_comment,
    STATE(534), 1,
      aux_sym__chunk_repeat1,
    STATE(789), 1,
      sym_identifier,
    STATE(798), 1,
      sym__var,
    STATE(969), 1,
      sym_function_call,
    STATE(1057), 1,
      sym_variable_declarator,
    STATE(1284), 1,
      sym__statement,
    STATE(1322), 1,
      sym__prefix_exp,
    STATE(1325), 1,
      sym_emmy_documentation,
    STATE(1350), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1783), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1221), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [36750] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(455), 1,
      sym_comment,
    ACTIONS(468), 10,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(466), 27,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [36801] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(676), 1,
      anon_sym_end,
    STATE(456), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1768), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [36908] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(678), 1,
      anon_sym_end,
    STATE(457), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1771), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [37015] = 33,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(520), 1,
      anon_sym_COMMA,
    ACTIONS(680), 1,
      anon_sym_do,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(458), 1,
      sym_comment,
    STATE(1491), 1,
      aux_sym__expression_list_repeat1,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [37122] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(682), 1,
      anon_sym_end,
    STATE(459), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1775), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [37229] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(684), 1,
      anon_sym_end,
    STATE(460), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1860), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [37336] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(686), 1,
      anon_sym_end,
    STATE(461), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1782), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [37443] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(688), 1,
      anon_sym_end,
    STATE(462), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1784), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [37550] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(690), 1,
      anon_sym_end,
    STATE(463), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1808), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [37657] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(692), 1,
      anon_sym_end,
    STATE(464), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1851), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [37764] = 19,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(465), 1,
      sym_comment,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(135), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(137), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [37843] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(694), 1,
      anon_sym_end,
    STATE(466), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1795), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [37950] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(467), 1,
      sym_comment,
    ACTIONS(133), 10,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(131), 27,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [38001] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(696), 1,
      anon_sym_end,
    STATE(468), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1713), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [38108] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(698), 1,
      anon_sym_end,
    STATE(469), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1683), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [38215] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(700), 1,
      anon_sym_end,
    STATE(470), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1806), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [38322] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(702), 1,
      anon_sym_end,
    STATE(471), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1818), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [38429] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(704), 1,
      anon_sym_end,
    STATE(472), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1711), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [38536] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(706), 1,
      anon_sym_end,
    STATE(473), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1811), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [38643] = 19,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(195), 1,
      anon_sym_or,
    ACTIONS(197), 1,
      anon_sym_and,
    ACTIONS(203), 1,
      anon_sym_PIPE,
    ACTIONS(205), 1,
      anon_sym_TILDE,
    ACTIONS(207), 1,
      anon_sym_AMP,
    ACTIONS(211), 1,
      anon_sym_PLUS,
    ACTIONS(213), 1,
      anon_sym_DASH,
    ACTIONS(217), 1,
      anon_sym_SLASH,
    ACTIONS(219), 1,
      anon_sym_DOT_DOT,
    ACTIONS(221), 1,
      anon_sym_CARET,
    STATE(474), 1,
      sym_comment,
    ACTIONS(199), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(209), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(215), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(201), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(139), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(141), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [38722] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(708), 1,
      anon_sym_end,
    STATE(475), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1770), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [38829] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(710), 1,
      anon_sym_end,
    STATE(476), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1794), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [38936] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(477), 1,
      sym_comment,
    ACTIONS(383), 10,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(381), 27,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [38987] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(478), 1,
      sym_comment,
    ACTIONS(125), 10,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(123), 27,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [39038] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(712), 1,
      anon_sym_end,
    STATE(479), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1769), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [39145] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(656), 1,
      anon_sym_local,
    ACTIONS(658), 1,
      anon_sym_return,
    ACTIONS(660), 1,
      anon_sym_do,
    ACTIONS(662), 1,
      anon_sym_while,
    ACTIONS(664), 1,
      anon_sym_repeat,
    ACTIONS(668), 1,
      anon_sym_if,
    ACTIONS(670), 1,
      anon_sym_for,
    ACTIONS(672), 1,
      sym_function_start,
    ACTIONS(674), 1,
      sym__identifier,
    ACTIONS(714), 1,
      anon_sym_until,
    STATE(480), 1,
      sym_comment,
    STATE(534), 1,
      aux_sym__chunk_repeat1,
    STATE(789), 1,
      sym_identifier,
    STATE(798), 1,
      sym__var,
    STATE(969), 1,
      sym_function_call,
    STATE(1057), 1,
      sym_variable_declarator,
    STATE(1284), 1,
      sym__statement,
    STATE(1322), 1,
      sym__prefix_exp,
    STATE(1325), 1,
      sym_emmy_documentation,
    STATE(1350), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1760), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1221), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [39252] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(716), 1,
      anon_sym_end,
    STATE(481), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1833), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [39359] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(718), 1,
      anon_sym_end,
    STATE(482), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1792), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [39466] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(720), 1,
      anon_sym_end,
    STATE(483), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1761), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [39573] = 31,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(526), 1,
      anon_sym_local,
    ACTIONS(528), 1,
      anon_sym_return,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(532), 1,
      anon_sym_do,
    ACTIONS(534), 1,
      anon_sym_while,
    ACTIONS(536), 1,
      anon_sym_repeat,
    ACTIONS(538), 1,
      anon_sym_if,
    ACTIONS(544), 1,
      anon_sym_for,
    ACTIONS(546), 1,
      sym_function_start,
    ACTIONS(548), 1,
      sym__identifier,
    STATE(484), 1,
      sym_comment,
    STATE(516), 1,
      aux_sym__chunk_repeat1,
    STATE(614), 1,
      sym_identifier,
    STATE(616), 1,
      sym__var,
    STATE(792), 1,
      sym_function_call,
    STATE(971), 1,
      sym_variable_declarator,
    STATE(1201), 1,
      sym__statement,
    STATE(1323), 1,
      sym__prefix_exp,
    STATE(1324), 1,
      sym_emmy_documentation,
    STATE(1371), 1,
      sym_local,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1465), 1,
      sym__last_statement,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    ACTIONS(722), 3,
      anon_sym_end,
      anon_sym_elseif,
      anon_sym_else,
    STATE(1115), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [39676] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(485), 1,
      sym_comment,
    ACTIONS(484), 10,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(482), 27,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [39727] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(724), 1,
      anon_sym_end,
    STATE(486), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1789), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [39834] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(726), 1,
      anon_sym_end,
    STATE(487), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1766), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [39941] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(728), 1,
      anon_sym_end,
    STATE(488), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1788), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [40048] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(730), 1,
      anon_sym_end,
    STATE(489), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1787), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [40155] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(732), 1,
      anon_sym_end,
    STATE(490), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1785), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [40262] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(734), 1,
      anon_sym_end,
    STATE(491), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1872), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [40369] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(736), 1,
      anon_sym_end,
    STATE(492), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1780), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [40476] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(493), 1,
      sym_comment,
    ACTIONS(351), 10,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(349), 27,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [40527] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(494), 1,
      sym_comment,
    ACTIONS(347), 10,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(345), 27,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [40578] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(738), 1,
      anon_sym_end,
    STATE(495), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1838), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [40685] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(740), 1,
      anon_sym_end,
    STATE(496), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1863), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [40792] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(656), 1,
      anon_sym_local,
    ACTIONS(658), 1,
      anon_sym_return,
    ACTIONS(660), 1,
      anon_sym_do,
    ACTIONS(662), 1,
      anon_sym_while,
    ACTIONS(664), 1,
      anon_sym_repeat,
    ACTIONS(668), 1,
      anon_sym_if,
    ACTIONS(670), 1,
      anon_sym_for,
    ACTIONS(672), 1,
      sym_function_start,
    ACTIONS(674), 1,
      sym__identifier,
    ACTIONS(742), 1,
      anon_sym_until,
    STATE(497), 1,
      sym_comment,
    STATE(534), 1,
      aux_sym__chunk_repeat1,
    STATE(789), 1,
      sym_identifier,
    STATE(798), 1,
      sym__var,
    STATE(969), 1,
      sym_function_call,
    STATE(1057), 1,
      sym_variable_declarator,
    STATE(1284), 1,
      sym__statement,
    STATE(1322), 1,
      sym__prefix_exp,
    STATE(1325), 1,
      sym_emmy_documentation,
    STATE(1350), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1722), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1221), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [40899] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(656), 1,
      anon_sym_local,
    ACTIONS(658), 1,
      anon_sym_return,
    ACTIONS(660), 1,
      anon_sym_do,
    ACTIONS(662), 1,
      anon_sym_while,
    ACTIONS(664), 1,
      anon_sym_repeat,
    ACTIONS(668), 1,
      anon_sym_if,
    ACTIONS(670), 1,
      anon_sym_for,
    ACTIONS(672), 1,
      sym_function_start,
    ACTIONS(674), 1,
      sym__identifier,
    ACTIONS(744), 1,
      anon_sym_until,
    STATE(498), 1,
      sym_comment,
    STATE(534), 1,
      aux_sym__chunk_repeat1,
    STATE(789), 1,
      sym_identifier,
    STATE(798), 1,
      sym__var,
    STATE(969), 1,
      sym_function_call,
    STATE(1057), 1,
      sym_variable_declarator,
    STATE(1284), 1,
      sym__statement,
    STATE(1322), 1,
      sym__prefix_exp,
    STATE(1325), 1,
      sym_emmy_documentation,
    STATE(1350), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1854), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1221), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [41006] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(746), 1,
      anon_sym_end,
    STATE(499), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1744), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [41113] = 31,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(500), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(748), 3,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_RBRACE,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [41216] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(750), 1,
      anon_sym_end,
    STATE(501), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1865), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [41323] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(752), 1,
      anon_sym_end,
    STATE(502), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1869), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [41430] = 33,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(754), 1,
      anon_sym_end,
    STATE(503), 1,
      sym_comment,
    STATE(536), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1440), 1,
      sym__last_statement,
    STATE(1448), 1,
      sym__chunk,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1751), 1,
      sym__block,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [41537] = 32,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(756), 1,
      anon_sym_RPAREN,
    STATE(61), 1,
      sym_right_paren,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(504), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [41641] = 32,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(758), 1,
      anon_sym_RPAREN,
    STATE(102), 1,
      sym_right_paren,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(505), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [41745] = 32,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(760), 1,
      anon_sym_RPAREN,
    STATE(224), 1,
      sym_right_paren,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(506), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [41849] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(507), 1,
      sym_comment,
    ACTIONS(351), 6,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(349), 30,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
  [41899] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(508), 1,
      sym_comment,
    ACTIONS(347), 6,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(345), 30,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
  [41949] = 32,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(762), 1,
      anon_sym_COMMA,
    ACTIONS(764), 1,
      anon_sym_do,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(509), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [42053] = 32,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(766), 1,
      anon_sym_RBRACK,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(510), 1,
      sym_comment,
    STATE(1858), 1,
      sym_right_bracket,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [42157] = 32,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(768), 1,
      anon_sym_RPAREN,
    STATE(172), 1,
      sym_right_paren,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(511), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [42261] = 32,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(770), 1,
      anon_sym_RPAREN,
    STATE(192), 1,
      sym_right_paren,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(512), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [42365] = 32,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(772), 1,
      anon_sym_RPAREN,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(291), 1,
      sym_right_paren,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(513), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [42469] = 31,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(774), 1,
      anon_sym_do,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(514), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [42570] = 31,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(776), 1,
      anon_sym_then,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(515), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [42671] = 26,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(780), 1,
      anon_sym_local,
    ACTIONS(783), 1,
      anon_sym_do,
    ACTIONS(786), 1,
      anon_sym_while,
    ACTIONS(789), 1,
      anon_sym_repeat,
    ACTIONS(792), 1,
      anon_sym_if,
    ACTIONS(795), 1,
      anon_sym_for,
    ACTIONS(798), 1,
      sym_function_start,
    ACTIONS(801), 1,
      sym__identifier,
    ACTIONS(804), 1,
      sym_left_paren,
    ACTIONS(807), 1,
      sym_emmy_comment,
    ACTIONS(810), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(813), 1,
      aux_sym_emmy_typedecl_token1,
    STATE(614), 1,
      sym_identifier,
    STATE(616), 1,
      sym__var,
    STATE(792), 1,
      sym_function_call,
    STATE(971), 1,
      sym_variable_declarator,
    STATE(1201), 1,
      sym__statement,
    STATE(1323), 1,
      sym__prefix_exp,
    STATE(1324), 1,
      sym_emmy_documentation,
    STATE(1371), 1,
      sym_local,
    STATE(516), 2,
      sym_comment,
      aux_sym__chunk_repeat1,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    ACTIONS(778), 5,
      anon_sym_end,
      anon_sym_return,
      sym_break_statement,
      anon_sym_elseif,
      anon_sym_else,
    STATE(1115), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [42762] = 31,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(816), 1,
      anon_sym_RBRACK,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(517), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [42863] = 31,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(818), 1,
      anon_sym_RBRACK,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(518), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [42964] = 31,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(820), 1,
      anon_sym_RBRACK,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(519), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [43065] = 31,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(822), 1,
      anon_sym_do,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(520), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [43166] = 31,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(824), 1,
      anon_sym_then,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(521), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [43267] = 31,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(826), 1,
      anon_sym_COMMA,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(522), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [43368] = 31,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(828), 1,
      anon_sym_RBRACK,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(523), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [43469] = 31,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(830), 1,
      anon_sym_RBRACK,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(524), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [43570] = 31,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(832), 1,
      anon_sym_then,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(525), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [43671] = 31,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(834), 1,
      anon_sym_do,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(526), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [43772] = 31,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(836), 1,
      anon_sym_RBRACK,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(527), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [43873] = 31,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(838), 1,
      anon_sym_then,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(528), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [43974] = 31,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(840), 1,
      anon_sym_RBRACK,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(529), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [44075] = 31,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(842), 1,
      anon_sym_RBRACK,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(530), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [44176] = 31,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(844), 1,
      anon_sym_do,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(531), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [44277] = 31,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(846), 1,
      anon_sym_then,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(532), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [44378] = 31,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(848), 1,
      anon_sym_do,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(533), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [44479] = 31,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(656), 1,
      anon_sym_local,
    ACTIONS(658), 1,
      anon_sym_return,
    ACTIONS(660), 1,
      anon_sym_do,
    ACTIONS(662), 1,
      anon_sym_while,
    ACTIONS(664), 1,
      anon_sym_repeat,
    ACTIONS(668), 1,
      anon_sym_if,
    ACTIONS(670), 1,
      anon_sym_for,
    ACTIONS(672), 1,
      sym_function_start,
    ACTIONS(674), 1,
      sym__identifier,
    ACTIONS(722), 1,
      anon_sym_until,
    STATE(534), 1,
      sym_comment,
    STATE(548), 1,
      aux_sym__chunk_repeat1,
    STATE(789), 1,
      sym_identifier,
    STATE(798), 1,
      sym__var,
    STATE(969), 1,
      sym_function_call,
    STATE(1057), 1,
      sym_variable_declarator,
    STATE(1284), 1,
      sym__statement,
    STATE(1322), 1,
      sym__prefix_exp,
    STATE(1325), 1,
      sym_emmy_documentation,
    STATE(1350), 1,
      sym_local,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1465), 1,
      sym__last_statement,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1221), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [44580] = 31,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(850), 1,
      anon_sym_RBRACK,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(535), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [44681] = 31,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(41), 1,
      sym_emmy_comment,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(530), 1,
      sym_break_statement,
    ACTIONS(566), 1,
      anon_sym_local,
    ACTIONS(568), 1,
      anon_sym_return,
    ACTIONS(570), 1,
      anon_sym_do,
    ACTIONS(572), 1,
      anon_sym_while,
    ACTIONS(574), 1,
      anon_sym_repeat,
    ACTIONS(576), 1,
      anon_sym_if,
    ACTIONS(578), 1,
      anon_sym_for,
    ACTIONS(580), 1,
      sym_function_start,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(722), 1,
      anon_sym_end,
    STATE(536), 1,
      sym_comment,
    STATE(549), 1,
      aux_sym__chunk_repeat1,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(1452), 1,
      sym_return_statement,
    STATE(1465), 1,
      sym__last_statement,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [44782] = 31,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(852), 1,
      anon_sym_RBRACK,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(537), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [44883] = 31,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(389), 1,
      anon_sym_DOT,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(393), 1,
      anon_sym_LBRACK,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(854), 1,
      anon_sym_RBRACK,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(538), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [44984] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(539), 1,
      sym_comment,
    ACTIONS(133), 6,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(131), 28,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
  [45032] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(540), 1,
      sym_comment,
    ACTIONS(472), 6,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(470), 28,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
  [45080] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(541), 1,
      sym_comment,
    ACTIONS(484), 6,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(482), 28,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
  [45128] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(542), 1,
      sym_comment,
    ACTIONS(383), 6,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(381), 28,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
  [45176] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(543), 1,
      sym_comment,
    ACTIONS(468), 6,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(466), 28,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
  [45224] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(544), 1,
      sym_comment,
    ACTIONS(480), 6,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(478), 28,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
  [45272] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(545), 1,
      sym_comment,
    ACTIONS(387), 6,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(385), 28,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
  [45320] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(546), 1,
      sym_comment,
    ACTIONS(476), 6,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(474), 28,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
  [45368] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(547), 1,
      sym_comment,
    ACTIONS(125), 6,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
      anon_sym_else,
    ACTIONS(123), 28,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_RBRACK,
      anon_sym_do,
      anon_sym_until,
      anon_sym_then,
      anon_sym_elseif,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
  [45416] = 26,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(804), 1,
      sym_left_paren,
    ACTIONS(807), 1,
      sym_emmy_comment,
    ACTIONS(810), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(813), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(856), 1,
      anon_sym_local,
    ACTIONS(859), 1,
      anon_sym_do,
    ACTIONS(862), 1,
      anon_sym_while,
    ACTIONS(865), 1,
      anon_sym_repeat,
    ACTIONS(868), 1,
      anon_sym_if,
    ACTIONS(871), 1,
      anon_sym_for,
    ACTIONS(874), 1,
      sym_function_start,
    ACTIONS(877), 1,
      sym__identifier,
    STATE(789), 1,
      sym_identifier,
    STATE(798), 1,
      sym__var,
    STATE(969), 1,
      sym_function_call,
    STATE(1057), 1,
      sym_variable_declarator,
    STATE(1284), 1,
      sym__statement,
    STATE(1322), 1,
      sym__prefix_exp,
    STATE(1325), 1,
      sym_emmy_documentation,
    STATE(1350), 1,
      sym_local,
    STATE(548), 2,
      sym_comment,
      aux_sym__chunk_repeat1,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    ACTIONS(778), 3,
      anon_sym_return,
      sym_break_statement,
      anon_sym_until,
    STATE(1221), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [45505] = 26,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(804), 1,
      sym_left_paren,
    ACTIONS(807), 1,
      sym_emmy_comment,
    ACTIONS(810), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(813), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(880), 1,
      anon_sym_local,
    ACTIONS(883), 1,
      anon_sym_do,
    ACTIONS(886), 1,
      anon_sym_while,
    ACTIONS(889), 1,
      anon_sym_repeat,
    ACTIONS(892), 1,
      anon_sym_if,
    ACTIONS(895), 1,
      anon_sym_for,
    ACTIONS(898), 1,
      sym_function_start,
    ACTIONS(901), 1,
      sym__identifier,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(934), 1,
      sym_function_call,
    STATE(1060), 1,
      sym_variable_declarator,
    STATE(1285), 1,
      sym__statement,
    STATE(1316), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_emmy_documentation,
    STATE(1374), 1,
      sym_local,
    STATE(549), 2,
      sym_comment,
      aux_sym__chunk_repeat1,
    STATE(577), 2,
      sym_emmy_return,
      sym_emmy_typedecl,
    ACTIONS(778), 3,
      anon_sym_end,
      anon_sym_return,
      sym_break_statement,
    STATE(1229), 7,
      sym_variable_declaration,
      sym_do_statement,
      sym_while_statement,
      sym_repeat_statement,
      sym_if_statement,
      sym_for_statement,
      sym_function_statement,
  [45594] = 24,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(904), 1,
      sym_nil,
    ACTIONS(914), 1,
      anon_sym_LBRACK,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(920), 1,
      anon_sym_RBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    STATE(427), 1,
      sym__prefix_exp,
    STATE(550), 1,
      sym_comment,
    STATE(554), 1,
      sym_identifier,
    STATE(649), 1,
      sym_left_bracket,
    STATE(1443), 1,
      sym_field,
    STATE(1521), 1,
      sym__expression_field_expression,
    STATE(1523), 1,
      sym__named_field_expression,
    STATE(1694), 1,
      sym_fieldlist,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(908), 2,
      sym_number,
      sym_ellipsis,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(657), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [45677] = 24,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(904), 1,
      sym_nil,
    ACTIONS(914), 1,
      anon_sym_LBRACK,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(926), 1,
      anon_sym_RBRACE,
    STATE(427), 1,
      sym__prefix_exp,
    STATE(551), 1,
      sym_comment,
    STATE(554), 1,
      sym_identifier,
    STATE(649), 1,
      sym_left_bracket,
    STATE(1443), 1,
      sym_field,
    STATE(1521), 1,
      sym__expression_field_expression,
    STATE(1523), 1,
      sym__named_field_expression,
    STATE(1773), 1,
      sym_fieldlist,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(908), 2,
      sym_number,
      sym_ellipsis,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(657), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [45760] = 24,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(904), 1,
      sym_nil,
    ACTIONS(914), 1,
      anon_sym_LBRACK,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(928), 1,
      anon_sym_RBRACE,
    STATE(427), 1,
      sym__prefix_exp,
    STATE(552), 1,
      sym_comment,
    STATE(554), 1,
      sym_identifier,
    STATE(649), 1,
      sym_left_bracket,
    STATE(1443), 1,
      sym_field,
    STATE(1521), 1,
      sym__expression_field_expression,
    STATE(1523), 1,
      sym__named_field_expression,
    STATE(1820), 1,
      sym_fieldlist,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(908), 2,
      sym_number,
      sym_ellipsis,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(657), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [45843] = 24,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(904), 1,
      sym_nil,
    ACTIONS(914), 1,
      anon_sym_LBRACK,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(930), 1,
      anon_sym_RBRACE,
    STATE(427), 1,
      sym__prefix_exp,
    STATE(553), 1,
      sym_comment,
    STATE(554), 1,
      sym_identifier,
    STATE(649), 1,
      sym_left_bracket,
    STATE(1443), 1,
      sym_field,
    STATE(1521), 1,
      sym__expression_field_expression,
    STATE(1523), 1,
      sym__named_field_expression,
    STATE(1726), 1,
      sym_fieldlist,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(908), 2,
      sym_number,
      sym_ellipsis,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(657), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [45926] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(932), 1,
      anon_sym_EQ,
    STATE(554), 1,
      sym_comment,
    ACTIONS(371), 6,
      anon_sym_DOT,
      anon_sym_LT,
      anon_sym_GT,
      anon_sym_TILDE,
      anon_sym_DASH,
      anon_sym_SLASH,
    ACTIONS(369), 24,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_or,
      anon_sym_and,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
      anon_sym_PIPE,
      anon_sym_AMP,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
      anon_sym_PLUS,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
      anon_sym_DOT_DOT,
      anon_sym_CARET,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      anon_sym_RBRACE,
      sym_left_paren,
  [45973] = 24,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(904), 1,
      sym_nil,
    ACTIONS(914), 1,
      anon_sym_LBRACK,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(934), 1,
      anon_sym_RBRACE,
    STATE(427), 1,
      sym__prefix_exp,
    STATE(554), 1,
      sym_identifier,
    STATE(555), 1,
      sym_comment,
    STATE(649), 1,
      sym_left_bracket,
    STATE(1443), 1,
      sym_field,
    STATE(1521), 1,
      sym__expression_field_expression,
    STATE(1523), 1,
      sym__named_field_expression,
    STATE(1679), 1,
      sym_fieldlist,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(908), 2,
      sym_number,
      sym_ellipsis,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(657), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [46056] = 24,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(904), 1,
      sym_nil,
    ACTIONS(914), 1,
      anon_sym_LBRACK,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(936), 1,
      anon_sym_RBRACE,
    STATE(427), 1,
      sym__prefix_exp,
    STATE(554), 1,
      sym_identifier,
    STATE(556), 1,
      sym_comment,
    STATE(649), 1,
      sym_left_bracket,
    STATE(1443), 1,
      sym_field,
    STATE(1521), 1,
      sym__expression_field_expression,
    STATE(1523), 1,
      sym__named_field_expression,
    STATE(1805), 1,
      sym_fieldlist,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(908), 2,
      sym_number,
      sym_ellipsis,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(657), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [46139] = 24,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(904), 1,
      sym_nil,
    ACTIONS(914), 1,
      anon_sym_LBRACK,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(938), 1,
      anon_sym_RBRACE,
    STATE(427), 1,
      sym__prefix_exp,
    STATE(554), 1,
      sym_identifier,
    STATE(557), 1,
      sym_comment,
    STATE(649), 1,
      sym_left_bracket,
    STATE(1443), 1,
      sym_field,
    STATE(1521), 1,
      sym__expression_field_expression,
    STATE(1523), 1,
      sym__named_field_expression,
    STATE(1690), 1,
      sym_fieldlist,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(908), 2,
      sym_number,
      sym_ellipsis,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(657), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [46222] = 24,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(904), 1,
      sym_nil,
    ACTIONS(914), 1,
      anon_sym_LBRACK,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(940), 1,
      anon_sym_RBRACE,
    STATE(427), 1,
      sym__prefix_exp,
    STATE(554), 1,
      sym_identifier,
    STATE(558), 1,
      sym_comment,
    STATE(649), 1,
      sym_left_bracket,
    STATE(1443), 1,
      sym_field,
    STATE(1521), 1,
      sym__expression_field_expression,
    STATE(1523), 1,
      sym__named_field_expression,
    STATE(1706), 1,
      sym_fieldlist,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(908), 2,
      sym_number,
      sym_ellipsis,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(657), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [46305] = 24,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(904), 1,
      sym_nil,
    ACTIONS(914), 1,
      anon_sym_LBRACK,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(942), 1,
      anon_sym_RBRACE,
    STATE(427), 1,
      sym__prefix_exp,
    STATE(554), 1,
      sym_identifier,
    STATE(559), 1,
      sym_comment,
    STATE(649), 1,
      sym_left_bracket,
    STATE(1443), 1,
      sym_field,
    STATE(1521), 1,
      sym__expression_field_expression,
    STATE(1523), 1,
      sym__named_field_expression,
    STATE(1702), 1,
      sym_fieldlist,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(908), 2,
      sym_number,
      sym_ellipsis,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(657), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [46388] = 24,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(904), 1,
      sym_nil,
    ACTIONS(914), 1,
      anon_sym_LBRACK,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(944), 1,
      anon_sym_RBRACE,
    STATE(427), 1,
      sym__prefix_exp,
    STATE(554), 1,
      sym_identifier,
    STATE(560), 1,
      sym_comment,
    STATE(649), 1,
      sym_left_bracket,
    STATE(1443), 1,
      sym_field,
    STATE(1521), 1,
      sym__expression_field_expression,
    STATE(1523), 1,
      sym__named_field_expression,
    STATE(1750), 1,
      sym_fieldlist,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(908), 2,
      sym_number,
      sym_ellipsis,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(657), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [46471] = 24,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(904), 1,
      sym_nil,
    ACTIONS(914), 1,
      anon_sym_LBRACK,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(946), 1,
      anon_sym_RBRACE,
    STATE(427), 1,
      sym__prefix_exp,
    STATE(554), 1,
      sym_identifier,
    STATE(561), 1,
      sym_comment,
    STATE(649), 1,
      sym_left_bracket,
    STATE(1443), 1,
      sym_field,
    STATE(1521), 1,
      sym__expression_field_expression,
    STATE(1523), 1,
      sym__named_field_expression,
    STATE(1710), 1,
      sym_fieldlist,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(908), 2,
      sym_number,
      sym_ellipsis,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(657), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [46554] = 24,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(904), 1,
      sym_nil,
    ACTIONS(914), 1,
      anon_sym_LBRACK,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(948), 1,
      anon_sym_RBRACE,
    STATE(427), 1,
      sym__prefix_exp,
    STATE(554), 1,
      sym_identifier,
    STATE(562), 1,
      sym_comment,
    STATE(649), 1,
      sym_left_bracket,
    STATE(1443), 1,
      sym_field,
    STATE(1521), 1,
      sym__expression_field_expression,
    STATE(1523), 1,
      sym__named_field_expression,
    STATE(1704), 1,
      sym_fieldlist,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(908), 2,
      sym_number,
      sym_ellipsis,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(657), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [46637] = 24,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(904), 1,
      sym_nil,
    ACTIONS(914), 1,
      anon_sym_LBRACK,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(950), 1,
      anon_sym_RBRACE,
    STATE(427), 1,
      sym__prefix_exp,
    STATE(554), 1,
      sym_identifier,
    STATE(563), 1,
      sym_comment,
    STATE(649), 1,
      sym_left_bracket,
    STATE(1443), 1,
      sym_field,
    STATE(1521), 1,
      sym__expression_field_expression,
    STATE(1523), 1,
      sym__named_field_expression,
    STATE(1685), 1,
      sym_fieldlist,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(908), 2,
      sym_number,
      sym_ellipsis,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(657), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [46720] = 24,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(904), 1,
      sym_nil,
    ACTIONS(914), 1,
      anon_sym_LBRACK,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(952), 1,
      anon_sym_RBRACE,
    STATE(427), 1,
      sym__prefix_exp,
    STATE(554), 1,
      sym_identifier,
    STATE(564), 1,
      sym_comment,
    STATE(649), 1,
      sym_left_bracket,
    STATE(1443), 1,
      sym_field,
    STATE(1521), 1,
      sym__expression_field_expression,
    STATE(1523), 1,
      sym__named_field_expression,
    STATE(1719), 1,
      sym_fieldlist,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(908), 2,
      sym_number,
      sym_ellipsis,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(657), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [46803] = 24,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(904), 1,
      sym_nil,
    ACTIONS(914), 1,
      anon_sym_LBRACK,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(954), 1,
      anon_sym_RBRACE,
    STATE(427), 1,
      sym__prefix_exp,
    STATE(554), 1,
      sym_identifier,
    STATE(565), 1,
      sym_comment,
    STATE(649), 1,
      sym_left_bracket,
    STATE(1443), 1,
      sym_field,
    STATE(1521), 1,
      sym__expression_field_expression,
    STATE(1523), 1,
      sym__named_field_expression,
    STATE(1774), 1,
      sym_fieldlist,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(908), 2,
      sym_number,
      sym_ellipsis,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(657), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [46886] = 24,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(904), 1,
      sym_nil,
    ACTIONS(914), 1,
      anon_sym_LBRACK,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(956), 1,
      anon_sym_RBRACE,
    STATE(427), 1,
      sym__prefix_exp,
    STATE(554), 1,
      sym_identifier,
    STATE(566), 1,
      sym_comment,
    STATE(649), 1,
      sym_left_bracket,
    STATE(1443), 1,
      sym_field,
    STATE(1521), 1,
      sym__expression_field_expression,
    STATE(1523), 1,
      sym__named_field_expression,
    STATE(1698), 1,
      sym_fieldlist,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(908), 2,
      sym_number,
      sym_ellipsis,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(657), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [46969] = 23,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(904), 1,
      sym_nil,
    ACTIONS(914), 1,
      anon_sym_LBRACK,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(958), 1,
      anon_sym_RBRACE,
    STATE(427), 1,
      sym__prefix_exp,
    STATE(554), 1,
      sym_identifier,
    STATE(567), 1,
      sym_comment,
    STATE(649), 1,
      sym_left_bracket,
    STATE(1521), 1,
      sym__expression_field_expression,
    STATE(1523), 1,
      sym__named_field_expression,
    STATE(1536), 1,
      sym_field,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(908), 2,
      sym_number,
      sym_ellipsis,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(657), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [47049] = 23,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(904), 1,
      sym_nil,
    ACTIONS(914), 1,
      anon_sym_LBRACK,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(960), 1,
      anon_sym_RBRACE,
    STATE(427), 1,
      sym__prefix_exp,
    STATE(554), 1,
      sym_identifier,
    STATE(568), 1,
      sym_comment,
    STATE(649), 1,
      sym_left_bracket,
    STATE(1521), 1,
      sym__expression_field_expression,
    STATE(1523), 1,
      sym__named_field_expression,
    STATE(1536), 1,
      sym_field,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(908), 2,
      sym_number,
      sym_ellipsis,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(657), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [47129] = 19,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(516), 1,
      anon_sym_else,
    STATE(569), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(486), 8,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_end,
      anon_sym_COMMA,
      anon_sym_do,
      anon_sym_until,
      anon_sym_elseif,
      anon_sym_RPAREN,
  [47201] = 21,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(520), 1,
      anon_sym_COMMA,
    ACTIONS(522), 1,
      anon_sym_else,
    STATE(570), 1,
      sym_comment,
    STATE(1343), 1,
      aux_sym__expression_list_repeat1,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
    ACTIONS(518), 5,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_end,
      anon_sym_until,
      anon_sym_elseif,
  [47276] = 22,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(904), 1,
      sym_nil,
    ACTIONS(914), 1,
      anon_sym_LBRACK,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    STATE(427), 1,
      sym__prefix_exp,
    STATE(554), 1,
      sym_identifier,
    STATE(571), 1,
      sym_comment,
    STATE(649), 1,
      sym_left_bracket,
    STATE(1521), 1,
      sym__expression_field_expression,
    STATE(1523), 1,
      sym__named_field_expression,
    STATE(1536), 1,
      sym_field,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(908), 2,
      sym_number,
      sym_ellipsis,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(657), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [47353] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(966), 1,
      sym_left_paren,
    STATE(572), 1,
      sym_comment,
    ACTIONS(341), 5,
      sym__string_start,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
    ACTIONS(964), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(962), 13,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_EQ,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [47399] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(573), 1,
      sym_comment,
    ACTIONS(371), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(369), 19,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_EQ,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [47441] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(574), 1,
      sym_comment,
    ACTIONS(355), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(353), 19,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_EQ,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [47483] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(575), 1,
      sym_comment,
    ACTIONS(319), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(317), 19,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_EQ,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [47525] = 18,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(971), 1,
      sym_left_paren,
    ACTIONS(973), 1,
      sym_emmy_ignore,
    ACTIONS(976), 1,
      aux_sym_emmy_class_token1,
    ACTIONS(979), 1,
      aux_sym_emmy_parameter_token1,
    ACTIONS(982), 1,
      aux_sym_emmy_field_token1,
    ACTIONS(985), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(988), 1,
      aux_sym__emmy_eval_container_token1,
    ACTIONS(991), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(994), 1,
      aux_sym_emmy_note_token1,
    ACTIONS(997), 1,
      aux_sym_emmy_see_token1,
    ACTIONS(1000), 1,
      aux_sym_emmy_todo_token1,
    ACTIONS(1003), 1,
      aux_sym_emmy_usage_token1,
    ACTIONS(1006), 1,
      aux_sym_emmy_varargs_token1,
    STATE(576), 2,
      sym_comment,
      aux_sym_emmy_documentation_repeat1,
    ACTIONS(969), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    STATE(1217), 11,
      sym_emmy_class,
      sym_emmy_parameter,
      sym_emmy_field,
      sym_emmy_return,
      sym__emmy_eval_container,
      sym_emmy_typedecl,
      sym_emmy_note,
      sym_emmy_see,
      sym_emmy_todo,
      sym_emmy_usage,
      sym_emmy_varargs,
  [47593] = 19,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1011), 1,
      sym_left_paren,
    ACTIONS(1013), 1,
      sym_emmy_ignore,
    ACTIONS(1015), 1,
      aux_sym_emmy_class_token1,
    ACTIONS(1017), 1,
      aux_sym_emmy_parameter_token1,
    ACTIONS(1019), 1,
      aux_sym_emmy_field_token1,
    ACTIONS(1021), 1,
      aux_sym__emmy_eval_container_token1,
    ACTIONS(1023), 1,
      aux_sym_emmy_note_token1,
    ACTIONS(1025), 1,
      aux_sym_emmy_see_token1,
    ACTIONS(1027), 1,
      aux_sym_emmy_todo_token1,
    ACTIONS(1029), 1,
      aux_sym_emmy_usage_token1,
    ACTIONS(1031), 1,
      aux_sym_emmy_varargs_token1,
    STATE(577), 1,
      sym_comment,
    STATE(578), 1,
      aux_sym_emmy_documentation_repeat1,
    ACTIONS(1009), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    STATE(1217), 11,
      sym_emmy_class,
      sym_emmy_parameter,
      sym_emmy_field,
      sym_emmy_return,
      sym__emmy_eval_container,
      sym_emmy_typedecl,
      sym_emmy_note,
      sym_emmy_see,
      sym_emmy_todo,
      sym_emmy_usage,
      sym_emmy_varargs,
  [47663] = 19,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(45), 1,
      aux_sym_emmy_return_token1,
    ACTIONS(47), 1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1013), 1,
      sym_emmy_ignore,
    ACTIONS(1015), 1,
      aux_sym_emmy_class_token1,
    ACTIONS(1017), 1,
      aux_sym_emmy_parameter_token1,
    ACTIONS(1019), 1,
      aux_sym_emmy_field_token1,
    ACTIONS(1021), 1,
      aux_sym__emmy_eval_container_token1,
    ACTIONS(1023), 1,
      aux_sym_emmy_note_token1,
    ACTIONS(1025), 1,
      aux_sym_emmy_see_token1,
    ACTIONS(1027), 1,
      aux_sym_emmy_todo_token1,
    ACTIONS(1029), 1,
      aux_sym_emmy_usage_token1,
    ACTIONS(1031), 1,
      aux_sym_emmy_varargs_token1,
    ACTIONS(1035), 1,
      sym_left_paren,
    STATE(576), 1,
      aux_sym_emmy_documentation_repeat1,
    STATE(578), 1,
      sym_comment,
    ACTIONS(1033), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    STATE(1217), 11,
      sym_emmy_class,
      sym_emmy_parameter,
      sym_emmy_field,
      sym_emmy_return,
      sym__emmy_eval_container,
      sym_emmy_typedecl,
      sym_emmy_note,
      sym_emmy_see,
      sym_emmy_todo,
      sym_emmy_usage,
      sym_emmy_varargs,
  [47733] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(579), 1,
      sym_comment,
    ACTIONS(335), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(333), 19,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_EQ,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [47775] = 20,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(760), 1,
      anon_sym_RPAREN,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1037), 1,
      sym_nil,
    STATE(201), 1,
      sym_right_paren,
    STATE(284), 1,
      sym_identifier,
    STATE(429), 1,
      sym__prefix_exp,
    STATE(580), 1,
      sym_comment,
    STATE(1627), 1,
      sym_function_arguments,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1039), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(658), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [47846] = 20,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1037), 1,
      sym_nil,
    ACTIONS(1041), 1,
      anon_sym_RPAREN,
    STATE(284), 1,
      sym_identifier,
    STATE(429), 1,
      sym__prefix_exp,
    STATE(581), 1,
      sym_comment,
    STATE(930), 1,
      sym_right_paren,
    STATE(1666), 1,
      sym_function_arguments,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1039), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(658), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [47917] = 20,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(756), 1,
      anon_sym_RPAREN,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1037), 1,
      sym_nil,
    STATE(59), 1,
      sym_right_paren,
    STATE(284), 1,
      sym_identifier,
    STATE(429), 1,
      sym__prefix_exp,
    STATE(582), 1,
      sym_comment,
    STATE(1590), 1,
      sym_function_arguments,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1039), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(658), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [47988] = 20,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(772), 1,
      anon_sym_RPAREN,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1037), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(297), 1,
      sym_right_paren,
    STATE(429), 1,
      sym__prefix_exp,
    STATE(583), 1,
      sym_comment,
    STATE(1589), 1,
      sym_function_arguments,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1039), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(658), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [48059] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1043), 1,
      sym_nil,
    STATE(207), 1,
      sym__prefix_exp,
    STATE(284), 1,
      sym_identifier,
    STATE(584), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1045), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    ACTIONS(1047), 3,
      anon_sym_end,
      anon_sym_elseif,
      anon_sym_else,
    STATE(570), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [48126] = 20,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1037), 1,
      sym_nil,
    ACTIONS(1049), 1,
      anon_sym_RPAREN,
    STATE(284), 1,
      sym_identifier,
    STATE(429), 1,
      sym__prefix_exp,
    STATE(585), 1,
      sym_comment,
    STATE(833), 1,
      sym_right_paren,
    STATE(1669), 1,
      sym_function_arguments,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1039), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(658), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [48197] = 20,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(770), 1,
      anon_sym_RPAREN,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1037), 1,
      sym_nil,
    STATE(159), 1,
      sym_right_paren,
    STATE(284), 1,
      sym_identifier,
    STATE(429), 1,
      sym__prefix_exp,
    STATE(586), 1,
      sym_comment,
    STATE(1644), 1,
      sym_function_arguments,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1039), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(658), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [48268] = 20,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1037), 1,
      sym_nil,
    ACTIONS(1051), 1,
      anon_sym_RPAREN,
    STATE(284), 1,
      sym_identifier,
    STATE(429), 1,
      sym__prefix_exp,
    STATE(587), 1,
      sym_comment,
    STATE(959), 1,
      sym_right_paren,
    STATE(1607), 1,
      sym_function_arguments,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1039), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(658), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [48339] = 20,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(768), 1,
      anon_sym_RPAREN,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1037), 1,
      sym_nil,
    STATE(165), 1,
      sym_right_paren,
    STATE(284), 1,
      sym_identifier,
    STATE(429), 1,
      sym__prefix_exp,
    STATE(588), 1,
      sym_comment,
    STATE(1659), 1,
      sym_function_arguments,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1039), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(658), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [48410] = 20,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(758), 1,
      anon_sym_RPAREN,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1037), 1,
      sym_nil,
    STATE(91), 1,
      sym_right_paren,
    STATE(284), 1,
      sym_identifier,
    STATE(429), 1,
      sym__prefix_exp,
    STATE(589), 1,
      sym_comment,
    STATE(1673), 1,
      sym_function_arguments,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1039), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(658), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [48481] = 20,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1037), 1,
      sym_nil,
    ACTIONS(1053), 1,
      anon_sym_RPAREN,
    STATE(284), 1,
      sym_identifier,
    STATE(429), 1,
      sym__prefix_exp,
    STATE(590), 1,
      sym_comment,
    STATE(606), 1,
      sym_right_paren,
    STATE(1625), 1,
      sym_function_arguments,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1039), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(658), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [48552] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(591), 1,
      sym_comment,
    ACTIONS(379), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(377), 17,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [48592] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(592), 1,
      sym_comment,
    ACTIONS(367), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(365), 17,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [48632] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1057), 1,
      anon_sym_SEMI,
    STATE(593), 1,
      sym_comment,
    ACTIONS(341), 5,
      sym__string_start,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
    ACTIONS(1059), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1055), 11,
      ts_builtin_sym_end,
      anon_sym_,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [48676] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(594), 1,
      sym_comment,
    ACTIONS(339), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(337), 17,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [48716] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(595), 1,
      sym_comment,
    ACTIONS(383), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(381), 17,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [48756] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(596), 1,
      sym_comment,
    ACTIONS(327), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(325), 17,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [48796] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(597), 1,
      sym_comment,
    ACTIONS(387), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(385), 17,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [48836] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1043), 1,
      sym_nil,
    STATE(207), 1,
      sym__prefix_exp,
    STATE(284), 1,
      sym_identifier,
    STATE(598), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1045), 2,
      sym_number,
      sym_ellipsis,
    ACTIONS(1061), 2,
      ts_builtin_sym_end,
      anon_sym_,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(570), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [48902] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(599), 1,
      sym_comment,
    ACTIONS(375), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(373), 17,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [48942] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(600), 1,
      sym_comment,
    ACTIONS(359), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(357), 17,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [48982] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(601), 1,
      sym_comment,
    ACTIONS(363), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(361), 17,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [49022] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(602), 1,
      sym_comment,
    ACTIONS(363), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(361), 17,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [49062] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(603), 1,
      sym_comment,
    ACTIONS(363), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(361), 17,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [49102] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(604), 1,
      sym_comment,
    ACTIONS(359), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(357), 17,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [49142] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(605), 1,
      sym_comment,
    ACTIONS(347), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(345), 17,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [49182] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(606), 1,
      sym_comment,
    ACTIONS(323), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(321), 17,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [49222] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(607), 1,
      sym_comment,
    ACTIONS(351), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(349), 17,
      sym__string_start,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [49262] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(608), 1,
      sym_comment,
    ACTIONS(353), 12,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_EQ,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(355), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [49301] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1063), 1,
      sym_nil,
    ACTIONS(1073), 1,
      sym_function_start,
    ACTIONS(1075), 1,
      anon_sym_LBRACE,
    ACTIONS(1077), 1,
      sym__identifier,
    ACTIONS(1079), 1,
      sym_left_paren,
    ACTIONS(1081), 1,
      sym__string_start,
    STATE(22), 1,
      sym__prefix_exp,
    STATE(71), 1,
      sym_identifier,
    STATE(609), 1,
      sym_comment,
    STATE(1043), 1,
      sym_documentation_config,
    ACTIONS(1065), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1067), 2,
      sym_number,
      sym_ellipsis,
    ACTIONS(1069), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1071), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(64), 2,
      sym__var,
      sym_function_call,
    STATE(232), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [49366] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(610), 1,
      sym_comment,
    ACTIONS(317), 12,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_EQ,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(319), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [49405] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1043), 1,
      sym_nil,
    ACTIONS(1047), 1,
      anon_sym_end,
    STATE(207), 1,
      sym__prefix_exp,
    STATE(284), 1,
      sym_identifier,
    STATE(611), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1045), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(570), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [49470] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1083), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(458), 1,
      sym__prefix_exp,
    STATE(612), 1,
      sym_comment,
    STATE(1688), 1,
      sym__expression_list,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1085), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(768), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [49535] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1087), 1,
      sym_nil,
    ACTIONS(1097), 1,
      sym_function_start,
    ACTIONS(1099), 1,
      anon_sym_LBRACE,
    ACTIONS(1101), 1,
      sym__identifier,
    ACTIONS(1103), 1,
      sym_left_paren,
    ACTIONS(1105), 1,
      sym__string_start,
    STATE(53), 1,
      sym__prefix_exp,
    STATE(221), 1,
      sym_identifier,
    STATE(613), 1,
      sym_comment,
    STATE(1280), 1,
      sym_emmy_eval,
    ACTIONS(1089), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1091), 2,
      sym_number,
      sym_ellipsis,
    ACTIONS(1093), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1095), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(223), 2,
      sym__var,
      sym_function_call,
    STATE(414), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [49600] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(614), 1,
      sym_comment,
    ACTIONS(369), 12,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_EQ,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(371), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [49639] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1043), 1,
      sym_nil,
    ACTIONS(1047), 1,
      anon_sym_until,
    STATE(207), 1,
      sym__prefix_exp,
    STATE(284), 1,
      sym_identifier,
    STATE(615), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1045), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(570), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [49704] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(966), 1,
      sym_left_paren,
    STATE(616), 1,
      sym_comment,
    ACTIONS(341), 5,
      sym__string_start,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
    ACTIONS(962), 6,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_EQ,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(964), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [49747] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(617), 1,
      sym_comment,
    ACTIONS(333), 12,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_EQ,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(335), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [49786] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1107), 1,
      sym_nil,
    ACTIONS(1117), 1,
      sym_function_start,
    ACTIONS(1119), 1,
      anon_sym_LBRACE,
    ACTIONS(1121), 1,
      sym__identifier,
    ACTIONS(1123), 1,
      sym_left_paren,
    ACTIONS(1125), 1,
      sym__string_start,
    STATE(36), 1,
      sym__prefix_exp,
    STATE(187), 1,
      sym_identifier,
    STATE(618), 1,
      sym_comment,
    ACTIONS(1109), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1111), 2,
      sym_number,
      sym_ellipsis,
    ACTIONS(1113), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1115), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(200), 2,
      sym__var,
      sym_function_call,
    STATE(357), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [49848] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1097), 1,
      sym_function_start,
    ACTIONS(1099), 1,
      anon_sym_LBRACE,
    ACTIONS(1101), 1,
      sym__identifier,
    ACTIONS(1103), 1,
      sym_left_paren,
    ACTIONS(1105), 1,
      sym__string_start,
    ACTIONS(1127), 1,
      sym_nil,
    STATE(55), 1,
      sym__prefix_exp,
    STATE(221), 1,
      sym_identifier,
    STATE(619), 1,
      sym_comment,
    ACTIONS(1089), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1093), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1095), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1129), 2,
      sym_number,
      sym_ellipsis,
    STATE(223), 2,
      sym__var,
      sym_function_call,
    STATE(467), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [49910] = 23,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1131), 1,
      sym_nil,
    ACTIONS(1135), 1,
      sym_number,
    ACTIONS(1137), 1,
      sym_ellipsis,
    ACTIONS(1143), 1,
      sym_function_start,
    ACTIONS(1145), 1,
      anon_sym_LBRACE,
    ACTIONS(1147), 1,
      sym__identifier,
    ACTIONS(1149), 1,
      sym_left_paren,
    ACTIONS(1151), 1,
      sym__string_start,
    STATE(21), 1,
      sym__prefix_exp,
    STATE(94), 1,
      sym_identifier,
    STATE(245), 1,
      sym_function,
    STATE(246), 1,
      sym_tableconstructor,
    STATE(247), 1,
      sym_unary_operation,
    STATE(249), 1,
      sym_boolean,
    STATE(256), 1,
      sym_binary_operation,
    STATE(261), 1,
      sym_string,
    STATE(620), 1,
      sym_comment,
    ACTIONS(1133), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1139), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1141), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(95), 2,
      sym__var,
      sym_function_call,
  [49984] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1153), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(518), 1,
      sym__prefix_exp,
    STATE(621), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1155), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(893), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [50046] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1073), 1,
      sym_function_start,
    ACTIONS(1075), 1,
      anon_sym_LBRACE,
    ACTIONS(1077), 1,
      sym__identifier,
    ACTIONS(1079), 1,
      sym_left_paren,
    ACTIONS(1081), 1,
      sym__string_start,
    ACTIONS(1157), 1,
      sym_nil,
    STATE(12), 1,
      sym__prefix_exp,
    STATE(71), 1,
      sym_identifier,
    STATE(622), 1,
      sym_comment,
    ACTIONS(1065), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1069), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1071), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1159), 2,
      sym_number,
      sym_ellipsis,
    STATE(64), 2,
      sym__var,
      sym_function_call,
    STATE(195), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [50108] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1073), 1,
      sym_function_start,
    ACTIONS(1075), 1,
      anon_sym_LBRACE,
    ACTIONS(1077), 1,
      sym__identifier,
    ACTIONS(1079), 1,
      sym_left_paren,
    ACTIONS(1081), 1,
      sym__string_start,
    ACTIONS(1157), 1,
      sym_nil,
    STATE(12), 1,
      sym__prefix_exp,
    STATE(71), 1,
      sym_identifier,
    STATE(623), 1,
      sym_comment,
    ACTIONS(1065), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1069), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1071), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1159), 2,
      sym_number,
      sym_ellipsis,
    STATE(64), 2,
      sym__var,
      sym_function_call,
    STATE(195), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [50170] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1073), 1,
      sym_function_start,
    ACTIONS(1075), 1,
      anon_sym_LBRACE,
    ACTIONS(1077), 1,
      sym__identifier,
    ACTIONS(1079), 1,
      sym_left_paren,
    ACTIONS(1081), 1,
      sym__string_start,
    ACTIONS(1157), 1,
      sym_nil,
    STATE(12), 1,
      sym__prefix_exp,
    STATE(71), 1,
      sym_identifier,
    STATE(624), 1,
      sym_comment,
    ACTIONS(1065), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1069), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1071), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1159), 2,
      sym_number,
      sym_ellipsis,
    STATE(64), 2,
      sym__var,
      sym_function_call,
    STATE(195), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [50232] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1073), 1,
      sym_function_start,
    ACTIONS(1075), 1,
      anon_sym_LBRACE,
    ACTIONS(1077), 1,
      sym__identifier,
    ACTIONS(1079), 1,
      sym_left_paren,
    ACTIONS(1081), 1,
      sym__string_start,
    ACTIONS(1157), 1,
      sym_nil,
    STATE(12), 1,
      sym__prefix_exp,
    STATE(71), 1,
      sym_identifier,
    STATE(625), 1,
      sym_comment,
    ACTIONS(1065), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1069), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1071), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1159), 2,
      sym_number,
      sym_ellipsis,
    STATE(64), 2,
      sym__var,
      sym_function_call,
    STATE(195), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [50294] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1073), 1,
      sym_function_start,
    ACTIONS(1075), 1,
      anon_sym_LBRACE,
    ACTIONS(1077), 1,
      sym__identifier,
    ACTIONS(1079), 1,
      sym_left_paren,
    ACTIONS(1081), 1,
      sym__string_start,
    ACTIONS(1157), 1,
      sym_nil,
    STATE(12), 1,
      sym__prefix_exp,
    STATE(71), 1,
      sym_identifier,
    STATE(626), 1,
      sym_comment,
    ACTIONS(1065), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1069), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1071), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1159), 2,
      sym_number,
      sym_ellipsis,
    STATE(64), 2,
      sym__var,
      sym_function_call,
    STATE(195), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [50356] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1073), 1,
      sym_function_start,
    ACTIONS(1075), 1,
      anon_sym_LBRACE,
    ACTIONS(1077), 1,
      sym__identifier,
    ACTIONS(1079), 1,
      sym_left_paren,
    ACTIONS(1081), 1,
      sym__string_start,
    ACTIONS(1157), 1,
      sym_nil,
    STATE(12), 1,
      sym__prefix_exp,
    STATE(71), 1,
      sym_identifier,
    STATE(627), 1,
      sym_comment,
    ACTIONS(1065), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1069), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1071), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1159), 2,
      sym_number,
      sym_ellipsis,
    STATE(64), 2,
      sym__var,
      sym_function_call,
    STATE(195), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [50418] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1073), 1,
      sym_function_start,
    ACTIONS(1075), 1,
      anon_sym_LBRACE,
    ACTIONS(1077), 1,
      sym__identifier,
    ACTIONS(1079), 1,
      sym_left_paren,
    ACTIONS(1081), 1,
      sym__string_start,
    ACTIONS(1157), 1,
      sym_nil,
    STATE(12), 1,
      sym__prefix_exp,
    STATE(71), 1,
      sym_identifier,
    STATE(628), 1,
      sym_comment,
    ACTIONS(1065), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1069), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1071), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1159), 2,
      sym_number,
      sym_ellipsis,
    STATE(64), 2,
      sym__var,
      sym_function_call,
    STATE(195), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [50480] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1073), 1,
      sym_function_start,
    ACTIONS(1075), 1,
      anon_sym_LBRACE,
    ACTIONS(1077), 1,
      sym__identifier,
    ACTIONS(1079), 1,
      sym_left_paren,
    ACTIONS(1081), 1,
      sym__string_start,
    ACTIONS(1157), 1,
      sym_nil,
    STATE(12), 1,
      sym__prefix_exp,
    STATE(71), 1,
      sym_identifier,
    STATE(629), 1,
      sym_comment,
    ACTIONS(1065), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1069), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1071), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1159), 2,
      sym_number,
      sym_ellipsis,
    STATE(64), 2,
      sym__var,
      sym_function_call,
    STATE(195), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [50542] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1073), 1,
      sym_function_start,
    ACTIONS(1075), 1,
      anon_sym_LBRACE,
    ACTIONS(1077), 1,
      sym__identifier,
    ACTIONS(1079), 1,
      sym_left_paren,
    ACTIONS(1081), 1,
      sym__string_start,
    ACTIONS(1157), 1,
      sym_nil,
    STATE(12), 1,
      sym__prefix_exp,
    STATE(71), 1,
      sym_identifier,
    STATE(630), 1,
      sym_comment,
    ACTIONS(1065), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1069), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1071), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1159), 2,
      sym_number,
      sym_ellipsis,
    STATE(64), 2,
      sym__var,
      sym_function_call,
    STATE(195), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [50604] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1073), 1,
      sym_function_start,
    ACTIONS(1075), 1,
      anon_sym_LBRACE,
    ACTIONS(1077), 1,
      sym__identifier,
    ACTIONS(1079), 1,
      sym_left_paren,
    ACTIONS(1081), 1,
      sym__string_start,
    ACTIONS(1157), 1,
      sym_nil,
    STATE(12), 1,
      sym__prefix_exp,
    STATE(71), 1,
      sym_identifier,
    STATE(631), 1,
      sym_comment,
    ACTIONS(1065), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1069), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1071), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1159), 2,
      sym_number,
      sym_ellipsis,
    STATE(64), 2,
      sym__var,
      sym_function_call,
    STATE(195), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [50666] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1073), 1,
      sym_function_start,
    ACTIONS(1075), 1,
      anon_sym_LBRACE,
    ACTIONS(1077), 1,
      sym__identifier,
    ACTIONS(1079), 1,
      sym_left_paren,
    ACTIONS(1081), 1,
      sym__string_start,
    ACTIONS(1157), 1,
      sym_nil,
    STATE(12), 1,
      sym__prefix_exp,
    STATE(71), 1,
      sym_identifier,
    STATE(632), 1,
      sym_comment,
    ACTIONS(1065), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1069), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1071), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1159), 2,
      sym_number,
      sym_ellipsis,
    STATE(64), 2,
      sym__var,
      sym_function_call,
    STATE(195), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [50728] = 23,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1143), 1,
      sym_function_start,
    ACTIONS(1145), 1,
      anon_sym_LBRACE,
    ACTIONS(1147), 1,
      sym__identifier,
    ACTIONS(1149), 1,
      sym_left_paren,
    ACTIONS(1151), 1,
      sym__string_start,
    ACTIONS(1161), 1,
      sym_nil,
    ACTIONS(1163), 1,
      sym_number,
    ACTIONS(1165), 1,
      sym_ellipsis,
    STATE(18), 1,
      sym__prefix_exp,
    STATE(94), 1,
      sym_identifier,
    STATE(225), 1,
      sym_binary_operation,
    STATE(253), 1,
      sym_unary_operation,
    STATE(255), 1,
      sym_function,
    STATE(257), 1,
      sym_tableconstructor,
    STATE(263), 1,
      sym_string,
    STATE(266), 1,
      sym_boolean,
    STATE(633), 1,
      sym_comment,
    ACTIONS(1133), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1139), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1141), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(95), 2,
      sym__var,
      sym_function_call,
  [50802] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1143), 1,
      sym_function_start,
    ACTIONS(1145), 1,
      anon_sym_LBRACE,
    ACTIONS(1147), 1,
      sym__identifier,
    ACTIONS(1149), 1,
      sym_left_paren,
    ACTIONS(1151), 1,
      sym__string_start,
    ACTIONS(1167), 1,
      sym_nil,
    STATE(19), 1,
      sym__prefix_exp,
    STATE(94), 1,
      sym_identifier,
    STATE(634), 1,
      sym_comment,
    ACTIONS(1133), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1139), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1141), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1169), 2,
      sym_number,
      sym_ellipsis,
    STATE(95), 2,
      sym__var,
      sym_function_call,
    STATE(258), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [50864] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1143), 1,
      sym_function_start,
    ACTIONS(1145), 1,
      anon_sym_LBRACE,
    ACTIONS(1147), 1,
      sym__identifier,
    ACTIONS(1149), 1,
      sym_left_paren,
    ACTIONS(1151), 1,
      sym__string_start,
    ACTIONS(1171), 1,
      sym_nil,
    STATE(25), 1,
      sym__prefix_exp,
    STATE(94), 1,
      sym_identifier,
    STATE(635), 1,
      sym_comment,
    ACTIONS(1133), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1139), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1141), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1173), 2,
      sym_number,
      sym_ellipsis,
    STATE(95), 2,
      sym__var,
      sym_function_call,
    STATE(289), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [50926] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1117), 1,
      sym_function_start,
    ACTIONS(1119), 1,
      anon_sym_LBRACE,
    ACTIONS(1121), 1,
      sym__identifier,
    ACTIONS(1123), 1,
      sym_left_paren,
    ACTIONS(1125), 1,
      sym__string_start,
    ACTIONS(1175), 1,
      sym_nil,
    STATE(47), 1,
      sym__prefix_exp,
    STATE(187), 1,
      sym_identifier,
    STATE(636), 1,
      sym_comment,
    ACTIONS(1109), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1113), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1115), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1177), 2,
      sym_number,
      sym_ellipsis,
    STATE(200), 2,
      sym__var,
      sym_function_call,
    STATE(397), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [50988] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1117), 1,
      sym_function_start,
    ACTIONS(1119), 1,
      anon_sym_LBRACE,
    ACTIONS(1121), 1,
      sym__identifier,
    ACTIONS(1123), 1,
      sym_left_paren,
    ACTIONS(1125), 1,
      sym__string_start,
    ACTIONS(1175), 1,
      sym_nil,
    STATE(47), 1,
      sym__prefix_exp,
    STATE(187), 1,
      sym_identifier,
    STATE(637), 1,
      sym_comment,
    ACTIONS(1109), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1113), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1115), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1177), 2,
      sym_number,
      sym_ellipsis,
    STATE(200), 2,
      sym__var,
      sym_function_call,
    STATE(397), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [51050] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1117), 1,
      sym_function_start,
    ACTIONS(1119), 1,
      anon_sym_LBRACE,
    ACTIONS(1121), 1,
      sym__identifier,
    ACTIONS(1123), 1,
      sym_left_paren,
    ACTIONS(1125), 1,
      sym__string_start,
    ACTIONS(1175), 1,
      sym_nil,
    STATE(47), 1,
      sym__prefix_exp,
    STATE(187), 1,
      sym_identifier,
    STATE(638), 1,
      sym_comment,
    ACTIONS(1109), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1113), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1115), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1177), 2,
      sym_number,
      sym_ellipsis,
    STATE(200), 2,
      sym__var,
      sym_function_call,
    STATE(397), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [51112] = 23,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1143), 1,
      sym_function_start,
    ACTIONS(1145), 1,
      anon_sym_LBRACE,
    ACTIONS(1147), 1,
      sym__identifier,
    ACTIONS(1149), 1,
      sym_left_paren,
    ACTIONS(1151), 1,
      sym__string_start,
    ACTIONS(1179), 1,
      sym_nil,
    ACTIONS(1181), 1,
      sym_number,
    ACTIONS(1183), 1,
      sym_ellipsis,
    STATE(23), 1,
      sym__prefix_exp,
    STATE(94), 1,
      sym_identifier,
    STATE(227), 1,
      sym_string,
    STATE(248), 1,
      sym_tableconstructor,
    STATE(251), 1,
      sym_function,
    STATE(252), 1,
      sym_boolean,
    STATE(254), 1,
      sym_unary_operation,
    STATE(262), 1,
      sym_binary_operation,
    STATE(639), 1,
      sym_comment,
    ACTIONS(1133), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1139), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1141), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(95), 2,
      sym__var,
      sym_function_call,
  [51186] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1117), 1,
      sym_function_start,
    ACTIONS(1119), 1,
      anon_sym_LBRACE,
    ACTIONS(1121), 1,
      sym__identifier,
    ACTIONS(1123), 1,
      sym_left_paren,
    ACTIONS(1125), 1,
      sym__string_start,
    ACTIONS(1175), 1,
      sym_nil,
    STATE(47), 1,
      sym__prefix_exp,
    STATE(187), 1,
      sym_identifier,
    STATE(640), 1,
      sym_comment,
    ACTIONS(1109), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1113), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1115), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1177), 2,
      sym_number,
      sym_ellipsis,
    STATE(200), 2,
      sym__var,
      sym_function_call,
    STATE(397), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [51248] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1117), 1,
      sym_function_start,
    ACTIONS(1119), 1,
      anon_sym_LBRACE,
    ACTIONS(1121), 1,
      sym__identifier,
    ACTIONS(1123), 1,
      sym_left_paren,
    ACTIONS(1125), 1,
      sym__string_start,
    ACTIONS(1185), 1,
      sym_nil,
    STATE(49), 1,
      sym__prefix_exp,
    STATE(187), 1,
      sym_identifier,
    STATE(641), 1,
      sym_comment,
    ACTIONS(1109), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1113), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1115), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1187), 2,
      sym_number,
      sym_ellipsis,
    STATE(200), 2,
      sym__var,
      sym_function_call,
    STATE(402), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [51310] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1189), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(522), 1,
      sym__prefix_exp,
    STATE(642), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1191), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(885), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [51372] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1073), 1,
      sym_function_start,
    ACTIONS(1075), 1,
      anon_sym_LBRACE,
    ACTIONS(1077), 1,
      sym__identifier,
    ACTIONS(1079), 1,
      sym_left_paren,
    ACTIONS(1081), 1,
      sym__string_start,
    ACTIONS(1193), 1,
      sym_nil,
    STATE(13), 1,
      sym__prefix_exp,
    STATE(71), 1,
      sym_identifier,
    STATE(643), 1,
      sym_comment,
    ACTIONS(1065), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1069), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1071), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1195), 2,
      sym_number,
      sym_ellipsis,
    STATE(64), 2,
      sym__var,
      sym_function_call,
    STATE(202), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [51434] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1143), 1,
      sym_function_start,
    ACTIONS(1145), 1,
      anon_sym_LBRACE,
    ACTIONS(1147), 1,
      sym__identifier,
    ACTIONS(1149), 1,
      sym_left_paren,
    ACTIONS(1151), 1,
      sym__string_start,
    ACTIONS(1197), 1,
      sym_nil,
    STATE(16), 1,
      sym__prefix_exp,
    STATE(94), 1,
      sym_identifier,
    STATE(644), 1,
      sym_comment,
    ACTIONS(1133), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1139), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1141), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1199), 2,
      sym_number,
      sym_ellipsis,
    STATE(95), 2,
      sym__var,
      sym_function_call,
    STATE(231), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [51496] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1201), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(514), 1,
      sym__prefix_exp,
    STATE(645), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1203), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(897), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [51558] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1205), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(525), 1,
      sym__prefix_exp,
    STATE(646), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1207), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(895), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [51620] = 23,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1143), 1,
      sym_function_start,
    ACTIONS(1145), 1,
      anon_sym_LBRACE,
    ACTIONS(1147), 1,
      sym__identifier,
    ACTIONS(1149), 1,
      sym_left_paren,
    ACTIONS(1151), 1,
      sym__string_start,
    ACTIONS(1209), 1,
      sym_nil,
    ACTIONS(1211), 1,
      sym_number,
    ACTIONS(1213), 1,
      sym_ellipsis,
    STATE(15), 1,
      sym__prefix_exp,
    STATE(94), 1,
      sym_identifier,
    STATE(233), 1,
      sym_tableconstructor,
    STATE(234), 1,
      sym_unary_operation,
    STATE(235), 1,
      sym_binary_operation,
    STATE(236), 1,
      sym_function,
    STATE(237), 1,
      sym_boolean,
    STATE(239), 1,
      sym_string,
    STATE(647), 1,
      sym_comment,
    ACTIONS(1133), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1139), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1141), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(95), 2,
      sym__var,
      sym_function_call,
  [51694] = 23,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1073), 1,
      sym_function_start,
    ACTIONS(1075), 1,
      anon_sym_LBRACE,
    ACTIONS(1077), 1,
      sym__identifier,
    ACTIONS(1079), 1,
      sym_left_paren,
    ACTIONS(1081), 1,
      sym__string_start,
    ACTIONS(1215), 1,
      sym_nil,
    ACTIONS(1217), 1,
      sym_number,
    ACTIONS(1219), 1,
      sym_ellipsis,
    STATE(4), 1,
      sym__prefix_exp,
    STATE(71), 1,
      sym_identifier,
    STATE(112), 1,
      sym_tableconstructor,
    STATE(113), 1,
      sym_unary_operation,
    STATE(114), 1,
      sym_binary_operation,
    STATE(115), 1,
      sym_function,
    STATE(118), 1,
      sym_boolean,
    STATE(119), 1,
      sym_string,
    STATE(648), 1,
      sym_comment,
    ACTIONS(1065), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1069), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1071), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(64), 2,
      sym__var,
      sym_function_call,
  [51768] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1221), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(510), 1,
      sym__prefix_exp,
    STATE(649), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1223), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(822), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [51830] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1143), 1,
      sym_function_start,
    ACTIONS(1145), 1,
      anon_sym_LBRACE,
    ACTIONS(1147), 1,
      sym__identifier,
    ACTIONS(1149), 1,
      sym_left_paren,
    ACTIONS(1151), 1,
      sym__string_start,
    ACTIONS(1225), 1,
      sym_nil,
    STATE(20), 1,
      sym__prefix_exp,
    STATE(94), 1,
      sym_identifier,
    STATE(650), 1,
      sym_comment,
    ACTIONS(1133), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1139), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1141), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1227), 2,
      sym_number,
      sym_ellipsis,
    STATE(95), 2,
      sym__var,
      sym_function_call,
    STATE(244), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [51892] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1143), 1,
      sym_function_start,
    ACTIONS(1145), 1,
      anon_sym_LBRACE,
    ACTIONS(1147), 1,
      sym__identifier,
    ACTIONS(1149), 1,
      sym_left_paren,
    ACTIONS(1151), 1,
      sym__string_start,
    ACTIONS(1229), 1,
      sym_nil,
    STATE(30), 1,
      sym__prefix_exp,
    STATE(94), 1,
      sym_identifier,
    STATE(651), 1,
      sym_comment,
    ACTIONS(1133), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1139), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1141), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1231), 2,
      sym_number,
      sym_ellipsis,
    STATE(95), 2,
      sym__var,
      sym_function_call,
    STATE(359), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [51954] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1233), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(509), 1,
      sym__prefix_exp,
    STATE(652), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1235), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(815), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [52016] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1143), 1,
      sym_function_start,
    ACTIONS(1145), 1,
      anon_sym_LBRACE,
    ACTIONS(1147), 1,
      sym__identifier,
    ACTIONS(1149), 1,
      sym_left_paren,
    ACTIONS(1151), 1,
      sym__string_start,
    ACTIONS(1237), 1,
      sym_nil,
    STATE(17), 1,
      sym__prefix_exp,
    STATE(94), 1,
      sym_identifier,
    STATE(653), 1,
      sym_comment,
    ACTIONS(1133), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1139), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1141), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1239), 2,
      sym_number,
      sym_ellipsis,
    STATE(95), 2,
      sym__var,
      sym_function_call,
    STATE(240), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [52078] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1241), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(520), 1,
      sym__prefix_exp,
    STATE(654), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1243), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(880), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [52140] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1245), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(532), 1,
      sym__prefix_exp,
    STATE(655), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1247), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(875), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [52202] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1249), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(526), 1,
      sym__prefix_exp,
    STATE(656), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1251), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(894), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [52264] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    STATE(657), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(606), 3,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_RBRACE,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [52328] = 20,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(520), 1,
      anon_sym_COMMA,
    ACTIONS(610), 1,
      anon_sym_RPAREN,
    STATE(658), 1,
      sym_comment,
    STATE(1485), 1,
      aux_sym__expression_list_repeat1,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [52396] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1253), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(500), 1,
      sym__prefix_exp,
    STATE(659), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1255), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(764), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [52458] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1259), 1,
      anon_sym_COMMA,
    ACTIONS(1263), 1,
      anon_sym_EQ,
    STATE(660), 1,
      sym_comment,
    STATE(686), 1,
      aux_sym_variable_declaration_repeat1,
    ACTIONS(1261), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1257), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [52502] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1073), 1,
      sym_function_start,
    ACTIONS(1075), 1,
      anon_sym_LBRACE,
    ACTIONS(1077), 1,
      sym__identifier,
    ACTIONS(1079), 1,
      sym_left_paren,
    ACTIONS(1081), 1,
      sym__string_start,
    ACTIONS(1265), 1,
      sym_nil,
    STATE(7), 1,
      sym__prefix_exp,
    STATE(71), 1,
      sym_identifier,
    STATE(661), 1,
      sym_comment,
    ACTIONS(1065), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1069), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1071), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1267), 2,
      sym_number,
      sym_ellipsis,
    STATE(64), 2,
      sym__var,
      sym_function_call,
    STATE(145), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [52564] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1143), 1,
      sym_function_start,
    ACTIONS(1145), 1,
      anon_sym_LBRACE,
    ACTIONS(1147), 1,
      sym__identifier,
    ACTIONS(1149), 1,
      sym_left_paren,
    ACTIONS(1151), 1,
      sym__string_start,
    ACTIONS(1269), 1,
      sym_nil,
    STATE(34), 1,
      sym__prefix_exp,
    STATE(94), 1,
      sym_identifier,
    STATE(662), 1,
      sym_comment,
    ACTIONS(1133), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1139), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1141), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1271), 2,
      sym_number,
      sym_ellipsis,
    STATE(95), 2,
      sym__var,
      sym_function_call,
    STATE(320), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [52626] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1259), 1,
      anon_sym_COMMA,
    ACTIONS(1277), 1,
      anon_sym_EQ,
    STATE(663), 1,
      sym_comment,
    STATE(759), 1,
      aux_sym_variable_declaration_repeat1,
    ACTIONS(1275), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1273), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [52670] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1279), 1,
      sym_nil,
    ACTIONS(1289), 1,
      sym_function_start,
    ACTIONS(1291), 1,
      anon_sym_LBRACE,
    ACTIONS(1293), 1,
      sym__identifier,
    ACTIONS(1295), 1,
      sym_left_paren,
    ACTIONS(1297), 1,
      sym__string_start,
    STATE(45), 1,
      sym__prefix_exp,
    STATE(152), 1,
      sym_identifier,
    STATE(664), 1,
      sym_comment,
    ACTIONS(1281), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1283), 2,
      sym_number,
      sym_ellipsis,
    ACTIONS(1285), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1287), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(154), 2,
      sym__var,
      sym_function_call,
    STATE(409), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [52732] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1299), 1,
      sym_nil,
    STATE(80), 1,
      sym__prefix_exp,
    STATE(284), 1,
      sym_identifier,
    STATE(665), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1301), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(539), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [52794] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    STATE(666), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(636), 3,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_RBRACE,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [52858] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1299), 1,
      sym_nil,
    STATE(80), 1,
      sym__prefix_exp,
    STATE(284), 1,
      sym_identifier,
    STATE(667), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1301), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(539), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [52920] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1299), 1,
      sym_nil,
    STATE(80), 1,
      sym__prefix_exp,
    STATE(284), 1,
      sym_identifier,
    STATE(668), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1301), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(539), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [52982] = 23,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1289), 1,
      sym_function_start,
    ACTIONS(1291), 1,
      anon_sym_LBRACE,
    ACTIONS(1293), 1,
      sym__identifier,
    ACTIONS(1295), 1,
      sym_left_paren,
    ACTIONS(1297), 1,
      sym__string_start,
    ACTIONS(1303), 1,
      sym_nil,
    ACTIONS(1305), 1,
      sym_number,
    ACTIONS(1307), 1,
      sym_ellipsis,
    STATE(43), 1,
      sym__prefix_exp,
    STATE(152), 1,
      sym_identifier,
    STATE(350), 1,
      sym_tableconstructor,
    STATE(352), 1,
      sym_unary_operation,
    STATE(353), 1,
      sym_binary_operation,
    STATE(368), 1,
      sym_function,
    STATE(380), 1,
      sym_string,
    STATE(381), 1,
      sym_boolean,
    STATE(669), 1,
      sym_comment,
    ACTIONS(1281), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1285), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1287), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(154), 2,
      sym__var,
      sym_function_call,
  [53056] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1309), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(517), 1,
      sym__prefix_exp,
    STATE(670), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1311), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(876), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [53118] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1299), 1,
      sym_nil,
    STATE(80), 1,
      sym__prefix_exp,
    STATE(284), 1,
      sym_identifier,
    STATE(671), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1301), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(539), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [53180] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1299), 1,
      sym_nil,
    STATE(80), 1,
      sym__prefix_exp,
    STATE(284), 1,
      sym_identifier,
    STATE(672), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1301), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(539), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [53242] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1299), 1,
      sym_nil,
    STATE(80), 1,
      sym__prefix_exp,
    STATE(284), 1,
      sym_identifier,
    STATE(673), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1301), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(539), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [53304] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1313), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(515), 1,
      sym__prefix_exp,
    STATE(674), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1315), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(871), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [53366] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1317), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(519), 1,
      sym__prefix_exp,
    STATE(675), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1319), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(873), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [53428] = 23,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1289), 1,
      sym_function_start,
    ACTIONS(1291), 1,
      anon_sym_LBRACE,
    ACTIONS(1293), 1,
      sym__identifier,
    ACTIONS(1295), 1,
      sym_left_paren,
    ACTIONS(1297), 1,
      sym__string_start,
    ACTIONS(1321), 1,
      sym_nil,
    ACTIONS(1323), 1,
      sym_number,
    ACTIONS(1325), 1,
      sym_ellipsis,
    STATE(38), 1,
      sym__prefix_exp,
    STATE(152), 1,
      sym_identifier,
    STATE(360), 1,
      sym_string,
    STATE(361), 1,
      sym_boolean,
    STATE(362), 1,
      sym_function,
    STATE(363), 1,
      sym_binary_operation,
    STATE(364), 1,
      sym_unary_operation,
    STATE(371), 1,
      sym_tableconstructor,
    STATE(676), 1,
      sym_comment,
    ACTIONS(1281), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1285), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1287), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(154), 2,
      sym__var,
      sym_function_call,
  [53502] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1289), 1,
      sym_function_start,
    ACTIONS(1291), 1,
      anon_sym_LBRACE,
    ACTIONS(1293), 1,
      sym__identifier,
    ACTIONS(1295), 1,
      sym_left_paren,
    ACTIONS(1297), 1,
      sym__string_start,
    ACTIONS(1327), 1,
      sym_nil,
    STATE(37), 1,
      sym__prefix_exp,
    STATE(152), 1,
      sym_identifier,
    STATE(677), 1,
      sym_comment,
    ACTIONS(1281), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1285), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1287), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1329), 2,
      sym_number,
      sym_ellipsis,
    STATE(154), 2,
      sym__var,
      sym_function_call,
    STATE(323), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [53564] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1289), 1,
      sym_function_start,
    ACTIONS(1291), 1,
      anon_sym_LBRACE,
    ACTIONS(1293), 1,
      sym__identifier,
    ACTIONS(1295), 1,
      sym_left_paren,
    ACTIONS(1297), 1,
      sym__string_start,
    ACTIONS(1331), 1,
      sym_nil,
    STATE(48), 1,
      sym__prefix_exp,
    STATE(152), 1,
      sym_identifier,
    STATE(678), 1,
      sym_comment,
    ACTIONS(1281), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1285), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1287), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1333), 2,
      sym_number,
      sym_ellipsis,
    STATE(154), 2,
      sym__var,
      sym_function_call,
    STATE(408), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [53626] = 23,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1289), 1,
      sym_function_start,
    ACTIONS(1291), 1,
      anon_sym_LBRACE,
    ACTIONS(1293), 1,
      sym__identifier,
    ACTIONS(1295), 1,
      sym_left_paren,
    ACTIONS(1297), 1,
      sym__string_start,
    ACTIONS(1335), 1,
      sym_nil,
    ACTIONS(1337), 1,
      sym_number,
    ACTIONS(1339), 1,
      sym_ellipsis,
    STATE(29), 1,
      sym__prefix_exp,
    STATE(152), 1,
      sym_identifier,
    STATE(308), 1,
      sym_unary_operation,
    STATE(310), 1,
      sym_binary_operation,
    STATE(318), 1,
      sym_function,
    STATE(319), 1,
      sym_boolean,
    STATE(335), 1,
      sym_string,
    STATE(354), 1,
      sym_tableconstructor,
    STATE(679), 1,
      sym_comment,
    ACTIONS(1281), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1285), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1287), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(154), 2,
      sym__var,
      sym_function_call,
  [53700] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1341), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(535), 1,
      sym__prefix_exp,
    STATE(680), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1343), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(888), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [53762] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1299), 1,
      sym_nil,
    STATE(80), 1,
      sym__prefix_exp,
    STATE(284), 1,
      sym_identifier,
    STATE(681), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1301), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(539), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [53824] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1299), 1,
      sym_nil,
    STATE(80), 1,
      sym__prefix_exp,
    STATE(284), 1,
      sym_identifier,
    STATE(682), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1301), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(539), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [53886] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1073), 1,
      sym_function_start,
    ACTIONS(1075), 1,
      anon_sym_LBRACE,
    ACTIONS(1077), 1,
      sym__identifier,
    ACTIONS(1079), 1,
      sym_left_paren,
    ACTIONS(1081), 1,
      sym__string_start,
    ACTIONS(1345), 1,
      sym_nil,
    STATE(10), 1,
      sym__prefix_exp,
    STATE(71), 1,
      sym_identifier,
    STATE(683), 1,
      sym_comment,
    ACTIONS(1065), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1069), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1071), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1347), 2,
      sym_number,
      sym_ellipsis,
    STATE(64), 2,
      sym__var,
      sym_function_call,
    STATE(198), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [53948] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1289), 1,
      sym_function_start,
    ACTIONS(1291), 1,
      anon_sym_LBRACE,
    ACTIONS(1293), 1,
      sym__identifier,
    ACTIONS(1295), 1,
      sym_left_paren,
    ACTIONS(1297), 1,
      sym__string_start,
    ACTIONS(1349), 1,
      sym_nil,
    STATE(32), 1,
      sym__prefix_exp,
    STATE(152), 1,
      sym_identifier,
    STATE(684), 1,
      sym_comment,
    ACTIONS(1281), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1285), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1287), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1351), 2,
      sym_number,
      sym_ellipsis,
    STATE(154), 2,
      sym__var,
      sym_function_call,
    STATE(385), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [54010] = 23,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1073), 1,
      sym_function_start,
    ACTIONS(1075), 1,
      anon_sym_LBRACE,
    ACTIONS(1077), 1,
      sym__identifier,
    ACTIONS(1079), 1,
      sym_left_paren,
    ACTIONS(1081), 1,
      sym__string_start,
    ACTIONS(1353), 1,
      sym_nil,
    ACTIONS(1355), 1,
      sym_number,
    ACTIONS(1357), 1,
      sym_ellipsis,
    STATE(3), 1,
      sym__prefix_exp,
    STATE(71), 1,
      sym_identifier,
    STATE(109), 1,
      sym_string,
    STATE(116), 1,
      sym_boolean,
    STATE(120), 1,
      sym_function,
    STATE(125), 1,
      sym_binary_operation,
    STATE(126), 1,
      sym_unary_operation,
    STATE(127), 1,
      sym_tableconstructor,
    STATE(685), 1,
      sym_comment,
    ACTIONS(1065), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1069), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1071), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(64), 2,
      sym__var,
      sym_function_call,
  [54084] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1259), 1,
      anon_sym_COMMA,
    ACTIONS(1363), 1,
      anon_sym_EQ,
    STATE(686), 1,
      sym_comment,
    STATE(759), 1,
      aux_sym_variable_declaration_repeat1,
    ACTIONS(1361), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1359), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [54128] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1073), 1,
      sym_function_start,
    ACTIONS(1075), 1,
      anon_sym_LBRACE,
    ACTIONS(1077), 1,
      sym__identifier,
    ACTIONS(1079), 1,
      sym_left_paren,
    ACTIONS(1081), 1,
      sym__string_start,
    ACTIONS(1365), 1,
      sym_nil,
    STATE(2), 1,
      sym__prefix_exp,
    STATE(71), 1,
      sym_identifier,
    STATE(687), 1,
      sym_comment,
    ACTIONS(1065), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1069), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1071), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1367), 2,
      sym_number,
      sym_ellipsis,
    STATE(64), 2,
      sym__var,
      sym_function_call,
    STATE(110), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [54190] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1369), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(537), 1,
      sym__prefix_exp,
    STATE(688), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1371), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(890), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [54252] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1289), 1,
      sym_function_start,
    ACTIONS(1291), 1,
      anon_sym_LBRACE,
    ACTIONS(1293), 1,
      sym__identifier,
    ACTIONS(1295), 1,
      sym_left_paren,
    ACTIONS(1297), 1,
      sym__string_start,
    ACTIONS(1373), 1,
      sym_nil,
    STATE(46), 1,
      sym__prefix_exp,
    STATE(152), 1,
      sym_identifier,
    STATE(689), 1,
      sym_comment,
    ACTIONS(1281), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1285), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1287), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1375), 2,
      sym_number,
      sym_ellipsis,
    STATE(154), 2,
      sym__var,
      sym_function_call,
    STATE(398), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [54314] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1289), 1,
      sym_function_start,
    ACTIONS(1291), 1,
      anon_sym_LBRACE,
    ACTIONS(1293), 1,
      sym__identifier,
    ACTIONS(1295), 1,
      sym_left_paren,
    ACTIONS(1297), 1,
      sym__string_start,
    ACTIONS(1373), 1,
      sym_nil,
    STATE(46), 1,
      sym__prefix_exp,
    STATE(152), 1,
      sym_identifier,
    STATE(690), 1,
      sym_comment,
    ACTIONS(1281), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1285), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1287), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1375), 2,
      sym_number,
      sym_ellipsis,
    STATE(154), 2,
      sym__var,
      sym_function_call,
    STATE(398), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [54376] = 23,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1289), 1,
      sym_function_start,
    ACTIONS(1291), 1,
      anon_sym_LBRACE,
    ACTIONS(1293), 1,
      sym__identifier,
    ACTIONS(1295), 1,
      sym_left_paren,
    ACTIONS(1297), 1,
      sym__string_start,
    ACTIONS(1377), 1,
      sym_nil,
    ACTIONS(1379), 1,
      sym_number,
    ACTIONS(1381), 1,
      sym_ellipsis,
    STATE(33), 1,
      sym__prefix_exp,
    STATE(152), 1,
      sym_identifier,
    STATE(375), 1,
      sym_string,
    STATE(377), 1,
      sym_boolean,
    STATE(378), 1,
      sym_function,
    STATE(382), 1,
      sym_binary_operation,
    STATE(383), 1,
      sym_unary_operation,
    STATE(384), 1,
      sym_tableconstructor,
    STATE(691), 1,
      sym_comment,
    ACTIONS(1281), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1285), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1287), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(154), 2,
      sym__var,
      sym_function_call,
  [54450] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1289), 1,
      sym_function_start,
    ACTIONS(1291), 1,
      anon_sym_LBRACE,
    ACTIONS(1293), 1,
      sym__identifier,
    ACTIONS(1295), 1,
      sym_left_paren,
    ACTIONS(1297), 1,
      sym__string_start,
    ACTIONS(1383), 1,
      sym_nil,
    STATE(35), 1,
      sym__prefix_exp,
    STATE(152), 1,
      sym_identifier,
    STATE(692), 1,
      sym_comment,
    ACTIONS(1281), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1285), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1287), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1385), 2,
      sym_number,
      sym_ellipsis,
    STATE(154), 2,
      sym__var,
      sym_function_call,
    STATE(369), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [54512] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1289), 1,
      sym_function_start,
    ACTIONS(1291), 1,
      anon_sym_LBRACE,
    ACTIONS(1293), 1,
      sym__identifier,
    ACTIONS(1295), 1,
      sym_left_paren,
    ACTIONS(1297), 1,
      sym__string_start,
    ACTIONS(1373), 1,
      sym_nil,
    STATE(46), 1,
      sym__prefix_exp,
    STATE(152), 1,
      sym_identifier,
    STATE(693), 1,
      sym_comment,
    ACTIONS(1281), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1285), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1287), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1375), 2,
      sym_number,
      sym_ellipsis,
    STATE(154), 2,
      sym__var,
      sym_function_call,
    STATE(398), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [54574] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1289), 1,
      sym_function_start,
    ACTIONS(1291), 1,
      anon_sym_LBRACE,
    ACTIONS(1293), 1,
      sym__identifier,
    ACTIONS(1295), 1,
      sym_left_paren,
    ACTIONS(1297), 1,
      sym__string_start,
    ACTIONS(1387), 1,
      sym_nil,
    STATE(52), 1,
      sym__prefix_exp,
    STATE(152), 1,
      sym_identifier,
    STATE(694), 1,
      sym_comment,
    ACTIONS(1281), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1285), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1287), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1389), 2,
      sym_number,
      sym_ellipsis,
    STATE(154), 2,
      sym__var,
      sym_function_call,
    STATE(465), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [54636] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1391), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(527), 1,
      sym__prefix_exp,
    STATE(695), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1393), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(891), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [54698] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1395), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(505), 1,
      sym__prefix_exp,
    STATE(696), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1397), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(818), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [54760] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1289), 1,
      sym_function_start,
    ACTIONS(1291), 1,
      anon_sym_LBRACE,
    ACTIONS(1293), 1,
      sym__identifier,
    ACTIONS(1295), 1,
      sym_left_paren,
    ACTIONS(1297), 1,
      sym__string_start,
    ACTIONS(1399), 1,
      sym_nil,
    STATE(27), 1,
      sym__prefix_exp,
    STATE(152), 1,
      sym_identifier,
    STATE(697), 1,
      sym_comment,
    ACTIONS(1281), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1285), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1287), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1401), 2,
      sym_number,
      sym_ellipsis,
    STATE(154), 2,
      sym__var,
      sym_function_call,
    STATE(367), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [54822] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1289), 1,
      sym_function_start,
    ACTIONS(1291), 1,
      anon_sym_LBRACE,
    ACTIONS(1293), 1,
      sym__identifier,
    ACTIONS(1295), 1,
      sym_left_paren,
    ACTIONS(1297), 1,
      sym__string_start,
    ACTIONS(1373), 1,
      sym_nil,
    STATE(46), 1,
      sym__prefix_exp,
    STATE(152), 1,
      sym_identifier,
    STATE(698), 1,
      sym_comment,
    ACTIONS(1281), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1285), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1287), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1375), 2,
      sym_number,
      sym_ellipsis,
    STATE(154), 2,
      sym__var,
      sym_function_call,
    STATE(398), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [54884] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1289), 1,
      sym_function_start,
    ACTIONS(1291), 1,
      anon_sym_LBRACE,
    ACTIONS(1293), 1,
      sym__identifier,
    ACTIONS(1295), 1,
      sym_left_paren,
    ACTIONS(1297), 1,
      sym__string_start,
    ACTIONS(1373), 1,
      sym_nil,
    STATE(46), 1,
      sym__prefix_exp,
    STATE(152), 1,
      sym_identifier,
    STATE(699), 1,
      sym_comment,
    ACTIONS(1281), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1285), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1287), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1375), 2,
      sym_number,
      sym_ellipsis,
    STATE(154), 2,
      sym__var,
      sym_function_call,
    STATE(398), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [54946] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1289), 1,
      sym_function_start,
    ACTIONS(1291), 1,
      anon_sym_LBRACE,
    ACTIONS(1293), 1,
      sym__identifier,
    ACTIONS(1295), 1,
      sym_left_paren,
    ACTIONS(1297), 1,
      sym__string_start,
    ACTIONS(1403), 1,
      sym_nil,
    STATE(57), 1,
      sym__prefix_exp,
    STATE(152), 1,
      sym_identifier,
    STATE(700), 1,
      sym_comment,
    ACTIONS(1281), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1285), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1287), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1405), 2,
      sym_number,
      sym_ellipsis,
    STATE(154), 2,
      sym__var,
      sym_function_call,
    STATE(474), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [55008] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1289), 1,
      sym_function_start,
    ACTIONS(1291), 1,
      anon_sym_LBRACE,
    ACTIONS(1293), 1,
      sym__identifier,
    ACTIONS(1295), 1,
      sym_left_paren,
    ACTIONS(1297), 1,
      sym__string_start,
    ACTIONS(1373), 1,
      sym_nil,
    STATE(46), 1,
      sym__prefix_exp,
    STATE(152), 1,
      sym_identifier,
    STATE(701), 1,
      sym_comment,
    ACTIONS(1281), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1285), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1287), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1375), 2,
      sym_number,
      sym_ellipsis,
    STATE(154), 2,
      sym__var,
      sym_function_call,
    STATE(398), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [55070] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1289), 1,
      sym_function_start,
    ACTIONS(1291), 1,
      anon_sym_LBRACE,
    ACTIONS(1293), 1,
      sym__identifier,
    ACTIONS(1295), 1,
      sym_left_paren,
    ACTIONS(1297), 1,
      sym__string_start,
    ACTIONS(1373), 1,
      sym_nil,
    STATE(46), 1,
      sym__prefix_exp,
    STATE(152), 1,
      sym_identifier,
    STATE(702), 1,
      sym_comment,
    ACTIONS(1281), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1285), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1287), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1375), 2,
      sym_number,
      sym_ellipsis,
    STATE(154), 2,
      sym__var,
      sym_function_call,
    STATE(398), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [55132] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1289), 1,
      sym_function_start,
    ACTIONS(1291), 1,
      anon_sym_LBRACE,
    ACTIONS(1293), 1,
      sym__identifier,
    ACTIONS(1295), 1,
      sym_left_paren,
    ACTIONS(1297), 1,
      sym__string_start,
    ACTIONS(1373), 1,
      sym_nil,
    STATE(46), 1,
      sym__prefix_exp,
    STATE(152), 1,
      sym_identifier,
    STATE(703), 1,
      sym_comment,
    ACTIONS(1281), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1285), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1287), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1375), 2,
      sym_number,
      sym_ellipsis,
    STATE(154), 2,
      sym__var,
      sym_function_call,
    STATE(398), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [55194] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1289), 1,
      sym_function_start,
    ACTIONS(1291), 1,
      anon_sym_LBRACE,
    ACTIONS(1293), 1,
      sym__identifier,
    ACTIONS(1295), 1,
      sym_left_paren,
    ACTIONS(1297), 1,
      sym__string_start,
    ACTIONS(1373), 1,
      sym_nil,
    STATE(46), 1,
      sym__prefix_exp,
    STATE(152), 1,
      sym_identifier,
    STATE(704), 1,
      sym_comment,
    ACTIONS(1281), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1285), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1287), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1375), 2,
      sym_number,
      sym_ellipsis,
    STATE(154), 2,
      sym__var,
      sym_function_call,
    STATE(398), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [55256] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1289), 1,
      sym_function_start,
    ACTIONS(1291), 1,
      anon_sym_LBRACE,
    ACTIONS(1293), 1,
      sym__identifier,
    ACTIONS(1295), 1,
      sym_left_paren,
    ACTIONS(1297), 1,
      sym__string_start,
    ACTIONS(1373), 1,
      sym_nil,
    STATE(46), 1,
      sym__prefix_exp,
    STATE(152), 1,
      sym_identifier,
    STATE(705), 1,
      sym_comment,
    ACTIONS(1281), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1285), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1287), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1375), 2,
      sym_number,
      sym_ellipsis,
    STATE(154), 2,
      sym__var,
      sym_function_call,
    STATE(398), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [55318] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1289), 1,
      sym_function_start,
    ACTIONS(1291), 1,
      anon_sym_LBRACE,
    ACTIONS(1293), 1,
      sym__identifier,
    ACTIONS(1295), 1,
      sym_left_paren,
    ACTIONS(1297), 1,
      sym__string_start,
    ACTIONS(1373), 1,
      sym_nil,
    STATE(46), 1,
      sym__prefix_exp,
    STATE(152), 1,
      sym_identifier,
    STATE(706), 1,
      sym_comment,
    ACTIONS(1281), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1285), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1287), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1375), 2,
      sym_number,
      sym_ellipsis,
    STATE(154), 2,
      sym__var,
      sym_function_call,
    STATE(398), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [55380] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1299), 1,
      sym_nil,
    STATE(80), 1,
      sym__prefix_exp,
    STATE(284), 1,
      sym_identifier,
    STATE(707), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1301), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(539), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [55442] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1299), 1,
      sym_nil,
    STATE(80), 1,
      sym__prefix_exp,
    STATE(284), 1,
      sym_identifier,
    STATE(708), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1301), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(539), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [55504] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1073), 1,
      sym_function_start,
    ACTIONS(1075), 1,
      anon_sym_LBRACE,
    ACTIONS(1077), 1,
      sym__identifier,
    ACTIONS(1079), 1,
      sym_left_paren,
    ACTIONS(1081), 1,
      sym__string_start,
    ACTIONS(1407), 1,
      sym_nil,
    STATE(11), 1,
      sym__prefix_exp,
    STATE(71), 1,
      sym_identifier,
    STATE(709), 1,
      sym_comment,
    ACTIONS(1065), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1069), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1071), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1409), 2,
      sym_number,
      sym_ellipsis,
    STATE(64), 2,
      sym__var,
      sym_function_call,
    STATE(177), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [55566] = 23,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1073), 1,
      sym_function_start,
    ACTIONS(1075), 1,
      anon_sym_LBRACE,
    ACTIONS(1077), 1,
      sym__identifier,
    ACTIONS(1079), 1,
      sym_left_paren,
    ACTIONS(1081), 1,
      sym__string_start,
    ACTIONS(1411), 1,
      sym_nil,
    ACTIONS(1413), 1,
      sym_number,
    ACTIONS(1415), 1,
      sym_ellipsis,
    STATE(5), 1,
      sym__prefix_exp,
    STATE(71), 1,
      sym_identifier,
    STATE(105), 1,
      sym_tableconstructor,
    STATE(106), 1,
      sym_unary_operation,
    STATE(130), 1,
      sym_binary_operation,
    STATE(131), 1,
      sym_function,
    STATE(140), 1,
      sym_string,
    STATE(143), 1,
      sym_boolean,
    STATE(710), 1,
      sym_comment,
    ACTIONS(1065), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1069), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1071), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(64), 2,
      sym__var,
      sym_function_call,
  [55640] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1417), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(523), 1,
      sym__prefix_exp,
    STATE(711), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1419), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(878), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [55702] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1421), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(444), 1,
      sym__prefix_exp,
    STATE(712), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1423), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(666), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [55764] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1425), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(529), 1,
      sym__prefix_exp,
    STATE(713), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1427), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(886), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [55826] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1299), 1,
      sym_nil,
    STATE(80), 1,
      sym__prefix_exp,
    STATE(284), 1,
      sym_identifier,
    STATE(714), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1301), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(539), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [55888] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1429), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(521), 1,
      sym__prefix_exp,
    STATE(715), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1431), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(884), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [55950] = 23,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1117), 1,
      sym_function_start,
    ACTIONS(1119), 1,
      anon_sym_LBRACE,
    ACTIONS(1121), 1,
      sym__identifier,
    ACTIONS(1123), 1,
      sym_left_paren,
    ACTIONS(1125), 1,
      sym__string_start,
    ACTIONS(1433), 1,
      sym_nil,
    ACTIONS(1435), 1,
      sym_number,
    ACTIONS(1437), 1,
      sym_ellipsis,
    STATE(41), 1,
      sym__prefix_exp,
    STATE(187), 1,
      sym_identifier,
    STATE(304), 1,
      sym_function,
    STATE(355), 1,
      sym_boolean,
    STATE(356), 1,
      sym_string,
    STATE(358), 1,
      sym_binary_operation,
    STATE(365), 1,
      sym_unary_operation,
    STATE(366), 1,
      sym_tableconstructor,
    STATE(716), 1,
      sym_comment,
    ACTIONS(1109), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1113), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1115), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(200), 2,
      sym__var,
      sym_function_call,
  [56024] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1439), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(511), 1,
      sym__prefix_exp,
    STATE(717), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1441), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(814), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [56086] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1443), 1,
      sym_nil,
    STATE(185), 1,
      sym__prefix_exp,
    STATE(284), 1,
      sym_identifier,
    STATE(718), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1445), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(569), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [56148] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1447), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(524), 1,
      sym__prefix_exp,
    STATE(719), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1449), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(877), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [56210] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1259), 1,
      anon_sym_COMMA,
    ACTIONS(1455), 1,
      anon_sym_EQ,
    STATE(663), 1,
      aux_sym_variable_declaration_repeat1,
    STATE(720), 1,
      sym_comment,
    ACTIONS(1453), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1451), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [56254] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1143), 1,
      sym_function_start,
    ACTIONS(1145), 1,
      anon_sym_LBRACE,
    ACTIONS(1147), 1,
      sym__identifier,
    ACTIONS(1149), 1,
      sym_left_paren,
    ACTIONS(1151), 1,
      sym__string_start,
    ACTIONS(1457), 1,
      sym_nil,
    STATE(24), 1,
      sym__prefix_exp,
    STATE(94), 1,
      sym_identifier,
    STATE(721), 1,
      sym_comment,
    ACTIONS(1133), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1139), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1141), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1459), 2,
      sym_number,
      sym_ellipsis,
    STATE(95), 2,
      sym__var,
      sym_function_call,
    STATE(283), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [56316] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1461), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(512), 1,
      sym__prefix_exp,
    STATE(722), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1463), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(813), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [56378] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1465), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(530), 1,
      sym__prefix_exp,
    STATE(723), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1467), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(889), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [56440] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1117), 1,
      sym_function_start,
    ACTIONS(1119), 1,
      anon_sym_LBRACE,
    ACTIONS(1121), 1,
      sym__identifier,
    ACTIONS(1123), 1,
      sym_left_paren,
    ACTIONS(1125), 1,
      sym__string_start,
    ACTIONS(1175), 1,
      sym_nil,
    STATE(47), 1,
      sym__prefix_exp,
    STATE(187), 1,
      sym_identifier,
    STATE(724), 1,
      sym_comment,
    ACTIONS(1109), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1113), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1115), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1177), 2,
      sym_number,
      sym_ellipsis,
    STATE(200), 2,
      sym__var,
      sym_function_call,
    STATE(397), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [56502] = 23,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1117), 1,
      sym_function_start,
    ACTIONS(1119), 1,
      anon_sym_LBRACE,
    ACTIONS(1121), 1,
      sym__identifier,
    ACTIONS(1123), 1,
      sym_left_paren,
    ACTIONS(1125), 1,
      sym__string_start,
    ACTIONS(1469), 1,
      sym_nil,
    ACTIONS(1471), 1,
      sym_number,
    ACTIONS(1473), 1,
      sym_ellipsis,
    STATE(40), 1,
      sym__prefix_exp,
    STATE(187), 1,
      sym_identifier,
    STATE(303), 1,
      sym_unary_operation,
    STATE(309), 1,
      sym_tableconstructor,
    STATE(311), 1,
      sym_binary_operation,
    STATE(312), 1,
      sym_function,
    STATE(313), 1,
      sym_boolean,
    STATE(314), 1,
      sym_string,
    STATE(725), 1,
      sym_comment,
    ACTIONS(1109), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1113), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1115), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(200), 2,
      sym__var,
      sym_function_call,
  [56576] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1117), 1,
      sym_function_start,
    ACTIONS(1119), 1,
      anon_sym_LBRACE,
    ACTIONS(1121), 1,
      sym__identifier,
    ACTIONS(1123), 1,
      sym_left_paren,
    ACTIONS(1125), 1,
      sym__string_start,
    ACTIONS(1475), 1,
      sym_nil,
    STATE(31), 1,
      sym__prefix_exp,
    STATE(187), 1,
      sym_identifier,
    STATE(726), 1,
      sym_comment,
    ACTIONS(1109), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1113), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1115), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1477), 2,
      sym_number,
      sym_ellipsis,
    STATE(200), 2,
      sym__var,
      sym_function_call,
    STATE(321), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [56638] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1117), 1,
      sym_function_start,
    ACTIONS(1119), 1,
      anon_sym_LBRACE,
    ACTIONS(1121), 1,
      sym__identifier,
    ACTIONS(1123), 1,
      sym_left_paren,
    ACTIONS(1125), 1,
      sym__string_start,
    ACTIONS(1479), 1,
      sym_nil,
    STATE(50), 1,
      sym__prefix_exp,
    STATE(187), 1,
      sym_identifier,
    STATE(727), 1,
      sym_comment,
    ACTIONS(1109), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1113), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1115), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1481), 2,
      sym_number,
      sym_ellipsis,
    STATE(200), 2,
      sym__var,
      sym_function_call,
    STATE(403), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [56700] = 23,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1117), 1,
      sym_function_start,
    ACTIONS(1119), 1,
      anon_sym_LBRACE,
    ACTIONS(1121), 1,
      sym__identifier,
    ACTIONS(1123), 1,
      sym_left_paren,
    ACTIONS(1125), 1,
      sym__string_start,
    ACTIONS(1483), 1,
      sym_nil,
    ACTIONS(1485), 1,
      sym_number,
    ACTIONS(1487), 1,
      sym_ellipsis,
    STATE(42), 1,
      sym__prefix_exp,
    STATE(187), 1,
      sym_identifier,
    STATE(322), 1,
      sym_string,
    STATE(324), 1,
      sym_tableconstructor,
    STATE(325), 1,
      sym_unary_operation,
    STATE(326), 1,
      sym_binary_operation,
    STATE(329), 1,
      sym_function,
    STATE(330), 1,
      sym_boolean,
    STATE(728), 1,
      sym_comment,
    ACTIONS(1109), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1113), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1115), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(200), 2,
      sym__var,
      sym_function_call,
  [56774] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1489), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(538), 1,
      sym__prefix_exp,
    STATE(729), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1491), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(874), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [56836] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1143), 1,
      sym_function_start,
    ACTIONS(1145), 1,
      anon_sym_LBRACE,
    ACTIONS(1147), 1,
      sym__identifier,
    ACTIONS(1149), 1,
      sym_left_paren,
    ACTIONS(1151), 1,
      sym__string_start,
    ACTIONS(1493), 1,
      sym_nil,
    STATE(26), 1,
      sym__prefix_exp,
    STATE(94), 1,
      sym_identifier,
    STATE(730), 1,
      sym_comment,
    ACTIONS(1133), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1139), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1141), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1495), 2,
      sym_number,
      sym_ellipsis,
    STATE(95), 2,
      sym__var,
      sym_function_call,
    STATE(281), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [56898] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1117), 1,
      sym_function_start,
    ACTIONS(1119), 1,
      anon_sym_LBRACE,
    ACTIONS(1121), 1,
      sym__identifier,
    ACTIONS(1123), 1,
      sym_left_paren,
    ACTIONS(1125), 1,
      sym__string_start,
    ACTIONS(1497), 1,
      sym_nil,
    STATE(44), 1,
      sym__prefix_exp,
    STATE(187), 1,
      sym_identifier,
    STATE(731), 1,
      sym_comment,
    ACTIONS(1109), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1113), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1115), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1499), 2,
      sym_number,
      sym_ellipsis,
    STATE(200), 2,
      sym__var,
      sym_function_call,
    STATE(337), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [56960] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1143), 1,
      sym_function_start,
    ACTIONS(1145), 1,
      anon_sym_LBRACE,
    ACTIONS(1147), 1,
      sym__identifier,
    ACTIONS(1149), 1,
      sym_left_paren,
    ACTIONS(1151), 1,
      sym__string_start,
    ACTIONS(1493), 1,
      sym_nil,
    STATE(26), 1,
      sym__prefix_exp,
    STATE(94), 1,
      sym_identifier,
    STATE(732), 1,
      sym_comment,
    ACTIONS(1133), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1139), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1141), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1495), 2,
      sym_number,
      sym_ellipsis,
    STATE(95), 2,
      sym__var,
      sym_function_call,
    STATE(281), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [57022] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1143), 1,
      sym_function_start,
    ACTIONS(1145), 1,
      anon_sym_LBRACE,
    ACTIONS(1147), 1,
      sym__identifier,
    ACTIONS(1149), 1,
      sym_left_paren,
    ACTIONS(1151), 1,
      sym__string_start,
    ACTIONS(1493), 1,
      sym_nil,
    STATE(26), 1,
      sym__prefix_exp,
    STATE(94), 1,
      sym_identifier,
    STATE(733), 1,
      sym_comment,
    ACTIONS(1133), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1139), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1141), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1495), 2,
      sym_number,
      sym_ellipsis,
    STATE(95), 2,
      sym__var,
      sym_function_call,
    STATE(281), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [57084] = 23,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1117), 1,
      sym_function_start,
    ACTIONS(1119), 1,
      anon_sym_LBRACE,
    ACTIONS(1121), 1,
      sym__identifier,
    ACTIONS(1123), 1,
      sym_left_paren,
    ACTIONS(1125), 1,
      sym__string_start,
    ACTIONS(1501), 1,
      sym_nil,
    ACTIONS(1503), 1,
      sym_number,
    ACTIONS(1505), 1,
      sym_ellipsis,
    STATE(28), 1,
      sym__prefix_exp,
    STATE(187), 1,
      sym_identifier,
    STATE(338), 1,
      sym_tableconstructor,
    STATE(339), 1,
      sym_unary_operation,
    STATE(340), 1,
      sym_binary_operation,
    STATE(341), 1,
      sym_function,
    STATE(342), 1,
      sym_boolean,
    STATE(343), 1,
      sym_string,
    STATE(734), 1,
      sym_comment,
    ACTIONS(1109), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1113), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1115), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(200), 2,
      sym__var,
      sym_function_call,
  [57158] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1117), 1,
      sym_function_start,
    ACTIONS(1119), 1,
      anon_sym_LBRACE,
    ACTIONS(1121), 1,
      sym__identifier,
    ACTIONS(1123), 1,
      sym_left_paren,
    ACTIONS(1125), 1,
      sym__string_start,
    ACTIONS(1507), 1,
      sym_nil,
    STATE(39), 1,
      sym__prefix_exp,
    STATE(187), 1,
      sym_identifier,
    STATE(735), 1,
      sym_comment,
    ACTIONS(1109), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1113), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1115), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1509), 2,
      sym_number,
      sym_ellipsis,
    STATE(200), 2,
      sym__var,
      sym_function_call,
    STATE(348), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [57220] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1143), 1,
      sym_function_start,
    ACTIONS(1145), 1,
      anon_sym_LBRACE,
    ACTIONS(1147), 1,
      sym__identifier,
    ACTIONS(1149), 1,
      sym_left_paren,
    ACTIONS(1151), 1,
      sym__string_start,
    ACTIONS(1493), 1,
      sym_nil,
    STATE(26), 1,
      sym__prefix_exp,
    STATE(94), 1,
      sym_identifier,
    STATE(736), 1,
      sym_comment,
    ACTIONS(1133), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1139), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1141), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1495), 2,
      sym_number,
      sym_ellipsis,
    STATE(95), 2,
      sym__var,
      sym_function_call,
    STATE(281), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [57282] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1117), 1,
      sym_function_start,
    ACTIONS(1119), 1,
      anon_sym_LBRACE,
    ACTIONS(1121), 1,
      sym__identifier,
    ACTIONS(1123), 1,
      sym_left_paren,
    ACTIONS(1125), 1,
      sym__string_start,
    ACTIONS(1511), 1,
      sym_nil,
    STATE(54), 1,
      sym__prefix_exp,
    STATE(187), 1,
      sym_identifier,
    STATE(737), 1,
      sym_comment,
    ACTIONS(1109), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1113), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1115), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1513), 2,
      sym_number,
      sym_ellipsis,
    STATE(200), 2,
      sym__var,
      sym_function_call,
    STATE(415), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [57344] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1143), 1,
      sym_function_start,
    ACTIONS(1145), 1,
      anon_sym_LBRACE,
    ACTIONS(1147), 1,
      sym__identifier,
    ACTIONS(1149), 1,
      sym_left_paren,
    ACTIONS(1151), 1,
      sym__string_start,
    ACTIONS(1493), 1,
      sym_nil,
    STATE(26), 1,
      sym__prefix_exp,
    STATE(94), 1,
      sym_identifier,
    STATE(738), 1,
      sym_comment,
    ACTIONS(1133), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1139), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1141), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1495), 2,
      sym_number,
      sym_ellipsis,
    STATE(95), 2,
      sym__var,
      sym_function_call,
    STATE(281), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [57406] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1143), 1,
      sym_function_start,
    ACTIONS(1145), 1,
      anon_sym_LBRACE,
    ACTIONS(1147), 1,
      sym__identifier,
    ACTIONS(1149), 1,
      sym_left_paren,
    ACTIONS(1151), 1,
      sym__string_start,
    ACTIONS(1493), 1,
      sym_nil,
    STATE(26), 1,
      sym__prefix_exp,
    STATE(94), 1,
      sym_identifier,
    STATE(739), 1,
      sym_comment,
    ACTIONS(1133), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1139), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1141), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1495), 2,
      sym_number,
      sym_ellipsis,
    STATE(95), 2,
      sym__var,
      sym_function_call,
    STATE(281), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [57468] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1143), 1,
      sym_function_start,
    ACTIONS(1145), 1,
      anon_sym_LBRACE,
    ACTIONS(1147), 1,
      sym__identifier,
    ACTIONS(1149), 1,
      sym_left_paren,
    ACTIONS(1151), 1,
      sym__string_start,
    ACTIONS(1493), 1,
      sym_nil,
    STATE(26), 1,
      sym__prefix_exp,
    STATE(94), 1,
      sym_identifier,
    STATE(740), 1,
      sym_comment,
    ACTIONS(1133), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1139), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1141), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1495), 2,
      sym_number,
      sym_ellipsis,
    STATE(95), 2,
      sym__var,
      sym_function_call,
    STATE(281), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [57530] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1143), 1,
      sym_function_start,
    ACTIONS(1145), 1,
      anon_sym_LBRACE,
    ACTIONS(1147), 1,
      sym__identifier,
    ACTIONS(1149), 1,
      sym_left_paren,
    ACTIONS(1151), 1,
      sym__string_start,
    ACTIONS(1493), 1,
      sym_nil,
    STATE(26), 1,
      sym__prefix_exp,
    STATE(94), 1,
      sym_identifier,
    STATE(741), 1,
      sym_comment,
    ACTIONS(1133), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1139), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1141), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1495), 2,
      sym_number,
      sym_ellipsis,
    STATE(95), 2,
      sym__var,
      sym_function_call,
    STATE(281), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [57592] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1143), 1,
      sym_function_start,
    ACTIONS(1145), 1,
      anon_sym_LBRACE,
    ACTIONS(1147), 1,
      sym__identifier,
    ACTIONS(1149), 1,
      sym_left_paren,
    ACTIONS(1151), 1,
      sym__string_start,
    ACTIONS(1493), 1,
      sym_nil,
    STATE(26), 1,
      sym__prefix_exp,
    STATE(94), 1,
      sym_identifier,
    STATE(742), 1,
      sym_comment,
    ACTIONS(1133), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1139), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1141), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1495), 2,
      sym_number,
      sym_ellipsis,
    STATE(95), 2,
      sym__var,
      sym_function_call,
    STATE(281), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [57654] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1117), 1,
      sym_function_start,
    ACTIONS(1119), 1,
      anon_sym_LBRACE,
    ACTIONS(1121), 1,
      sym__identifier,
    ACTIONS(1123), 1,
      sym_left_paren,
    ACTIONS(1125), 1,
      sym__string_start,
    ACTIONS(1515), 1,
      sym_nil,
    STATE(56), 1,
      sym__prefix_exp,
    STATE(187), 1,
      sym_identifier,
    STATE(743), 1,
      sym_comment,
    ACTIONS(1109), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1113), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1115), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1517), 2,
      sym_number,
      sym_ellipsis,
    STATE(200), 2,
      sym__var,
      sym_function_call,
    STATE(420), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [57716] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1143), 1,
      sym_function_start,
    ACTIONS(1145), 1,
      anon_sym_LBRACE,
    ACTIONS(1147), 1,
      sym__identifier,
    ACTIONS(1149), 1,
      sym_left_paren,
    ACTIONS(1151), 1,
      sym__string_start,
    ACTIONS(1493), 1,
      sym_nil,
    STATE(26), 1,
      sym__prefix_exp,
    STATE(94), 1,
      sym_identifier,
    STATE(744), 1,
      sym_comment,
    ACTIONS(1133), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1139), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1141), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1495), 2,
      sym_number,
      sym_ellipsis,
    STATE(95), 2,
      sym__var,
      sym_function_call,
    STATE(281), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [57778] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1143), 1,
      sym_function_start,
    ACTIONS(1145), 1,
      anon_sym_LBRACE,
    ACTIONS(1147), 1,
      sym__identifier,
    ACTIONS(1149), 1,
      sym_left_paren,
    ACTIONS(1151), 1,
      sym__string_start,
    ACTIONS(1493), 1,
      sym_nil,
    STATE(26), 1,
      sym__prefix_exp,
    STATE(94), 1,
      sym_identifier,
    STATE(745), 1,
      sym_comment,
    ACTIONS(1133), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1139), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1141), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1495), 2,
      sym_number,
      sym_ellipsis,
    STATE(95), 2,
      sym__var,
      sym_function_call,
    STATE(281), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [57840] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1259), 1,
      anon_sym_COMMA,
    ACTIONS(1523), 1,
      anon_sym_EQ,
    STATE(746), 1,
      sym_comment,
    STATE(759), 1,
      aux_sym_variable_declaration_repeat1,
    ACTIONS(1521), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1519), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [57884] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1073), 1,
      sym_function_start,
    ACTIONS(1075), 1,
      anon_sym_LBRACE,
    ACTIONS(1077), 1,
      sym__identifier,
    ACTIONS(1079), 1,
      sym_left_paren,
    ACTIONS(1081), 1,
      sym__string_start,
    ACTIONS(1525), 1,
      sym_nil,
    STATE(6), 1,
      sym__prefix_exp,
    STATE(71), 1,
      sym_identifier,
    STATE(747), 1,
      sym_comment,
    ACTIONS(1065), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1069), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1071), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1527), 2,
      sym_number,
      sym_ellipsis,
    STATE(64), 2,
      sym__var,
      sym_function_call,
    STATE(117), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [57946] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1529), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(531), 1,
      sym__prefix_exp,
    STATE(748), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1531), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(879), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [58008] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1117), 1,
      sym_function_start,
    ACTIONS(1119), 1,
      anon_sym_LBRACE,
    ACTIONS(1121), 1,
      sym__identifier,
    ACTIONS(1123), 1,
      sym_left_paren,
    ACTIONS(1125), 1,
      sym__string_start,
    ACTIONS(1175), 1,
      sym_nil,
    STATE(47), 1,
      sym__prefix_exp,
    STATE(187), 1,
      sym_identifier,
    STATE(749), 1,
      sym_comment,
    ACTIONS(1109), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1113), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1115), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1177), 2,
      sym_number,
      sym_ellipsis,
    STATE(200), 2,
      sym__var,
      sym_function_call,
    STATE(397), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [58070] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1533), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(528), 1,
      sym__prefix_exp,
    STATE(750), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1535), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(896), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [58132] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1259), 1,
      anon_sym_COMMA,
    ACTIONS(1541), 1,
      anon_sym_EQ,
    STATE(751), 1,
      sym_comment,
    STATE(771), 1,
      aux_sym_variable_declaration_repeat1,
    ACTIONS(1539), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1537), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [58176] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1117), 1,
      sym_function_start,
    ACTIONS(1119), 1,
      anon_sym_LBRACE,
    ACTIONS(1121), 1,
      sym__identifier,
    ACTIONS(1123), 1,
      sym_left_paren,
    ACTIONS(1125), 1,
      sym__string_start,
    ACTIONS(1175), 1,
      sym_nil,
    STATE(47), 1,
      sym__prefix_exp,
    STATE(187), 1,
      sym_identifier,
    STATE(752), 1,
      sym_comment,
    ACTIONS(1109), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1113), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1115), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1177), 2,
      sym_number,
      sym_ellipsis,
    STATE(200), 2,
      sym__var,
      sym_function_call,
    STATE(397), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [58238] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1117), 1,
      sym_function_start,
    ACTIONS(1119), 1,
      anon_sym_LBRACE,
    ACTIONS(1121), 1,
      sym__identifier,
    ACTIONS(1123), 1,
      sym_left_paren,
    ACTIONS(1125), 1,
      sym__string_start,
    ACTIONS(1175), 1,
      sym_nil,
    STATE(47), 1,
      sym__prefix_exp,
    STATE(187), 1,
      sym_identifier,
    STATE(753), 1,
      sym_comment,
    ACTIONS(1109), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1113), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1115), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1177), 2,
      sym_number,
      sym_ellipsis,
    STATE(200), 2,
      sym__var,
      sym_function_call,
    STATE(397), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [58300] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1543), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(513), 1,
      sym__prefix_exp,
    STATE(754), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1545), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(842), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [58362] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1117), 1,
      sym_function_start,
    ACTIONS(1119), 1,
      anon_sym_LBRACE,
    ACTIONS(1121), 1,
      sym__identifier,
    ACTIONS(1123), 1,
      sym_left_paren,
    ACTIONS(1125), 1,
      sym__string_start,
    ACTIONS(1175), 1,
      sym_nil,
    STATE(47), 1,
      sym__prefix_exp,
    STATE(187), 1,
      sym_identifier,
    STATE(755), 1,
      sym_comment,
    ACTIONS(1109), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1113), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1115), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1177), 2,
      sym_number,
      sym_ellipsis,
    STATE(200), 2,
      sym__var,
      sym_function_call,
    STATE(397), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [58424] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1547), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(533), 1,
      sym__prefix_exp,
    STATE(756), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1549), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(892), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [58486] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1117), 1,
      sym_function_start,
    ACTIONS(1119), 1,
      anon_sym_LBRACE,
    ACTIONS(1121), 1,
      sym__identifier,
    ACTIONS(1123), 1,
      sym_left_paren,
    ACTIONS(1125), 1,
      sym__string_start,
    ACTIONS(1175), 1,
      sym_nil,
    STATE(47), 1,
      sym__prefix_exp,
    STATE(187), 1,
      sym_identifier,
    STATE(757), 1,
      sym_comment,
    ACTIONS(1109), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1113), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1115), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1177), 2,
      sym_number,
      sym_ellipsis,
    STATE(200), 2,
      sym__var,
      sym_function_call,
    STATE(397), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [58548] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1551), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(504), 1,
      sym__prefix_exp,
    STATE(758), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1553), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(870), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [58610] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1557), 1,
      anon_sym_COMMA,
    STATE(759), 2,
      sym_comment,
      aux_sym_variable_declaration_repeat1,
    ACTIONS(1560), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1555), 13,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_EQ,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [58650] = 23,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1073), 1,
      sym_function_start,
    ACTIONS(1075), 1,
      anon_sym_LBRACE,
    ACTIONS(1077), 1,
      sym__identifier,
    ACTIONS(1079), 1,
      sym_left_paren,
    ACTIONS(1081), 1,
      sym__string_start,
    ACTIONS(1562), 1,
      sym_nil,
    ACTIONS(1564), 1,
      sym_number,
    ACTIONS(1566), 1,
      sym_ellipsis,
    STATE(9), 1,
      sym__prefix_exp,
    STATE(71), 1,
      sym_identifier,
    STATE(137), 1,
      sym_string,
    STATE(138), 1,
      sym_boolean,
    STATE(139), 1,
      sym_function,
    STATE(141), 1,
      sym_binary_operation,
    STATE(142), 1,
      sym_unary_operation,
    STATE(144), 1,
      sym_tableconstructor,
    STATE(760), 1,
      sym_comment,
    ACTIONS(1065), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1069), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1071), 2,
      anon_sym_DASH,
      anon_sym_not,
    STATE(64), 2,
      sym__var,
      sym_function_call,
  [58724] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1568), 1,
      sym_nil,
    STATE(284), 1,
      sym_identifier,
    STATE(506), 1,
      sym__prefix_exp,
    STATE(761), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1570), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(819), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [58786] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1259), 1,
      anon_sym_COMMA,
    ACTIONS(1576), 1,
      anon_sym_EQ,
    STATE(746), 1,
      aux_sym_variable_declaration_repeat1,
    STATE(762), 1,
      sym_comment,
    ACTIONS(1574), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1572), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [58830] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1097), 1,
      sym_function_start,
    ACTIONS(1099), 1,
      anon_sym_LBRACE,
    ACTIONS(1101), 1,
      sym__identifier,
    ACTIONS(1103), 1,
      sym_left_paren,
    ACTIONS(1105), 1,
      sym__string_start,
    ACTIONS(1127), 1,
      sym_nil,
    STATE(55), 1,
      sym__prefix_exp,
    STATE(221), 1,
      sym_identifier,
    STATE(763), 1,
      sym_comment,
    ACTIONS(1089), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1093), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1095), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1129), 2,
      sym_number,
      sym_ellipsis,
    STATE(223), 2,
      sym__var,
      sym_function_call,
    STATE(467), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [58892] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    STATE(764), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(748), 3,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_RBRACE,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [58956] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(916), 1,
      sym_function_start,
    ACTIONS(918), 1,
      anon_sym_LBRACE,
    ACTIONS(922), 1,
      sym__identifier,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(1578), 1,
      sym_nil,
    STATE(79), 1,
      sym__prefix_exp,
    STATE(284), 1,
      sym_identifier,
    STATE(765), 1,
      sym_comment,
    ACTIONS(906), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(910), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(912), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1580), 2,
      sym_number,
      sym_ellipsis,
    STATE(276), 2,
      sym__var,
      sym_function_call,
    STATE(547), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [59018] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1073), 1,
      sym_function_start,
    ACTIONS(1075), 1,
      anon_sym_LBRACE,
    ACTIONS(1077), 1,
      sym__identifier,
    ACTIONS(1079), 1,
      sym_left_paren,
    ACTIONS(1081), 1,
      sym__string_start,
    ACTIONS(1582), 1,
      sym_nil,
    STATE(8), 1,
      sym__prefix_exp,
    STATE(71), 1,
      sym_identifier,
    STATE(766), 1,
      sym_comment,
    ACTIONS(1065), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1069), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1071), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1584), 2,
      sym_number,
      sym_ellipsis,
    STATE(64), 2,
      sym__var,
      sym_function_call,
    STATE(132), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [59080] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1097), 1,
      sym_function_start,
    ACTIONS(1099), 1,
      anon_sym_LBRACE,
    ACTIONS(1101), 1,
      sym__identifier,
    ACTIONS(1103), 1,
      sym_left_paren,
    ACTIONS(1105), 1,
      sym__string_start,
    ACTIONS(1586), 1,
      sym_nil,
    STATE(51), 1,
      sym__prefix_exp,
    STATE(221), 1,
      sym_identifier,
    STATE(767), 1,
      sym_comment,
    ACTIONS(1089), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1093), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1095), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1588), 2,
      sym_number,
      sym_ellipsis,
    STATE(223), 2,
      sym__var,
      sym_function_call,
    STATE(478), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [59142] = 20,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(520), 1,
      anon_sym_COMMA,
    ACTIONS(680), 1,
      anon_sym_do,
    STATE(768), 1,
      sym_comment,
    STATE(1491), 1,
      aux_sym__expression_list_repeat1,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [59210] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1117), 1,
      sym_function_start,
    ACTIONS(1119), 1,
      anon_sym_LBRACE,
    ACTIONS(1121), 1,
      sym__identifier,
    ACTIONS(1123), 1,
      sym_left_paren,
    ACTIONS(1125), 1,
      sym__string_start,
    ACTIONS(1175), 1,
      sym_nil,
    STATE(47), 1,
      sym__prefix_exp,
    STATE(187), 1,
      sym_identifier,
    STATE(769), 1,
      sym_comment,
    ACTIONS(1109), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1113), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1115), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1177), 2,
      sym_number,
      sym_ellipsis,
    STATE(200), 2,
      sym__var,
      sym_function_call,
    STATE(397), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [59272] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1073), 1,
      sym_function_start,
    ACTIONS(1075), 1,
      anon_sym_LBRACE,
    ACTIONS(1077), 1,
      sym__identifier,
    ACTIONS(1079), 1,
      sym_left_paren,
    ACTIONS(1081), 1,
      sym__string_start,
    ACTIONS(1590), 1,
      sym_nil,
    STATE(14), 1,
      sym__prefix_exp,
    STATE(71), 1,
      sym_identifier,
    STATE(770), 1,
      sym_comment,
    ACTIONS(1065), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1069), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1071), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1592), 2,
      sym_number,
      sym_ellipsis,
    STATE(64), 2,
      sym__var,
      sym_function_call,
    STATE(222), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [59334] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1259), 1,
      anon_sym_COMMA,
    ACTIONS(1598), 1,
      anon_sym_EQ,
    STATE(759), 1,
      aux_sym_variable_declaration_repeat1,
    STATE(771), 1,
      sym_comment,
    ACTIONS(1596), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1594), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [59378] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1097), 1,
      sym_function_start,
    ACTIONS(1099), 1,
      anon_sym_LBRACE,
    ACTIONS(1101), 1,
      sym__identifier,
    ACTIONS(1103), 1,
      sym_left_paren,
    ACTIONS(1105), 1,
      sym__string_start,
    ACTIONS(1127), 1,
      sym_nil,
    STATE(55), 1,
      sym__prefix_exp,
    STATE(221), 1,
      sym_identifier,
    STATE(772), 1,
      sym_comment,
    ACTIONS(1089), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1093), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1095), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1129), 2,
      sym_number,
      sym_ellipsis,
    STATE(223), 2,
      sym__var,
      sym_function_call,
    STATE(467), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [59440] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1097), 1,
      sym_function_start,
    ACTIONS(1099), 1,
      anon_sym_LBRACE,
    ACTIONS(1101), 1,
      sym__identifier,
    ACTIONS(1103), 1,
      sym_left_paren,
    ACTIONS(1105), 1,
      sym__string_start,
    ACTIONS(1127), 1,
      sym_nil,
    STATE(55), 1,
      sym__prefix_exp,
    STATE(221), 1,
      sym_identifier,
    STATE(773), 1,
      sym_comment,
    ACTIONS(1089), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1093), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1095), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1129), 2,
      sym_number,
      sym_ellipsis,
    STATE(223), 2,
      sym__var,
      sym_function_call,
    STATE(467), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [59502] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1097), 1,
      sym_function_start,
    ACTIONS(1099), 1,
      anon_sym_LBRACE,
    ACTIONS(1101), 1,
      sym__identifier,
    ACTIONS(1103), 1,
      sym_left_paren,
    ACTIONS(1105), 1,
      sym__string_start,
    ACTIONS(1127), 1,
      sym_nil,
    STATE(55), 1,
      sym__prefix_exp,
    STATE(221), 1,
      sym_identifier,
    STATE(774), 1,
      sym_comment,
    ACTIONS(1089), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1093), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1095), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1129), 2,
      sym_number,
      sym_ellipsis,
    STATE(223), 2,
      sym__var,
      sym_function_call,
    STATE(467), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [59564] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1097), 1,
      sym_function_start,
    ACTIONS(1099), 1,
      anon_sym_LBRACE,
    ACTIONS(1101), 1,
      sym__identifier,
    ACTIONS(1103), 1,
      sym_left_paren,
    ACTIONS(1105), 1,
      sym__string_start,
    ACTIONS(1127), 1,
      sym_nil,
    STATE(55), 1,
      sym__prefix_exp,
    STATE(221), 1,
      sym_identifier,
    STATE(775), 1,
      sym_comment,
    ACTIONS(1089), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1093), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1095), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1129), 2,
      sym_number,
      sym_ellipsis,
    STATE(223), 2,
      sym__var,
      sym_function_call,
    STATE(467), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [59626] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1097), 1,
      sym_function_start,
    ACTIONS(1099), 1,
      anon_sym_LBRACE,
    ACTIONS(1101), 1,
      sym__identifier,
    ACTIONS(1103), 1,
      sym_left_paren,
    ACTIONS(1105), 1,
      sym__string_start,
    ACTIONS(1127), 1,
      sym_nil,
    STATE(55), 1,
      sym__prefix_exp,
    STATE(221), 1,
      sym_identifier,
    STATE(776), 1,
      sym_comment,
    ACTIONS(1089), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1093), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1095), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1129), 2,
      sym_number,
      sym_ellipsis,
    STATE(223), 2,
      sym__var,
      sym_function_call,
    STATE(467), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [59688] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1097), 1,
      sym_function_start,
    ACTIONS(1099), 1,
      anon_sym_LBRACE,
    ACTIONS(1101), 1,
      sym__identifier,
    ACTIONS(1103), 1,
      sym_left_paren,
    ACTIONS(1105), 1,
      sym__string_start,
    ACTIONS(1127), 1,
      sym_nil,
    STATE(55), 1,
      sym__prefix_exp,
    STATE(221), 1,
      sym_identifier,
    STATE(777), 1,
      sym_comment,
    ACTIONS(1089), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1093), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1095), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1129), 2,
      sym_number,
      sym_ellipsis,
    STATE(223), 2,
      sym__var,
      sym_function_call,
    STATE(467), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [59750] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1097), 1,
      sym_function_start,
    ACTIONS(1099), 1,
      anon_sym_LBRACE,
    ACTIONS(1101), 1,
      sym__identifier,
    ACTIONS(1103), 1,
      sym_left_paren,
    ACTIONS(1105), 1,
      sym__string_start,
    ACTIONS(1127), 1,
      sym_nil,
    STATE(55), 1,
      sym__prefix_exp,
    STATE(221), 1,
      sym_identifier,
    STATE(778), 1,
      sym_comment,
    ACTIONS(1089), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1093), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1095), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1129), 2,
      sym_number,
      sym_ellipsis,
    STATE(223), 2,
      sym__var,
      sym_function_call,
    STATE(467), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [59812] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1097), 1,
      sym_function_start,
    ACTIONS(1099), 1,
      anon_sym_LBRACE,
    ACTIONS(1101), 1,
      sym__identifier,
    ACTIONS(1103), 1,
      sym_left_paren,
    ACTIONS(1105), 1,
      sym__string_start,
    ACTIONS(1127), 1,
      sym_nil,
    STATE(55), 1,
      sym__prefix_exp,
    STATE(221), 1,
      sym_identifier,
    STATE(779), 1,
      sym_comment,
    ACTIONS(1089), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1093), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1095), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1129), 2,
      sym_number,
      sym_ellipsis,
    STATE(223), 2,
      sym__var,
      sym_function_call,
    STATE(467), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [59874] = 17,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1097), 1,
      sym_function_start,
    ACTIONS(1099), 1,
      anon_sym_LBRACE,
    ACTIONS(1101), 1,
      sym__identifier,
    ACTIONS(1103), 1,
      sym_left_paren,
    ACTIONS(1105), 1,
      sym__string_start,
    ACTIONS(1127), 1,
      sym_nil,
    STATE(55), 1,
      sym__prefix_exp,
    STATE(221), 1,
      sym_identifier,
    STATE(780), 1,
      sym_comment,
    ACTIONS(1089), 2,
      anon_sym_true,
      anon_sym_false,
    ACTIONS(1093), 2,
      anon_sym_TILDE,
      anon_sym_POUND,
    ACTIONS(1095), 2,
      anon_sym_DASH,
      anon_sym_not,
    ACTIONS(1129), 2,
      sym_number,
      sym_ellipsis,
    STATE(223), 2,
      sym__var,
      sym_function_call,
    STATE(467), 6,
      sym_string,
      sym_boolean,
      sym_function,
      sym_binary_operation,
      sym_unary_operation,
      sym_tableconstructor,
  [59936] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(781), 1,
      sym_comment,
    ACTIONS(373), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(375), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [59973] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(782), 1,
      sym_comment,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1602), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1600), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [60014] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(783), 1,
      sym_comment,
    ACTIONS(355), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(353), 12,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_EQ,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [60051] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(784), 1,
      sym_comment,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1606), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1604), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [60092] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(785), 1,
      sym_comment,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1606), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1604), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [60133] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(786), 1,
      sym_comment,
    ACTIONS(357), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(359), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [60170] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(787), 1,
      sym_comment,
    ACTIONS(361), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(363), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [60207] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1610), 1,
      anon_sym_COMMA,
    STATE(788), 2,
      sym_comment,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1613), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1608), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [60246] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(789), 1,
      sym_comment,
    ACTIONS(371), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(369), 12,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_EQ,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [60283] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(790), 1,
      sym_comment,
    ACTIONS(361), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(363), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [60320] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(791), 1,
      sym_comment,
    ACTIONS(361), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(363), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [60357] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1615), 1,
      anon_sym_SEMI,
    STATE(792), 1,
      sym_comment,
    ACTIONS(1055), 4,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(341), 5,
      sym__string_start,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
    ACTIONS(1059), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [60398] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(793), 1,
      sym_comment,
    ACTIONS(1619), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1617), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [60439] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(794), 1,
      sym_comment,
    ACTIONS(1606), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1604), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [60480] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(795), 1,
      sym_comment,
    ACTIONS(335), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(333), 12,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_EQ,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [60517] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(796), 1,
      sym_comment,
    ACTIONS(357), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(359), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [60554] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(797), 1,
      sym_comment,
    ACTIONS(335), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(333), 12,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_EQ,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [60591] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(966), 1,
      sym_left_paren,
    STATE(798), 1,
      sym_comment,
    ACTIONS(341), 5,
      sym__string_start,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
    ACTIONS(962), 6,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_EQ,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(964), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [60632] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(799), 1,
      sym_comment,
    ACTIONS(1619), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1617), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [60673] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(800), 1,
      sym_comment,
    ACTIONS(371), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(369), 12,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_EQ,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [60710] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(801), 1,
      sym_comment,
    ACTIONS(1606), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1604), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [60751] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(802), 1,
      sym_comment,
    ACTIONS(1619), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1617), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [60792] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1625), 1,
      aux_sym_emmy_field_token1,
    STATE(803), 1,
      sym_comment,
    STATE(838), 1,
      aux_sym_documentation_class_repeat1,
    STATE(905), 1,
      sym_emmy_field,
    ACTIONS(1623), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1621), 11,
      ts_builtin_sym_end,
      anon_sym_,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [60835] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(804), 1,
      sym_comment,
    ACTIONS(377), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(379), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [60872] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(805), 1,
      sym_comment,
    ACTIONS(1619), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1617), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [60913] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(806), 1,
      sym_comment,
    ACTIONS(1606), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1604), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [60954] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(807), 1,
      sym_comment,
    ACTIONS(1606), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1604), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [60995] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(808), 1,
      sym_comment,
    ACTIONS(1619), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1617), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [61036] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1627), 1,
      anon_sym_DOT,
    STATE(809), 2,
      sym_comment,
      aux_sym_emmy_identifier_repeat1,
    ACTIONS(1632), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1630), 18,
      anon_sym_COLON,
      anon_sym_PIPE,
      sym_left_paren,
      sym_emmy_ignore,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      anon_sym_ATcomment,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [61075] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(810), 1,
      sym_comment,
    ACTIONS(325), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(327), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [61112] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(811), 1,
      sym_comment,
    ACTIONS(1619), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1617), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [61153] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1638), 1,
      aux_sym_emmy_field_token1,
    STATE(905), 1,
      sym_emmy_field,
    STATE(812), 2,
      sym_comment,
      aux_sym_documentation_class_repeat1,
    ACTIONS(1636), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1634), 11,
      ts_builtin_sym_end,
      anon_sym_,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [61194] = 19,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(770), 1,
      anon_sym_RPAREN,
    STATE(192), 1,
      sym_right_paren,
    STATE(813), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [61259] = 19,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(768), 1,
      anon_sym_RPAREN,
    STATE(172), 1,
      sym_right_paren,
    STATE(814), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [61324] = 19,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(762), 1,
      anon_sym_COMMA,
    ACTIONS(764), 1,
      anon_sym_do,
    STATE(815), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [61389] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1641), 1,
      anon_sym_DOT,
    STATE(816), 1,
      sym_comment,
    STATE(865), 1,
      aux_sym_emmy_identifier_repeat1,
    ACTIONS(1645), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1643), 18,
      anon_sym_COLON,
      anon_sym_PIPE,
      sym_left_paren,
      sym_emmy_ignore,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      anon_sym_ATcomment,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [61430] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(966), 1,
      sym_left_paren,
    STATE(817), 1,
      sym_comment,
    ACTIONS(341), 5,
      sym__string_start,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
    ACTIONS(962), 6,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_EQ,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(964), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [61471] = 19,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(758), 1,
      anon_sym_RPAREN,
    STATE(102), 1,
      sym_right_paren,
    STATE(818), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [61536] = 19,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(760), 1,
      anon_sym_RPAREN,
    STATE(224), 1,
      sym_right_paren,
    STATE(819), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [61601] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(820), 1,
      sym_comment,
    ACTIONS(1649), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1647), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [61642] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(821), 1,
      sym_comment,
    ACTIONS(1649), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1647), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [61683] = 19,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(766), 1,
      anon_sym_RBRACK,
    STATE(822), 1,
      sym_comment,
    STATE(1858), 1,
      sym_right_bracket,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [61748] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(823), 1,
      sym_comment,
    ACTIONS(1653), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1651), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [61789] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(824), 1,
      sym_comment,
    ACTIONS(1606), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1604), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [61830] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(825), 1,
      sym_comment,
    ACTIONS(1606), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1604), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [61871] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(826), 1,
      sym_comment,
    ACTIONS(1653), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1651), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [61912] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(827), 1,
      sym_comment,
    ACTIONS(1606), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1604), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [61953] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(828), 1,
      sym_comment,
    ACTIONS(1653), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1651), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [61994] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(829), 1,
      sym_comment,
    ACTIONS(337), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(339), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [62031] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(830), 1,
      sym_comment,
    ACTIONS(1619), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1617), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [62072] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(831), 1,
      sym_comment,
    ACTIONS(1606), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1604), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [62113] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(832), 1,
      sym_comment,
    ACTIONS(365), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(367), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [62150] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(833), 1,
      sym_comment,
    ACTIONS(321), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(323), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [62187] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(834), 1,
      sym_comment,
    ACTIONS(345), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(347), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [62224] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(835), 1,
      sym_comment,
    ACTIONS(1653), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1651), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [62265] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(836), 1,
      sym_comment,
    ACTIONS(1657), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1655), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [62306] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(837), 1,
      sym_comment,
    ACTIONS(1657), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1655), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [62347] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1625), 1,
      aux_sym_emmy_field_token1,
    STATE(812), 1,
      aux_sym_documentation_class_repeat1,
    STATE(838), 1,
      sym_comment,
    STATE(905), 1,
      sym_emmy_field,
    ACTIONS(1661), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1659), 11,
      ts_builtin_sym_end,
      anon_sym_,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [62390] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(839), 1,
      sym_comment,
    ACTIONS(1602), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1600), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [62431] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(840), 1,
      sym_comment,
    ACTIONS(1619), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1617), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [62472] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(841), 1,
      sym_comment,
    ACTIONS(1619), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1617), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [62513] = 19,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(772), 1,
      anon_sym_RPAREN,
    STATE(291), 1,
      sym_right_paren,
    STATE(842), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [62578] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(843), 1,
      sym_comment,
    ACTIONS(1602), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1600), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [62619] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(844), 1,
      sym_comment,
    ACTIONS(1665), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1663), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [62660] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(845), 1,
      sym_comment,
    ACTIONS(1669), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1667), 14,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_EQ,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [62697] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(846), 1,
      sym_comment,
    ACTIONS(1653), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1651), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [62738] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(847), 1,
      sym_comment,
    ACTIONS(1673), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1671), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [62779] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(848), 1,
      sym_comment,
    ACTIONS(355), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(353), 12,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_EQ,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [62816] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(849), 1,
      sym_comment,
    ACTIONS(1602), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1600), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [62857] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(850), 1,
      sym_comment,
    ACTIONS(1673), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1671), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [62898] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(851), 1,
      sym_comment,
    ACTIONS(1665), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1663), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [62939] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(852), 1,
      sym_comment,
    ACTIONS(1602), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1600), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [62980] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(853), 1,
      sym_comment,
    ACTIONS(1619), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1617), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [63021] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(854), 1,
      sym_comment,
    ACTIONS(1602), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1600), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [63062] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(855), 1,
      sym_comment,
    ACTIONS(319), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(317), 12,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_EQ,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [63099] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(856), 1,
      sym_comment,
    ACTIONS(1602), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1600), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [63140] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(857), 1,
      sym_comment,
    ACTIONS(381), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(383), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [63177] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(858), 1,
      sym_comment,
    ACTIONS(385), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(387), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [63214] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(859), 1,
      sym_comment,
    ACTIONS(1602), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1600), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [63255] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(860), 1,
      sym_comment,
    ACTIONS(1653), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1651), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [63296] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(861), 1,
      sym_comment,
    ACTIONS(1653), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1651), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [63337] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(862), 1,
      sym_comment,
    ACTIONS(1602), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1600), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [63378] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(863), 1,
      sym_comment,
    ACTIONS(349), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(351), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [63415] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(864), 1,
      sym_comment,
    ACTIONS(1602), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1600), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [63456] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1641), 1,
      anon_sym_DOT,
    STATE(809), 1,
      aux_sym_emmy_identifier_repeat1,
    STATE(865), 1,
      sym_comment,
    ACTIONS(1677), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1675), 18,
      anon_sym_COLON,
      anon_sym_PIPE,
      sym_left_paren,
      sym_emmy_ignore,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      anon_sym_ATcomment,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [63497] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(866), 1,
      sym_comment,
    ACTIONS(1653), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1651), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [63538] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(867), 1,
      sym_comment,
    ACTIONS(1653), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1651), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [63579] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(55), 1,
      anon_sym_COMMA,
    STATE(788), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(868), 1,
      sym_comment,
    ACTIONS(1653), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1651), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [63620] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(869), 1,
      sym_comment,
    ACTIONS(319), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(317), 12,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_EQ,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [63657] = 19,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(756), 1,
      anon_sym_RPAREN,
    STATE(61), 1,
      sym_right_paren,
    STATE(870), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [63722] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(776), 1,
      anon_sym_then,
    STATE(871), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [63784] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1681), 1,
      anon_sym_PIPE,
    STATE(872), 1,
      sym_comment,
    STATE(883), 1,
      aux_sym__emmy_type_repeat1,
    STATE(1291), 1,
      sym__bar,
    ACTIONS(1683), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1679), 16,
      anon_sym_COLON,
      sym_left_paren,
      sym_emmy_ignore,
      anon_sym_LBRACK_RBRACK,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      anon_sym_ATcomment,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [63826] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(820), 1,
      anon_sym_RBRACK,
    STATE(873), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [63888] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(854), 1,
      anon_sym_RBRACK,
    STATE(874), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [63950] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(846), 1,
      anon_sym_then,
    STATE(875), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [64012] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(816), 1,
      anon_sym_RBRACK,
    STATE(876), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [64074] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(830), 1,
      anon_sym_RBRACK,
    STATE(877), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [64136] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(828), 1,
      anon_sym_RBRACK,
    STATE(878), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [64198] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(844), 1,
      anon_sym_do,
    STATE(879), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [64260] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(822), 1,
      anon_sym_do,
    STATE(880), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [64322] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(881), 1,
      sym_comment,
    ACTIONS(1632), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1630), 19,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_PIPE,
      sym_left_paren,
      sym_emmy_ignore,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      anon_sym_ATcomment,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [64358] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(882), 1,
      sym_comment,
    STATE(1305), 1,
      sym__bar,
    STATE(1380), 1,
      aux_sym__emmy_type_repeat1,
    ACTIONS(1687), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1685), 17,
      anon_sym_COLON,
      anon_sym_PIPE,
      sym_left_paren,
      sym_emmy_ignore,
      anon_sym_LBRACK_RBRACK,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      anon_sym_ATcomment,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [64398] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1689), 1,
      anon_sym_PIPE,
    STATE(1291), 1,
      sym__bar,
    STATE(883), 2,
      sym_comment,
      aux_sym__emmy_type_repeat1,
    ACTIONS(1687), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1685), 16,
      anon_sym_COLON,
      sym_left_paren,
      sym_emmy_ignore,
      anon_sym_LBRACK_RBRACK,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      anon_sym_ATcomment,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [64438] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(824), 1,
      anon_sym_then,
    STATE(884), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [64500] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(826), 1,
      anon_sym_COMMA,
    STATE(885), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [64562] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(840), 1,
      anon_sym_RBRACK,
    STATE(886), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [64624] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1681), 1,
      anon_sym_PIPE,
    STATE(872), 1,
      aux_sym__emmy_type_repeat1,
    STATE(887), 1,
      sym_comment,
    STATE(1291), 1,
      sym__bar,
    ACTIONS(1694), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1692), 16,
      anon_sym_COLON,
      sym_left_paren,
      sym_emmy_ignore,
      anon_sym_LBRACK_RBRACK,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      anon_sym_ATcomment,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [64666] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(850), 1,
      anon_sym_RBRACK,
    STATE(888), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [64728] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(842), 1,
      anon_sym_RBRACK,
    STATE(889), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [64790] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(852), 1,
      anon_sym_RBRACK,
    STATE(890), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [64852] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(836), 1,
      anon_sym_RBRACK,
    STATE(891), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [64914] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(848), 1,
      anon_sym_do,
    STATE(892), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [64976] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(818), 1,
      anon_sym_RBRACK,
    STATE(893), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [65038] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(834), 1,
      anon_sym_do,
    STATE(894), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [65100] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(832), 1,
      anon_sym_then,
    STATE(895), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [65162] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(838), 1,
      anon_sym_then,
    STATE(896), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [65224] = 18,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(488), 1,
      anon_sym_or,
    ACTIONS(490), 1,
      anon_sym_and,
    ACTIONS(496), 1,
      anon_sym_PIPE,
    ACTIONS(498), 1,
      anon_sym_TILDE,
    ACTIONS(500), 1,
      anon_sym_AMP,
    ACTIONS(504), 1,
      anon_sym_PLUS,
    ACTIONS(506), 1,
      anon_sym_DASH,
    ACTIONS(510), 1,
      anon_sym_SLASH,
    ACTIONS(512), 1,
      anon_sym_DOT_DOT,
    ACTIONS(514), 1,
      anon_sym_CARET,
    ACTIONS(774), 1,
      anon_sym_do,
    STATE(897), 1,
      sym_comment,
    ACTIONS(492), 2,
      anon_sym_LT,
      anon_sym_GT,
    ACTIONS(502), 2,
      anon_sym_LT_LT,
      anon_sym_GT_GT,
    ACTIONS(508), 3,
      anon_sym_STAR,
      anon_sym_SLASH_SLASH,
      anon_sym_PERCENT,
    ACTIONS(494), 4,
      anon_sym_LT_EQ,
      anon_sym_EQ_EQ,
      anon_sym_TILDE_EQ,
      anon_sym_GT_EQ,
  [65286] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(898), 1,
      sym_comment,
    ACTIONS(1698), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1696), 12,
      ts_builtin_sym_end,
      anon_sym_,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [65321] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(899), 1,
      sym_comment,
    ACTIONS(1702), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1700), 12,
      ts_builtin_sym_end,
      anon_sym_,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [65356] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(900), 1,
      sym_comment,
    ACTIONS(337), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(339), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [65391] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(901), 1,
      sym_comment,
    ACTIONS(1706), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1704), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [65426] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(902), 1,
      sym_comment,
    ACTIONS(1710), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1708), 18,
      anon_sym_COLON,
      anon_sym_PIPE,
      sym_left_paren,
      sym_emmy_ignore,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      anon_sym_ATcomment,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [65461] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(903), 1,
      sym_comment,
    ACTIONS(1714), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1712), 18,
      anon_sym_COLON,
      anon_sym_PIPE,
      sym_left_paren,
      sym_emmy_ignore,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      anon_sym_ATcomment,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [65496] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(904), 1,
      sym_comment,
    ACTIONS(1718), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1716), 18,
      anon_sym_COLON,
      anon_sym_PIPE,
      sym_left_paren,
      sym_emmy_ignore,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      anon_sym_ATcomment,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [65531] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(905), 1,
      sym_comment,
    ACTIONS(1722), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1720), 12,
      ts_builtin_sym_end,
      anon_sym_,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [65566] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(906), 1,
      sym_comment,
    ACTIONS(349), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(351), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [65601] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(907), 1,
      sym_comment,
    ACTIONS(1726), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1724), 12,
      ts_builtin_sym_end,
      anon_sym_,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [65636] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(908), 1,
      sym_comment,
    ACTIONS(385), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(387), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [65671] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(909), 1,
      sym_comment,
    ACTIONS(1730), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1728), 12,
      ts_builtin_sym_end,
      anon_sym_,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [65706] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(910), 1,
      sym_comment,
    ACTIONS(1734), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1732), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [65741] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(911), 1,
      sym_comment,
    ACTIONS(1738), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1736), 18,
      anon_sym_COLON,
      anon_sym_PIPE,
      sym_left_paren,
      sym_emmy_ignore,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      anon_sym_ATcomment,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [65776] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(912), 1,
      sym_comment,
    ACTIONS(1742), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1740), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [65811] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(913), 1,
      sym_comment,
    ACTIONS(1746), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1744), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [65846] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(914), 1,
      sym_comment,
    ACTIONS(1750), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1748), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [65881] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(915), 1,
      sym_comment,
    ACTIONS(1754), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1752), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [65916] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(916), 1,
      sym_comment,
    ACTIONS(325), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(327), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [65951] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(917), 1,
      sym_comment,
    ACTIONS(325), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(327), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [65986] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(918), 1,
      sym_comment,
    ACTIONS(381), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(383), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [66021] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(919), 1,
      sym_comment,
    ACTIONS(1758), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1756), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [66056] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(920), 1,
      sym_comment,
    ACTIONS(357), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(359), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [66091] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(921), 1,
      sym_comment,
    ACTIONS(361), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(363), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [66126] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(922), 1,
      sym_comment,
    ACTIONS(1762), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1760), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [66161] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(923), 1,
      sym_comment,
    ACTIONS(1766), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1764), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [66196] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(924), 1,
      sym_comment,
    ACTIONS(1770), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1768), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [66231] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(925), 1,
      sym_comment,
    ACTIONS(1774), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1772), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [66266] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(926), 1,
      sym_comment,
    ACTIONS(1778), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1776), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [66301] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(927), 1,
      sym_comment,
    ACTIONS(361), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(363), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [66336] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(928), 1,
      sym_comment,
    ACTIONS(1782), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1780), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [66371] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(929), 1,
      sym_comment,
    ACTIONS(361), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(363), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [66406] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(930), 1,
      sym_comment,
    ACTIONS(321), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(323), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [66441] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(931), 1,
      sym_comment,
    ACTIONS(1786), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1784), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [66476] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(932), 1,
      sym_comment,
    ACTIONS(357), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(359), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [66511] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(933), 1,
      sym_comment,
    ACTIONS(1790), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1788), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [66546] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1792), 1,
      anon_sym_SEMI,
    STATE(934), 1,
      sym_comment,
    ACTIONS(1055), 4,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(341), 5,
      sym__string_start,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
    ACTIONS(1059), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [66585] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(935), 1,
      sym_comment,
    ACTIONS(365), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(367), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [66620] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(936), 1,
      sym_comment,
    ACTIONS(377), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(379), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [66655] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1798), 1,
      anon_sym_QMARK,
    STATE(937), 1,
      sym_comment,
    ACTIONS(1796), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1794), 17,
      anon_sym_COLON,
      anon_sym_PIPE,
      sym_left_paren,
      sym_emmy_ignore,
      anon_sym_LBRACK_RBRACK,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      anon_sym_ATcomment,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [66692] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1804), 1,
      anon_sym_QMARK,
    STATE(938), 1,
      sym_comment,
    ACTIONS(1802), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1800), 17,
      anon_sym_COLON,
      anon_sym_PIPE,
      sym_left_paren,
      sym_emmy_ignore,
      anon_sym_LBRACK_RBRACK,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      anon_sym_ATcomment,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [66729] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1806), 1,
      anon_sym_COLON,
    STATE(939), 1,
      sym_comment,
    ACTIONS(1810), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1808), 17,
      anon_sym_PIPE,
      sym_left_paren,
      sym_emmy_ignore,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      anon_sym_ATcomment,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [66766] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(940), 1,
      sym_comment,
    ACTIONS(1814), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1812), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [66801] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(941), 1,
      sym_comment,
    ACTIONS(1818), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1816), 18,
      anon_sym_COLON,
      anon_sym_PIPE,
      sym_left_paren,
      sym_emmy_ignore,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      anon_sym_ATcomment,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [66836] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(942), 1,
      sym_comment,
    ACTIONS(373), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(375), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [66871] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1820), 1,
      anon_sym_COMMA,
    ACTIONS(1822), 1,
      anon_sym_EQ,
    STATE(943), 1,
      sym_comment,
    STATE(968), 1,
      aux_sym_variable_declaration_repeat1,
    ACTIONS(1257), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1261), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [66912] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(944), 1,
      sym_comment,
    ACTIONS(345), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(347), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [66947] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1057), 1,
      anon_sym_SEMI,
    STATE(945), 1,
      sym_comment,
    ACTIONS(1059), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1055), 11,
      ts_builtin_sym_end,
      anon_sym_,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [66984] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1820), 1,
      anon_sym_COMMA,
    ACTIONS(1824), 1,
      anon_sym_EQ,
    STATE(946), 1,
      sym_comment,
    STATE(956), 1,
      aux_sym_variable_declaration_repeat1,
    ACTIONS(1273), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1275), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [67025] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(947), 1,
      sym_comment,
    ACTIONS(1828), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1826), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [67060] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(948), 1,
      sym_comment,
    ACTIONS(1832), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1830), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [67095] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(949), 1,
      sym_comment,
    ACTIONS(345), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(347), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [67130] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(950), 1,
      sym_comment,
    ACTIONS(1836), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1834), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [67165] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(951), 1,
      sym_comment,
    ACTIONS(1840), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1838), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [67200] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(952), 1,
      sym_comment,
    ACTIONS(1844), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1842), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [67235] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1820), 1,
      anon_sym_COMMA,
    ACTIONS(1846), 1,
      anon_sym_EQ,
    STATE(953), 1,
      sym_comment,
    STATE(956), 1,
      aux_sym_variable_declaration_repeat1,
    ACTIONS(1594), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1596), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [67276] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(954), 1,
      sym_comment,
    ACTIONS(1850), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1848), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [67311] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(955), 1,
      sym_comment,
    ACTIONS(349), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(351), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [67346] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1852), 1,
      anon_sym_COMMA,
    STATE(956), 2,
      sym_comment,
      aux_sym_variable_declaration_repeat1,
    ACTIONS(1555), 6,
      anon_sym_SEMI,
      anon_sym_EQ,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1560), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [67383] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1855), 1,
      anon_sym_COLON,
    STATE(957), 1,
      sym_comment,
    ACTIONS(1859), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1857), 17,
      anon_sym_PIPE,
      sym_left_paren,
      sym_emmy_ignore,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      anon_sym_ATcomment,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [67420] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(958), 1,
      sym_comment,
    ACTIONS(1863), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1861), 12,
      ts_builtin_sym_end,
      anon_sym_,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [67455] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(959), 1,
      sym_comment,
    ACTIONS(321), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(323), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [67490] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(960), 1,
      sym_comment,
    ACTIONS(1867), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1865), 18,
      anon_sym_COLON,
      anon_sym_PIPE,
      sym_left_paren,
      sym_emmy_ignore,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      anon_sym_ATcomment,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [67525] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(961), 1,
      sym_comment,
    ACTIONS(347), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(345), 18,
      anon_sym_COLON,
      anon_sym_PIPE,
      sym_left_paren,
      sym_emmy_ignore,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      anon_sym_ATcomment,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [67560] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(962), 1,
      sym_comment,
    ACTIONS(1871), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1869), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [67595] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(963), 1,
      sym_comment,
    ACTIONS(1875), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1873), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [67630] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(964), 1,
      sym_comment,
    ACTIONS(1879), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1877), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [67665] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(965), 1,
      sym_comment,
    ACTIONS(385), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(387), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [67700] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(966), 1,
      sym_comment,
    ACTIONS(1883), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1881), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [67735] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(967), 1,
      sym_comment,
    ACTIONS(1887), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1885), 12,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_SEMI,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [67770] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1820), 1,
      anon_sym_COMMA,
    ACTIONS(1889), 1,
      anon_sym_EQ,
    STATE(956), 1,
      aux_sym_variable_declaration_repeat1,
    STATE(968), 1,
      sym_comment,
    ACTIONS(1359), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1361), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [67811] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1891), 1,
      anon_sym_SEMI,
    STATE(969), 1,
      sym_comment,
    ACTIONS(1055), 4,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(341), 5,
      sym__string_start,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
    ACTIONS(1059), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [67850] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(970), 1,
      sym_comment,
    ACTIONS(1895), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1893), 12,
      ts_builtin_sym_end,
      anon_sym_,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [67885] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1820), 1,
      anon_sym_COMMA,
    ACTIONS(1897), 1,
      anon_sym_EQ,
    STATE(971), 1,
      sym_comment,
    STATE(979), 1,
      aux_sym_variable_declaration_repeat1,
    ACTIONS(1572), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1574), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [67926] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(972), 1,
      sym_comment,
    ACTIONS(1901), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1899), 12,
      ts_builtin_sym_end,
      anon_sym_,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [67961] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(973), 1,
      sym_comment,
    ACTIONS(1905), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1903), 12,
      ts_builtin_sym_end,
      anon_sym_,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [67996] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(974), 1,
      sym_comment,
    ACTIONS(1909), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1907), 12,
      ts_builtin_sym_end,
      anon_sym_,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [68031] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(975), 1,
      sym_comment,
    ACTIONS(1913), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1911), 12,
      ts_builtin_sym_end,
      anon_sym_,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [68066] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(976), 1,
      sym_comment,
    ACTIONS(337), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(339), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [68101] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(977), 1,
      sym_comment,
    ACTIONS(381), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(383), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [68136] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1820), 1,
      anon_sym_COMMA,
    ACTIONS(1915), 1,
      anon_sym_EQ,
    STATE(953), 1,
      aux_sym_variable_declaration_repeat1,
    STATE(978), 1,
      sym_comment,
    ACTIONS(1537), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1539), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [68177] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1820), 1,
      anon_sym_COMMA,
    ACTIONS(1917), 1,
      anon_sym_EQ,
    STATE(956), 1,
      aux_sym_variable_declaration_repeat1,
    STATE(979), 1,
      sym_comment,
    ACTIONS(1519), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1521), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [68218] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(980), 1,
      sym_comment,
    ACTIONS(373), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(375), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [68253] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(981), 1,
      sym_comment,
    ACTIONS(377), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(379), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [68288] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(982), 1,
      sym_comment,
    ACTIONS(357), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(359), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [68323] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(983), 1,
      sym_comment,
    ACTIONS(361), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(363), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [68358] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(984), 1,
      sym_comment,
    ACTIONS(361), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(363), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [68393] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(985), 1,
      sym_comment,
    ACTIONS(361), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(363), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [68428] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(986), 1,
      sym_comment,
    ACTIONS(357), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(359), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [68463] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1820), 1,
      anon_sym_COMMA,
    ACTIONS(1919), 1,
      anon_sym_EQ,
    STATE(946), 1,
      aux_sym_variable_declaration_repeat1,
    STATE(987), 1,
      sym_comment,
    ACTIONS(1451), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1453), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [68504] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(988), 1,
      sym_comment,
    ACTIONS(351), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(349), 18,
      anon_sym_COLON,
      anon_sym_PIPE,
      sym_left_paren,
      sym_emmy_ignore,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      anon_sym_ATcomment,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [68539] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(989), 1,
      sym_comment,
    ACTIONS(1923), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1921), 18,
      anon_sym_COLON,
      anon_sym_PIPE,
      sym_left_paren,
      sym_emmy_ignore,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      anon_sym_ATcomment,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [68574] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(990), 1,
      sym_comment,
    ACTIONS(1927), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1925), 12,
      ts_builtin_sym_end,
      anon_sym_,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [68609] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(991), 1,
      sym_comment,
    ACTIONS(1931), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1929), 12,
      ts_builtin_sym_end,
      anon_sym_,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [68644] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(992), 1,
      sym_comment,
    ACTIONS(365), 10,
      sym__string_start,
      anon_sym_SEMI,
      anon_sym_DOT,
      anon_sym_COLON,
      anon_sym_LBRACK,
      anon_sym_LBRACE,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(367), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [68679] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(993), 1,
      sym_comment,
    ACTIONS(1935), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1933), 11,
      ts_builtin_sym_end,
      anon_sym_,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [68713] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(994), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [68751] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(995), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [68789] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(996), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [68827] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(997), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [68865] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(998), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [68903] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(999), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [68941] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1000), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [68979] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1001), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1671), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1673), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [69017] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1002), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1671), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1673), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [69055] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1003), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [69093] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1004), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [69131] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1005), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [69169] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1006), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [69207] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1007), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [69245] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1008), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [69283] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1009), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [69321] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1010), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [69359] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1011), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [69397] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1012), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [69435] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1013), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [69473] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1014), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [69511] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1015), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [69549] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1016), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [69587] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1017), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [69625] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1018), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [69663] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1019), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [69701] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1020), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [69739] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1021), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [69777] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1022), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [69815] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1023), 1,
      sym_comment,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [69853] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1937), 1,
      anon_sym_COMMA,
    STATE(1024), 2,
      sym_comment,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1608), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1613), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [69889] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1025), 1,
      sym_comment,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [69927] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1026), 1,
      sym_comment,
    ACTIONS(1663), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1665), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [69965] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1027), 1,
      sym_comment,
    ACTIONS(1663), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1665), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [70003] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1028), 1,
      sym_comment,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [70041] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1029), 1,
      sym_comment,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [70079] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1030), 1,
      sym_comment,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [70117] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1031), 1,
      sym_comment,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [70155] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1032), 1,
      sym_comment,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [70193] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1033), 1,
      sym_comment,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [70231] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1034), 1,
      sym_comment,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [70269] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1035), 1,
      sym_comment,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [70307] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1036), 1,
      sym_comment,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [70345] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1037), 1,
      sym_comment,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [70383] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1038), 1,
      sym_comment,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [70421] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1039), 1,
      sym_comment,
    ACTIONS(1942), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1940), 11,
      ts_builtin_sym_end,
      anon_sym_,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [70455] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1040), 1,
      sym_comment,
    ACTIONS(1946), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1944), 11,
      ts_builtin_sym_end,
      anon_sym_,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [70489] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1041), 1,
      sym_comment,
    ACTIONS(1950), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1948), 11,
      ts_builtin_sym_end,
      anon_sym_,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [70523] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1042), 1,
      sym_comment,
    ACTIONS(1954), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1952), 11,
      ts_builtin_sym_end,
      anon_sym_,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [70557] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1043), 1,
      sym_comment,
    ACTIONS(1958), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1956), 11,
      ts_builtin_sym_end,
      anon_sym_,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [70591] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1044), 1,
      sym_comment,
    ACTIONS(1962), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1960), 11,
      ts_builtin_sym_end,
      anon_sym_,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [70625] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1045), 1,
      sym_comment,
    ACTIONS(1647), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1649), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [70663] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1046), 1,
      sym_comment,
    ACTIONS(1966), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1964), 17,
      anon_sym_COLON,
      anon_sym_PIPE,
      sym_left_paren,
      sym_emmy_ignore,
      anon_sym_LBRACK_RBRACK,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      anon_sym_ATcomment,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [70697] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1047), 1,
      sym_comment,
    ACTIONS(1970), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1968), 17,
      anon_sym_COLON,
      anon_sym_PIPE,
      sym_left_paren,
      sym_emmy_ignore,
      anon_sym_LBRACK_RBRACK,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      anon_sym_ATcomment,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [70731] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1048), 1,
      sym_comment,
    ACTIONS(1974), 9,
      anon_sym_local,
      anon_sym_return,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
    ACTIONS(1972), 11,
      ts_builtin_sym_end,
      anon_sym_,
      sym_left_paren,
      aux_sym__documentation_tag_container_token1,
      aux_sym__documentation_config_container_token1,
      aux_sym__documentation_brief_container_token1,
      aux_sym_documentation_command_token1,
      sym_emmy_comment,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
  [70765] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1049), 1,
      sym_comment,
    ACTIONS(1655), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1657), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [70803] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1050), 1,
      sym_comment,
    ACTIONS(1647), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1649), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [70841] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(147), 1,
      anon_sym_COMMA,
    STATE(1024), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1051), 1,
      sym_comment,
    ACTIONS(1655), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1657), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [70879] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1052), 1,
      sym_comment,
    ACTIONS(1667), 7,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_EQ,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1669), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [70913] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1976), 1,
      anon_sym_COMMA,
    ACTIONS(1978), 1,
      anon_sym_EQ,
    STATE(1053), 1,
      sym_comment,
    STATE(1064), 1,
      aux_sym_variable_declaration_repeat1,
    ACTIONS(1519), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1521), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [70952] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1976), 1,
      anon_sym_COMMA,
    ACTIONS(1980), 1,
      anon_sym_EQ,
    STATE(1054), 1,
      sym_comment,
    STATE(1069), 1,
      aux_sym_variable_declaration_repeat1,
    ACTIONS(1451), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1453), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [70991] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1976), 1,
      anon_sym_COMMA,
    ACTIONS(1982), 1,
      anon_sym_EQ,
    STATE(1055), 1,
      sym_comment,
    STATE(1059), 1,
      aux_sym_variable_declaration_repeat1,
    ACTIONS(1537), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1539), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [71030] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1984), 1,
      anon_sym_COMMA,
    ACTIONS(1986), 1,
      anon_sym_EQ,
    STATE(1056), 1,
      sym_comment,
    STATE(1066), 1,
      aux_sym_variable_declaration_repeat1,
    ACTIONS(1519), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1521), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [71069] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1976), 1,
      anon_sym_COMMA,
    ACTIONS(1988), 1,
      anon_sym_EQ,
    STATE(1053), 1,
      aux_sym_variable_declaration_repeat1,
    STATE(1057), 1,
      sym_comment,
    ACTIONS(1572), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1574), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [71108] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1984), 1,
      anon_sym_COMMA,
    ACTIONS(1990), 1,
      anon_sym_EQ,
    STATE(1058), 1,
      sym_comment,
    STATE(1063), 1,
      aux_sym_variable_declaration_repeat1,
    ACTIONS(1451), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1453), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [71147] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1976), 1,
      anon_sym_COMMA,
    ACTIONS(1992), 1,
      anon_sym_EQ,
    STATE(1059), 1,
      sym_comment,
    STATE(1064), 1,
      aux_sym_variable_declaration_repeat1,
    ACTIONS(1594), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1596), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [71186] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1984), 1,
      anon_sym_COMMA,
    ACTIONS(1994), 1,
      anon_sym_EQ,
    STATE(1056), 1,
      aux_sym_variable_declaration_repeat1,
    STATE(1060), 1,
      sym_comment,
    ACTIONS(1572), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1574), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [71225] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1984), 1,
      anon_sym_COMMA,
    ACTIONS(1996), 1,
      anon_sym_EQ,
    STATE(1061), 1,
      sym_comment,
    STATE(1068), 1,
      aux_sym_variable_declaration_repeat1,
    ACTIONS(1537), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1539), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [71264] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1984), 1,
      anon_sym_COMMA,
    ACTIONS(1998), 1,
      anon_sym_EQ,
    STATE(1062), 1,
      sym_comment,
    STATE(1066), 1,
      aux_sym_variable_declaration_repeat1,
    ACTIONS(1359), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1361), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [71303] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1984), 1,
      anon_sym_COMMA,
    ACTIONS(2000), 1,
      anon_sym_EQ,
    STATE(1063), 1,
      sym_comment,
    STATE(1066), 1,
      aux_sym_variable_declaration_repeat1,
    ACTIONS(1273), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1275), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [71342] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2002), 1,
      anon_sym_COMMA,
    STATE(1064), 2,
      sym_comment,
      aux_sym_variable_declaration_repeat1,
    ACTIONS(1555), 6,
      anon_sym_SEMI,
      anon_sym_EQ,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1560), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [71377] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1984), 1,
      anon_sym_COMMA,
    ACTIONS(2005), 1,
      anon_sym_EQ,
    STATE(1062), 1,
      aux_sym_variable_declaration_repeat1,
    STATE(1065), 1,
      sym_comment,
    ACTIONS(1257), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1261), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [71416] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2007), 1,
      anon_sym_COMMA,
    STATE(1066), 2,
      sym_comment,
      aux_sym_variable_declaration_repeat1,
    ACTIONS(1555), 6,
      anon_sym_SEMI,
      anon_sym_EQ,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1560), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [71451] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1976), 1,
      anon_sym_COMMA,
    ACTIONS(2010), 1,
      anon_sym_EQ,
    STATE(1067), 1,
      sym_comment,
    STATE(1071), 1,
      aux_sym_variable_declaration_repeat1,
    ACTIONS(1257), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1261), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [71490] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1984), 1,
      anon_sym_COMMA,
    ACTIONS(2012), 1,
      anon_sym_EQ,
    STATE(1066), 1,
      aux_sym_variable_declaration_repeat1,
    STATE(1068), 1,
      sym_comment,
    ACTIONS(1594), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1596), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [71529] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1976), 1,
      anon_sym_COMMA,
    ACTIONS(2014), 1,
      anon_sym_EQ,
    STATE(1064), 1,
      aux_sym_variable_declaration_repeat1,
    STATE(1069), 1,
      sym_comment,
    ACTIONS(1273), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1275), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [71568] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2022), 1,
      anon_sym_LBRACK_RBRACK,
    STATE(1070), 1,
      sym_comment,
    ACTIONS(2016), 2,
      anon_sym_COLON,
      anon_sym_ATcomment,
    ACTIONS(2018), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(2020), 13,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [71605] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1976), 1,
      anon_sym_COMMA,
    ACTIONS(2024), 1,
      anon_sym_EQ,
    STATE(1064), 1,
      aux_sym_variable_declaration_repeat1,
    STATE(1071), 1,
      sym_comment,
    ACTIONS(1359), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1361), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [71644] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1072), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [71680] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1073), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [71716] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1074), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [71752] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1075), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [71788] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1076), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [71824] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1077), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [71860] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1078), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [71896] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1079), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [71932] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1080), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [71968] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1081), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [72004] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1082), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [72040] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1083), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [72076] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1084), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [72112] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1085), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [72148] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1086), 1,
      sym_comment,
    ACTIONS(1812), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1814), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [72180] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1087), 1,
      sym_comment,
    ACTIONS(1740), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1742), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [72212] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1088), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [72248] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1089), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [72284] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1090), 1,
      sym_comment,
    ACTIONS(1748), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1750), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [72316] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1091), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [72352] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1092), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [72388] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1093), 1,
      sym_comment,
    ACTIONS(1826), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1828), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [72420] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1094), 1,
      sym_comment,
    ACTIONS(1834), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1836), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [72452] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1095), 1,
      sym_comment,
    ACTIONS(1848), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1850), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [72484] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1096), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [72520] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1097), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [72556] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1098), 1,
      sym_comment,
    ACTIONS(1667), 7,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_EQ,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1669), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [72588] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1099), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1663), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1665), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [72624] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1100), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1663), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1665), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [72660] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1101), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [72696] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1102), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [72732] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1103), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [72768] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1104), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [72804] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1105), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [72840] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1106), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [72876] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1107), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [72912] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1108), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [72948] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1109), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [72984] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1110), 1,
      sym_comment,
    ACTIONS(1869), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1871), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [73016] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1111), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [73052] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1112), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1671), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1673), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [73088] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1113), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1671), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1673), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [73124] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1114), 1,
      sym_comment,
    ACTIONS(1732), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1734), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [73156] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1615), 1,
      anon_sym_SEMI,
    STATE(1115), 1,
      sym_comment,
    ACTIONS(1055), 4,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1059), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [73190] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1116), 1,
      sym_comment,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1647), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1649), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [73226] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1117), 1,
      sym_comment,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1647), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1649), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [73262] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1118), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [73298] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1119), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [73334] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1120), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [73370] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1121), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [73406] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1122), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [73442] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1123), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [73478] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1124), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [73514] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1125), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [73550] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1126), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [73586] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1127), 1,
      sym_comment,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [73622] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2026), 1,
      anon_sym_COMMA,
    STATE(1128), 2,
      sym_comment,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1608), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1613), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [73656] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1129), 1,
      sym_comment,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1655), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1657), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [73692] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1130), 1,
      sym_comment,
    ACTIONS(1655), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1657), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [73728] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1131), 1,
      sym_comment,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [73764] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1132), 1,
      sym_comment,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [73800] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1133), 1,
      sym_comment,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [73836] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1134), 1,
      sym_comment,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [73872] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1135), 1,
      sym_comment,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [73908] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1136), 1,
      sym_comment,
    ACTIONS(1873), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1875), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [73940] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1137), 1,
      sym_comment,
    ACTIONS(1655), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1657), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [73976] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1138), 1,
      sym_comment,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [74012] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1139), 1,
      sym_comment,
    ACTIONS(1830), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1832), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [74044] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1140), 1,
      sym_comment,
    ACTIONS(1842), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1844), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [74076] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1141), 1,
      sym_comment,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [74112] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1142), 1,
      sym_comment,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [74148] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1143), 1,
      sym_comment,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [74184] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1144), 1,
      sym_comment,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1651), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1653), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [74220] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1145), 1,
      sym_comment,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1655), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1657), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [74256] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1146), 1,
      sym_comment,
    ACTIONS(1647), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1649), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [74292] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2029), 1,
      anon_sym_COMMA,
    STATE(1147), 2,
      sym_comment,
      aux_sym_variable_declaration_repeat2,
    ACTIONS(1608), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1613), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [74326] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1148), 1,
      sym_comment,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [74362] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1149), 1,
      sym_comment,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [74398] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1150), 1,
      sym_comment,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [74434] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1151), 1,
      sym_comment,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [74470] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1152), 1,
      sym_comment,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [74506] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1153), 1,
      sym_comment,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [74542] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1154), 1,
      sym_comment,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [74578] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1155), 1,
      sym_comment,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [74614] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1156), 1,
      sym_comment,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [74650] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1157), 1,
      sym_comment,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [74686] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1158), 1,
      sym_comment,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [74722] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1159), 1,
      sym_comment,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [74758] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1160), 1,
      sym_comment,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [74794] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1161), 1,
      sym_comment,
    ACTIONS(1671), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1673), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [74830] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1162), 1,
      sym_comment,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [74866] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1163), 1,
      sym_comment,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [74902] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1164), 1,
      sym_comment,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [74938] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1165), 1,
      sym_comment,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [74974] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1166), 1,
      sym_comment,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [75010] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1167), 1,
      sym_comment,
    ACTIONS(1604), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1606), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [75046] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1168), 1,
      sym_comment,
    ACTIONS(1671), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1673), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [75082] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(235), 1,
      anon_sym_COMMA,
    STATE(1128), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1169), 1,
      sym_comment,
    ACTIONS(1647), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1649), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [75118] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1170), 1,
      sym_comment,
    ACTIONS(1667), 7,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_EQ,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1669), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [75150] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1171), 1,
      sym_comment,
    ACTIONS(1663), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1665), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [75186] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1172), 1,
      sym_comment,
    ACTIONS(1663), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1665), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [75222] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1173), 1,
      sym_comment,
    ACTIONS(1838), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1840), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [75254] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1174), 1,
      sym_comment,
    ACTIONS(1885), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1887), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [75286] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1175), 1,
      sym_comment,
    ACTIONS(1617), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1619), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [75322] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1176), 1,
      sym_comment,
    ACTIONS(1704), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1706), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [75354] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1177), 1,
      sym_comment,
    ACTIONS(1877), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1879), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [75386] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1178), 1,
      sym_comment,
    ACTIONS(1881), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1883), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [75418] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1179), 1,
      sym_comment,
    ACTIONS(1788), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1790), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [75450] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1180), 1,
      sym_comment,
    ACTIONS(1784), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1786), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [75482] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1181), 1,
      sym_comment,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [75518] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1182), 1,
      sym_comment,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [75554] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1183), 1,
      sym_comment,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [75590] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1184), 1,
      sym_comment,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [75626] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1185), 1,
      sym_comment,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [75662] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1186), 1,
      sym_comment,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [75698] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1187), 1,
      sym_comment,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [75734] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1188), 1,
      sym_comment,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [75770] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1189), 1,
      sym_comment,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [75806] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(193), 1,
      anon_sym_COMMA,
    STATE(1147), 1,
      aux_sym_variable_declaration_repeat2,
    STATE(1190), 1,
      sym_comment,
    ACTIONS(1600), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1602), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [75842] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1191), 1,
      sym_comment,
    ACTIONS(1744), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1746), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [75874] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1192), 1,
      sym_comment,
    ACTIONS(1752), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1754), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [75906] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1193), 1,
      sym_comment,
    ACTIONS(1756), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1758), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [75938] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1194), 1,
      sym_comment,
    ACTIONS(1760), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1762), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [75970] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1195), 1,
      sym_comment,
    ACTIONS(1764), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1766), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [76002] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1196), 1,
      sym_comment,
    ACTIONS(1768), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1770), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [76034] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1197), 1,
      sym_comment,
    ACTIONS(1772), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1774), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [76066] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1198), 1,
      sym_comment,
    ACTIONS(1776), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1778), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [76098] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1199), 1,
      sym_comment,
    ACTIONS(1780), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1782), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [76130] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1200), 1,
      sym_comment,
    ACTIONS(1944), 4,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1946), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [76161] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1201), 1,
      sym_comment,
    ACTIONS(2034), 4,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(2032), 13,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_elseif,
      anon_sym_else,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [76192] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1202), 1,
      sym_comment,
    ACTIONS(1740), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1742), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [76222] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1203), 1,
      sym_comment,
    ACTIONS(1772), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1774), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [76252] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1204), 1,
      sym_comment,
    ACTIONS(2036), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(2038), 13,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [76282] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1205), 1,
      sym_comment,
    ACTIONS(1726), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1724), 13,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [76312] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1206), 1,
      sym_comment,
    ACTIONS(1698), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1696), 13,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [76342] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1207), 1,
      sym_comment,
    ACTIONS(1744), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1746), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [76372] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1208), 1,
      sym_comment,
    ACTIONS(1842), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1844), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [76402] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1209), 1,
      sym_comment,
    ACTIONS(1830), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1832), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [76432] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1210), 1,
      sym_comment,
    ACTIONS(1873), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1875), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [76462] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1211), 1,
      sym_comment,
    ACTIONS(1752), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1754), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [76492] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1212), 1,
      sym_comment,
    ACTIONS(1748), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1750), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [76522] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1213), 1,
      sym_comment,
    ACTIONS(1756), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1758), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [76552] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1214), 1,
      sym_comment,
    ACTIONS(1740), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1742), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [76582] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1215), 1,
      sym_comment,
    ACTIONS(1812), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1814), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [76612] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1216), 1,
      sym_comment,
    ACTIONS(2040), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(2042), 13,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [76642] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1217), 1,
      sym_comment,
    ACTIONS(2044), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(2046), 13,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [76672] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1218), 1,
      sym_comment,
    ACTIONS(1760), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1762), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [76702] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1219), 1,
      sym_comment,
    ACTIONS(2048), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(2050), 13,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [76732] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1220), 1,
      sym_comment,
    ACTIONS(1732), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1734), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [76762] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1891), 1,
      anon_sym_SEMI,
    STATE(1221), 1,
      sym_comment,
    ACTIONS(1055), 4,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1059), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [76794] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1222), 1,
      sym_comment,
    ACTIONS(1764), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1766), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [76824] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1223), 1,
      sym_comment,
    ACTIONS(1784), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1786), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [76854] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1224), 1,
      sym_comment,
    ACTIONS(1838), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1840), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [76884] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1225), 1,
      sym_comment,
    ACTIONS(1885), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1887), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [76914] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1226), 1,
      sym_comment,
    ACTIONS(1704), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1706), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [76944] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1227), 1,
      sym_comment,
    ACTIONS(1877), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1879), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [76974] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1228), 1,
      sym_comment,
    ACTIONS(1881), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1883), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [77004] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1792), 1,
      anon_sym_SEMI,
    STATE(1229), 1,
      sym_comment,
    ACTIONS(1055), 4,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1059), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [77036] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1230), 1,
      sym_comment,
    ACTIONS(1788), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1790), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [77066] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1231), 1,
      sym_comment,
    ACTIONS(1788), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1790), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [77096] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1232), 1,
      sym_comment,
    ACTIONS(1768), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1770), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [77126] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1233), 1,
      sym_comment,
    ACTIONS(1826), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1828), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [77156] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1234), 1,
      sym_comment,
    ACTIONS(1834), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1836), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [77186] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1235), 1,
      sym_comment,
    ACTIONS(1848), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1850), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [77216] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1236), 1,
      sym_comment,
    ACTIONS(1784), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1786), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [77246] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1237), 1,
      sym_comment,
    ACTIONS(1863), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1861), 13,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [77276] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1238), 1,
      sym_comment,
    ACTIONS(1730), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1728), 13,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [77306] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1239), 1,
      sym_comment,
    ACTIONS(2052), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(2054), 13,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [77336] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1240), 1,
      sym_comment,
    ACTIONS(1901), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1899), 13,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [77366] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1241), 1,
      sym_comment,
    ACTIONS(1744), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1746), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [77396] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1242), 1,
      sym_comment,
    ACTIONS(1905), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1903), 13,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [77426] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1243), 1,
      sym_comment,
    ACTIONS(1776), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1778), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [77456] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1244), 1,
      sym_comment,
    ACTIONS(1780), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1782), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [77486] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1245), 1,
      sym_comment,
    ACTIONS(2056), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(2058), 13,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [77516] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1246), 1,
      sym_comment,
    ACTIONS(1909), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1907), 13,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [77546] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1247), 1,
      sym_comment,
    ACTIONS(1752), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1754), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [77576] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1248), 1,
      sym_comment,
    ACTIONS(1848), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1850), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [77606] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1249), 1,
      sym_comment,
    ACTIONS(1834), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1836), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [77636] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1250), 1,
      sym_comment,
    ACTIONS(1826), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1828), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [77666] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1251), 1,
      sym_comment,
    ACTIONS(1756), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1758), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [77696] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1252), 1,
      sym_comment,
    ACTIONS(1732), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1734), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [77726] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1253), 1,
      sym_comment,
    ACTIONS(1913), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1911), 13,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [77756] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1254), 1,
      sym_comment,
    ACTIONS(1760), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1762), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [77786] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1255), 1,
      sym_comment,
    ACTIONS(1764), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1766), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [77816] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1256), 1,
      sym_comment,
    ACTIONS(1869), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1871), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [77846] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1257), 1,
      sym_comment,
    ACTIONS(1772), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1774), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [77876] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1258), 1,
      sym_comment,
    ACTIONS(2060), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(2062), 13,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [77906] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1259), 1,
      sym_comment,
    ACTIONS(1776), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1778), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [77936] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1260), 1,
      sym_comment,
    ACTIONS(1780), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1782), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [77966] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1261), 1,
      sym_comment,
    ACTIONS(1927), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1925), 13,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [77996] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1262), 1,
      sym_comment,
    ACTIONS(1881), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1883), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [78026] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1263), 1,
      sym_comment,
    ACTIONS(1877), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1879), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [78056] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1264), 1,
      sym_comment,
    ACTIONS(2064), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(2066), 13,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [78086] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1265), 1,
      sym_comment,
    ACTIONS(1704), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1706), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [78116] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1266), 1,
      sym_comment,
    ACTIONS(1885), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1887), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [78146] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1267), 1,
      sym_comment,
    ACTIONS(1869), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1871), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [78176] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1268), 1,
      sym_comment,
    ACTIONS(2068), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(2070), 13,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [78206] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1269), 1,
      sym_comment,
    ACTIONS(2072), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(2074), 13,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [78236] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1270), 1,
      sym_comment,
    ACTIONS(1873), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1875), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [78266] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1271), 1,
      sym_comment,
    ACTIONS(1830), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1832), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [78296] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1272), 1,
      sym_comment,
    ACTIONS(1812), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1814), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [78326] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1273), 1,
      sym_comment,
    ACTIONS(1842), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1844), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [78356] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1274), 1,
      sym_comment,
    ACTIONS(1768), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1770), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [78386] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1275), 1,
      sym_comment,
    ACTIONS(1838), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1840), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [78416] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1276), 1,
      sym_comment,
    ACTIONS(1748), 5,
      anon_sym_SEMI,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1750), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [78446] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1277), 1,
      sym_comment,
    ACTIONS(1931), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1929), 13,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [78476] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1278), 1,
      sym_comment,
    ACTIONS(1702), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1700), 13,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [78506] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1279), 1,
      sym_comment,
    ACTIONS(1895), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(1893), 13,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [78536] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1280), 1,
      sym_comment,
    ACTIONS(2076), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(2078), 13,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [78566] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1281), 1,
      sym_comment,
    ACTIONS(2080), 3,
      anon_sym_local,
      sym_function_start,
      sym__identifier,
    ACTIONS(2082), 13,
      sym_left_paren,
      sym_emmy_ignore,
      aux_sym_emmy_class_token1,
      aux_sym_emmy_parameter_token1,
      aux_sym_emmy_field_token1,
      aux_sym_emmy_return_token1,
      aux_sym__emmy_eval_container_token1,
      aux_sym_emmy_typedecl_token1,
      aux_sym_emmy_note_token1,
      aux_sym_emmy_see_token1,
      aux_sym_emmy_todo_token1,
      aux_sym_emmy_usage_token1,
      aux_sym_emmy_varargs_token1,
  [78596] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1282), 1,
      sym_comment,
    ACTIONS(325), 4,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(327), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [78625] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1283), 1,
      sym_comment,
    ACTIONS(1944), 4,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1946), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [78654] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1284), 1,
      sym_comment,
    ACTIONS(2034), 4,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(2032), 11,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_until,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [78683] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1285), 1,
      sym_comment,
    ACTIONS(2034), 4,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(2032), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [78712] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    STATE(1286), 1,
      sym_comment,
    ACTIONS(1944), 4,
      sym_left_paren,
      sym_emmy_comment,
      aux_sym_emmy_return_token1,
      aux_sym_emmy_typedecl_token1,
    ACTIONS(1946), 11,
      anon_sym_end,
      anon_sym_local,
      anon_sym_return,
      sym_break_statement,
      anon_sym_do,
      anon_sym_while,
      anon_sym_repeat,
      anon_sym_if,
      anon_sym_for,
      sym_function_start,
      sym__identifier,
  [78741] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2084), 1,
      anon_sym_LBRACE,
    ACTIONS(2086), 1,
      sym__identifier,
    ACTIONS(2088), 1,
      anon_sym_table_LT,
    ACTIONS(2092), 1,
      sym__string_start,
    STATE(1287), 1,
      sym_comment,
    STATE(1370), 1,
      sym_emmy_type,
    STATE(1421), 1,
      sym_string,
    STATE(1534), 1,
      sym__emmy_type,
    ACTIONS(2090), 2,
      anon_sym_function_LPAREN,
      anon_sym_fun_LPAREN,
    STATE(1420), 5,
      sym_emmy_type_array,
      sym_emmy_type_key_value,
      sym_emmy_type_dictionary,
      sym_emmy_function,
      sym_emmy_identifier,
  [78783] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2084), 1,
      anon_sym_LBRACE,
    ACTIONS(2086), 1,
      sym__identifier,
    ACTIONS(2088), 1,
      anon_sym_table_LT,
    ACTIONS(2092), 1,
      sym__string_start,
    STATE(1288), 1,
      sym_comment,
    STATE(1370), 1,
      sym_emmy_type,
    STATE(1421), 1,
      sym_string,
    STATE(1496), 1,
      sym__emmy_type,
    ACTIONS(2090), 2,
      anon_sym_function_LPAREN,
      anon_sym_fun_LPAREN,
    STATE(1420), 5,
      sym_emmy_type_array,
      sym_emmy_type_key_value,
      sym_emmy_type_dictionary,
      sym_emmy_function,
      sym_emmy_identifier,
  [78825] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(2094), 1,
      anon_sym_LBRACE,
    ACTIONS(2096), 1,
      sym__identifier,
    ACTIONS(2098), 1,
      anon_sym_table_LT,
    STATE(1289), 1,
      sym_comment,
    STATE(1365), 1,
      sym_string,
    STATE(1368), 1,
      sym_emmy_type,
    STATE(1574), 1,
      sym__emmy_type,
    ACTIONS(2100), 2,
      anon_sym_function_LPAREN,
      anon_sym_fun_LPAREN,
    STATE(1367), 5,
      sym_emmy_type_array,
      sym_emmy_type_key_value,
      sym_emmy_type_dictionary,
      sym_emmy_function,
      sym_emmy_identifier,
  [78867] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(2094), 1,
      anon_sym_LBRACE,
    ACTIONS(2096), 1,
      sym__identifier,
    ACTIONS(2098), 1,
      anon_sym_table_LT,
    STATE(1290), 1,
      sym_comment,
    STATE(1365), 1,
      sym_string,
    STATE(1368), 1,
      sym_emmy_type,
    STATE(1579), 1,
      sym__emmy_type,
    ACTIONS(2100), 2,
      anon_sym_function_LPAREN,
      anon_sym_fun_LPAREN,
    STATE(1367), 5,
      sym_emmy_type_array,
      sym_emmy_type_key_value,
      sym_emmy_type_dictionary,
      sym_emmy_function,
      sym_emmy_identifier,
  [78909] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2102), 1,
      anon_sym_LBRACE,
    ACTIONS(2104), 1,
      sym__identifier,
    ACTIONS(2106), 1,
      anon_sym_table_LT,
    ACTIONS(2110), 1,
      sym__string_start,
    STATE(882), 1,
      sym_emmy_type,
    STATE(937), 1,
      sym_string,
    STATE(1291), 1,
      sym_comment,
    STATE(1826), 1,
      sym__emmy_type,
    ACTIONS(2108), 2,
      anon_sym_function_LPAREN,
      anon_sym_fun_LPAREN,
    STATE(938), 5,
      sym_emmy_type_array,
      sym_emmy_type_key_value,
      sym_emmy_type_dictionary,
      sym_emmy_function,
      sym_emmy_identifier,
  [78951] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(2094), 1,
      anon_sym_LBRACE,
    ACTIONS(2096), 1,
      sym__identifier,
    ACTIONS(2098), 1,
      anon_sym_table_LT,
    STATE(1292), 1,
      sym_comment,
    STATE(1365), 1,
      sym_string,
    STATE(1368), 1,
      sym_emmy_type,
    STATE(1612), 1,
      sym__emmy_type,
    ACTIONS(2100), 2,
      anon_sym_function_LPAREN,
      anon_sym_fun_LPAREN,
    STATE(1367), 5,
      sym_emmy_type_array,
      sym_emmy_type_key_value,
      sym_emmy_type_dictionary,
      sym_emmy_function,
      sym_emmy_identifier,
  [78993] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(2094), 1,
      anon_sym_LBRACE,
    ACTIONS(2096), 1,
      sym__identifier,
    ACTIONS(2098), 1,
      anon_sym_table_LT,
    STATE(1293), 1,
      sym_comment,
    STATE(1365), 1,
      sym_string,
    STATE(1368), 1,
      sym_emmy_type,
    STATE(1529), 1,
      sym__emmy_type,
    ACTIONS(2100), 2,
      anon_sym_function_LPAREN,
      anon_sym_fun_LPAREN,
    STATE(1367), 5,
      sym_emmy_type_array,
      sym_emmy_type_key_value,
      sym_emmy_type_dictionary,
      sym_emmy_function,
      sym_emmy_identifier,
  [79035] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2084), 1,
      anon_sym_LBRACE,
    ACTIONS(2086), 1,
      sym__identifier,
    ACTIONS(2088), 1,
      anon_sym_table_LT,
    ACTIONS(2092), 1,
      sym__string_start,
    STATE(1294), 1,
      sym_comment,
    STATE(1370), 1,
      sym_emmy_type,
    STATE(1421), 1,
      sym_string,
    STATE(1532), 1,
      sym__emmy_type,
    ACTIONS(2090), 2,
      anon_sym_function_LPAREN,
      anon_sym_fun_LPAREN,
    STATE(1420), 5,
      sym_emmy_type_array,
      sym_emmy_type_key_value,
      sym_emmy_type_dictionary,
      sym_emmy_function,
      sym_emmy_identifier,
  [79077] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2094), 1,
      anon_sym_LBRACE,
    ACTIONS(2096), 1,
      sym__identifier,
    ACTIONS(2098), 1,
      anon_sym_table_LT,
    ACTIONS(2112), 1,
      sym__string_start,
    STATE(1295), 1,
      sym_comment,
    STATE(1365), 1,
      sym_string,
    STATE(1434), 1,
      sym_emmy_type,
    STATE(1611), 1,
      sym__emmy_type,
    ACTIONS(2100), 2,
      anon_sym_function_LPAREN,
      anon_sym_fun_LPAREN,
    STATE(1367), 5,
      sym_emmy_type_array,
      sym_emmy_type_key_value,
      sym_emmy_type_dictionary,
      sym_emmy_function,
      sym_emmy_identifier,
  [79119] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2094), 1,
      anon_sym_LBRACE,
    ACTIONS(2096), 1,
      sym__identifier,
    ACTIONS(2098), 1,
      anon_sym_table_LT,
    ACTIONS(2112), 1,
      sym__string_start,
    STATE(1296), 1,
      sym_comment,
    STATE(1345), 1,
      sym_emmy_type,
    STATE(1365), 1,
      sym_string,
    STATE(1733), 1,
      sym__emmy_type,
    ACTIONS(2100), 2,
      anon_sym_function_LPAREN,
      anon_sym_fun_LPAREN,
    STATE(1367), 5,
      sym_emmy_type_array,
      sym_emmy_type_key_value,
      sym_emmy_type_dictionary,
      sym_emmy_function,
      sym_emmy_identifier,
  [79161] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2084), 1,
      anon_sym_LBRACE,
    ACTIONS(2086), 1,
      sym__identifier,
    ACTIONS(2088), 1,
      anon_sym_table_LT,
    ACTIONS(2092), 1,
      sym__string_start,
    STATE(1297), 1,
      sym_comment,
    STATE(1377), 1,
      sym_emmy_type,
    STATE(1421), 1,
      sym_string,
    STATE(1803), 1,
      sym__emmy_type,
    ACTIONS(2090), 2,
      anon_sym_function_LPAREN,
      anon_sym_fun_LPAREN,
    STATE(1420), 5,
      sym_emmy_type_array,
      sym_emmy_type_key_value,
      sym_emmy_type_dictionary,
      sym_emmy_function,
      sym_emmy_identifier,
  [79203] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2084), 1,
      anon_sym_LBRACE,
    ACTIONS(2086), 1,
      sym__identifier,
    ACTIONS(2088), 1,
      anon_sym_table_LT,
    ACTIONS(2092), 1,
      sym__string_start,
    STATE(1298), 1,
      sym_comment,
    STATE(1370), 1,
      sym_emmy_type,
    STATE(1421), 1,
      sym_string,
    STATE(1502), 1,
      sym__emmy_type,
    ACTIONS(2090), 2,
      anon_sym_function_LPAREN,
      anon_sym_fun_LPAREN,
    STATE(1420), 5,
      sym_emmy_type_array,
      sym_emmy_type_key_value,
      sym_emmy_type_dictionary,
      sym_emmy_function,
      sym_emmy_identifier,
  [79245] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2084), 1,
      anon_sym_LBRACE,
    ACTIONS(2086), 1,
      sym__identifier,
    ACTIONS(2088), 1,
      anon_sym_table_LT,
    ACTIONS(2092), 1,
      sym__string_start,
    STATE(1299), 1,
      sym_comment,
    STATE(1370), 1,
      sym_emmy_type,
    STATE(1421), 1,
      sym_string,
    STATE(1449), 1,
      sym__emmy_type,
    ACTIONS(2090), 2,
      anon_sym_function_LPAREN,
      anon_sym_fun_LPAREN,
    STATE(1420), 5,
      sym_emmy_type_array,
      sym_emmy_type_key_value,
      sym_emmy_type_dictionary,
      sym_emmy_function,
      sym_emmy_identifier,
  [79287] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2084), 1,
      anon_sym_LBRACE,
    ACTIONS(2086), 1,
      sym__identifier,
    ACTIONS(2088), 1,
      anon_sym_table_LT,
    ACTIONS(2092), 1,
      sym__string_start,
    STATE(1300), 1,
      sym_comment,
    STATE(1389), 1,
      sym_emmy_type,
    STATE(1421), 1,
      sym_string,
    STATE(1506), 1,
      sym__emmy_type,
    ACTIONS(2114), 2,
      anon_sym_function_LPAREN,
      anon_sym_fun_LPAREN,
    STATE(1420), 5,
      sym_emmy_type_array,
      sym_emmy_type_key_value,
      sym_emmy_type_dictionary,
      sym_emmy_function,
      sym_emmy_identifier,
  [79329] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2084), 1,
      anon_sym_LBRACE,
    ACTIONS(2086), 1,
      sym__identifier,
    ACTIONS(2088), 1,
      anon_sym_table_LT,
    ACTIONS(2092), 1,
      sym__string_start,
    STATE(1301), 1,
      sym_comment,
    STATE(1377), 1,
      sym_emmy_type,
    STATE(1421), 1,
      sym_string,
    STATE(1803), 1,
      sym__emmy_type,
    ACTIONS(2114), 2,
      anon_sym_function_LPAREN,
      anon_sym_fun_LPAREN,
    STATE(1420), 5,
      sym_emmy_type_array,
      sym_emmy_type_key_value,
      sym_emmy_type_dictionary,
      sym_emmy_function,
      sym_emmy_identifier,
  [79371] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2102), 1,
      anon_sym_LBRACE,
    ACTIONS(2104), 1,
      sym__identifier,
    ACTIONS(2106), 1,
      anon_sym_table_LT,
    ACTIONS(2110), 1,
      sym__string_start,
    STATE(887), 1,
      sym_emmy_type,
    STATE(937), 1,
      sym_string,
    STATE(1070), 1,
      sym__emmy_type,
    STATE(1302), 1,
      sym_comment,
    ACTIONS(2108), 2,
      anon_sym_function_LPAREN,
      anon_sym_fun_LPAREN,
    STATE(938), 5,
      sym_emmy_type_array,
      sym_emmy_type_key_value,
      sym_emmy_type_dictionary,
      sym_emmy_function,
      sym_emmy_identifier,
  [79413] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(2094), 1,
      anon_sym_LBRACE,
    ACTIONS(2096), 1,
      sym__identifier,
    ACTIONS(2098), 1,
      anon_sym_table_LT,
    STATE(1303), 1,
      sym_comment,
    STATE(1365), 1,
      sym_string,
    STATE(1368), 1,
      sym_emmy_type,
    STATE(1497), 1,
      sym__emmy_type,
    ACTIONS(2100), 2,
      anon_sym_function_LPAREN,
      anon_sym_fun_LPAREN,
    STATE(1367), 5,
      sym_emmy_type_array,
      sym_emmy_type_key_value,
      sym_emmy_type_dictionary,
      sym_emmy_function,
      sym_emmy_identifier,
  [79455] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2084), 1,
      anon_sym_LBRACE,
    ACTIONS(2086), 1,
      sym__identifier,
    ACTIONS(2088), 1,
      anon_sym_table_LT,
    ACTIONS(2092), 1,
      sym__string_start,
    STATE(1304), 1,
      sym_comment,
    STATE(1389), 1,
      sym_emmy_type,
    STATE(1421), 1,
      sym_string,
    STATE(1511), 1,
      sym__emmy_type,
    ACTIONS(2114), 2,
      anon_sym_function_LPAREN,
      anon_sym_fun_LPAREN,
    STATE(1420), 5,
      sym_emmy_type_array,
      sym_emmy_type_key_value,
      sym_emmy_type_dictionary,
      sym_emmy_function,
      sym_emmy_identifier,
  [79497] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(2094), 1,
      anon_sym_LBRACE,
    ACTIONS(2096), 1,
      sym__identifier,
    ACTIONS(2098), 1,
      anon_sym_table_LT,
    STATE(1305), 1,
      sym_comment,
    STATE(1345), 1,
      sym_emmy_type,
    STATE(1365), 1,
      sym_string,
    STATE(1733), 1,
      sym__emmy_type,
    ACTIONS(2100), 2,
      anon_sym_function_LPAREN,
      anon_sym_fun_LPAREN,
    STATE(1367), 5,
      sym_emmy_type_array,
      sym_emmy_type_key_value,
      sym_emmy_type_dictionary,
      sym_emmy_function,
      sym_emmy_identifier,
  [79539] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2084), 1,
      anon_sym_LBRACE,
    ACTIONS(2086), 1,
      sym__identifier,
    ACTIONS(2088), 1,
      anon_sym_table_LT,
    ACTIONS(2092), 1,
      sym__string_start,
    STATE(1306), 1,
      sym_comment,
    STATE(1370), 1,
      sym_emmy_type,
    STATE(1421), 1,
      sym_string,
    STATE(1509), 1,
      sym__emmy_type,
    ACTIONS(2090), 2,
      anon_sym_function_LPAREN,
      anon_sym_fun_LPAREN,
    STATE(1420), 5,
      sym_emmy_type_array,
      sym_emmy_type_key_value,
      sym_emmy_type_dictionary,
      sym_emmy_function,
      sym_emmy_identifier,
  [79581] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2094), 1,
      anon_sym_LBRACE,
    ACTIONS(2096), 1,
      sym__identifier,
    ACTIONS(2098), 1,
      anon_sym_table_LT,
    ACTIONS(2112), 1,
      sym__string_start,
    STATE(1307), 1,
      sym_comment,
    STATE(1365), 1,
      sym_string,
    STATE(1434), 1,
      sym_emmy_type,
    STATE(1630), 1,
      sym__emmy_type,
    ACTIONS(2100), 2,
      anon_sym_function_LPAREN,
      anon_sym_fun_LPAREN,
    STATE(1367), 5,
      sym_emmy_type_array,
      sym_emmy_type_key_value,
      sym_emmy_type_dictionary,
      sym_emmy_function,
      sym_emmy_identifier,
  [79623] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2094), 1,
      anon_sym_LBRACE,
    ACTIONS(2096), 1,
      sym__identifier,
    ACTIONS(2098), 1,
      anon_sym_table_LT,
    ACTIONS(2112), 1,
      sym__string_start,
    STATE(1308), 1,
      sym_comment,
    STATE(1365), 1,
      sym_string,
    STATE(1434), 1,
      sym_emmy_type,
    STATE(1620), 1,
      sym__emmy_type,
    ACTIONS(2100), 2,
      anon_sym_function_LPAREN,
      anon_sym_fun_LPAREN,
    STATE(1367), 5,
      sym_emmy_type_array,
      sym_emmy_type_key_value,
      sym_emmy_type_dictionary,
      sym_emmy_function,
      sym_emmy_identifier,
  [79665] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2084), 1,
      anon_sym_LBRACE,
    ACTIONS(2086), 1,
      sym__identifier,
    ACTIONS(2088), 1,
      anon_sym_table_LT,
    ACTIONS(2092), 1,
      sym__string_start,
    STATE(1309), 1,
      sym_comment,
    STATE(1370), 1,
      sym_emmy_type,
    STATE(1421), 1,
      sym_string,
    STATE(1490), 1,
      sym__emmy_type,
    ACTIONS(2090), 2,
      anon_sym_function_LPAREN,
      anon_sym_fun_LPAREN,
    STATE(1420), 5,
      sym_emmy_type_array,
      sym_emmy_type_key_value,
      sym_emmy_type_dictionary,
      sym_emmy_function,
      sym_emmy_identifier,
  [79707] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2084), 1,
      anon_sym_LBRACE,
    ACTIONS(2086), 1,
      sym__identifier,
    ACTIONS(2088), 1,
      anon_sym_table_LT,
    ACTIONS(2092), 1,
      sym__string_start,
    STATE(1310), 1,
      sym_comment,
    STATE(1370), 1,
      sym_emmy_type,
    STATE(1421), 1,
      sym_string,
    STATE(1480), 1,
      sym__emmy_type,
    ACTIONS(2090), 2,
      anon_sym_function_LPAREN,
      anon_sym_fun_LPAREN,
    STATE(1420), 5,
      sym_emmy_type_array,
      sym_emmy_type_key_value,
      sym_emmy_type_dictionary,
      sym_emmy_function,
      sym_emmy_identifier,
  [79749] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2084), 1,
      anon_sym_LBRACE,
    ACTIONS(2086), 1,
      sym__identifier,
    ACTIONS(2088), 1,
      anon_sym_table_LT,
    ACTIONS(2092), 1,
      sym__string_start,
    STATE(1311), 1,
      sym_comment,
    STATE(1370), 1,
      sym_emmy_type,
    STATE(1421), 1,
      sym_string,
    STATE(1478), 1,
      sym__emmy_type,
    ACTIONS(2090), 2,
      anon_sym_function_LPAREN,
      anon_sym_fun_LPAREN,
    STATE(1420), 5,
      sym_emmy_type_array,
      sym_emmy_type_key_value,
      sym_emmy_type_dictionary,
      sym_emmy_function,
      sym_emmy_identifier,
  [79791] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2084), 1,
      anon_sym_LBRACE,
    ACTIONS(2086), 1,
      sym__identifier,
    ACTIONS(2088), 1,
      anon_sym_table_LT,
    ACTIONS(2092), 1,
      sym__string_start,
    STATE(1312), 1,
      sym_comment,
    STATE(1370), 1,
      sym_emmy_type,
    STATE(1421), 1,
      sym_string,
    STATE(1547), 1,
      sym__emmy_type,
    ACTIONS(2090), 2,
      anon_sym_function_LPAREN,
      anon_sym_fun_LPAREN,
    STATE(1420), 5,
      sym_emmy_type_array,
      sym_emmy_type_key_value,
      sym_emmy_type_dictionary,
      sym_emmy_function,
      sym_emmy_identifier,
  [79833] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(1313), 1,
      sym_comment,
    ACTIONS(2116), 7,
      sym_nil,
      anon_sym_true,
      anon_sym_false,
      anon_sym_DASH,
      anon_sym_not,
      sym_function_start,
      sym__identifier,
    ACTIONS(2118), 7,
      sym__string_start,
      sym_number,
      sym_ellipsis,
      anon_sym_TILDE,
      anon_sym_POUND,
      anon_sym_LBRACE,
      sym_left_paren,
  [79861] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(924), 1,
      sym__string_start,
    ACTIONS(2094), 1,
      anon_sym_LBRACE,
    ACTIONS(2096), 1,
      sym__identifier,
    ACTIONS(2098), 1,
      anon_sym_table_LT,
    STATE(1314), 1,
      sym_comment,
    STATE(1365), 1,
      sym_string,
    STATE(1368), 1,
      sym_emmy_type,
    STATE(1559), 1,
      sym__emmy_type,
    ACTIONS(2100), 2,
      anon_sym_function_LPAREN,
      anon_sym_fun_LPAREN,
    STATE(1367), 5,
      sym_emmy_type_array,
      sym_emmy_type_key_value,
      sym_emmy_type_dictionary,
      sym_emmy_function,
      sym_emmy_identifier,
  [79903] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2084), 1,
      anon_sym_LBRACE,
    ACTIONS(2086), 1,
      sym__identifier,
    ACTIONS(2088), 1,
      anon_sym_table_LT,
    ACTIONS(2092), 1,
      sym__string_start,
    STATE(1315), 1,
      sym_comment,
    STATE(1370), 1,
      sym_emmy_type,
    STATE(1421), 1,
      sym_string,
    STATE(1456), 1,
      sym__emmy_type,
    ACTIONS(2090), 2,
      anon_sym_function_LPAREN,
      anon_sym_fun_LPAREN,
    STATE(1420), 5,
      sym_emmy_type_array,
      sym_emmy_type_key_value,
      sym_emmy_type_dictionary,
      sym_emmy_function,
      sym_emmy_identifier,
  [79945] = 16,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2120), 1,
      anon_sym_DOT,
    ACTIONS(2122), 1,
      anon_sym_COLON,
    ACTIONS(2124), 1,
      anon_sym_LBRACK,
    ACTIONS(2126), 1,
      anon_sym_LBRACE,
    ACTIONS(2128), 1,
      sym_left_paren,
    ACTIONS(2130), 1,
      sym__string_start,
    STATE(920), 1,
      sym__self_call,
    STATE(921), 1,
      sym__table_call,
    STATE(927), 1,
      sym__string_call,
    STATE(929), 1,
      sym__parentheses_call,
    STATE(932), 1,
      sym__args,
    STATE(936), 1,
      sym_tableconstructor,
    STATE(942), 1,
      sym_string,
    STATE(1316), 1,
      sym_comment,
  [79994] = 16,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(2132), 1,
      anon_sym_DOT,
    ACTIONS(2134), 1,
      anon_sym_LBRACK,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(1317), 1,
      sym_comment,
  [80043] = 16,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(2136), 1,
      anon_sym_DOT,
    ACTIONS(2138), 1,
      anon_sym_LBRACK,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(1318), 1,
      sym_comment,
  [80092] = 16,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(2120), 1,
      anon_sym_DOT,
    ACTIONS(2124), 1,
      anon_sym_LBRACK,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(1319), 1,
      sym_comment,
  [80141] = 16,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2140), 1,
      anon_sym_DOT,
    ACTIONS(2142), 1,
      anon_sym_COLON,
    ACTIONS(2144), 1,
      anon_sym_LBRACK,
    ACTIONS(2146), 1,
      anon_sym_LBRACE,
    ACTIONS(2148), 1,
      sym_left_paren,
    ACTIONS(2150), 1,
      sym__string_start,
    STATE(591), 1,
      sym_tableconstructor,
    STATE(599), 1,
      sym_string,
    STATE(600), 1,
      sym__args,
    STATE(601), 1,
      sym__parentheses_call,
    STATE(602), 1,
      sym__string_call,
    STATE(603), 1,
      sym__table_call,
    STATE(604), 1,
      sym__self_call,
    STATE(1320), 1,
      sym_comment,
  [80190] = 16,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(391), 1,
      anon_sym_COLON,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    ACTIONS(2140), 1,
      anon_sym_DOT,
    ACTIONS(2144), 1,
      anon_sym_LBRACK,
    STATE(267), 1,
      sym__self_call,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(301), 1,
      sym__args,
    STATE(1321), 1,
      sym_comment,
  [80239] = 16,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2136), 1,
      anon_sym_DOT,
    ACTIONS(2138), 1,
      anon_sym_LBRACK,
    ACTIONS(2152), 1,
      anon_sym_COLON,
    ACTIONS(2154), 1,
      anon_sym_LBRACE,
    ACTIONS(2156), 1,
      sym_left_paren,
    ACTIONS(2158), 1,
      sym__string_start,
    STATE(980), 1,
      sym_string,
    STATE(981), 1,
      sym_tableconstructor,
    STATE(982), 1,
      sym__args,
    STATE(983), 1,
      sym__parentheses_call,
    STATE(984), 1,
      sym__string_call,
    STATE(985), 1,
      sym__table_call,
    STATE(986), 1,
      sym__self_call,
    STATE(1322), 1,
      sym_comment,
  [80288] = 16,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2132), 1,
      anon_sym_DOT,
    ACTIONS(2134), 1,
      anon_sym_LBRACK,
    ACTIONS(2160), 1,
      anon_sym_COLON,
    ACTIONS(2162), 1,
      anon_sym_LBRACE,
    ACTIONS(2164), 1,
      sym_left_paren,
    ACTIONS(2166), 1,
      sym__string_start,
    STATE(781), 1,
      sym_string,
    STATE(786), 1,
      sym__self_call,
    STATE(787), 1,
      sym__table_call,
    STATE(790), 1,
      sym__string_call,
    STATE(791), 1,
      sym__parentheses_call,
    STATE(796), 1,
      sym__args,
    STATE(804), 1,
      sym_tableconstructor,
    STATE(1323), 1,
      sym_comment,
  [80337] = 13,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(548), 1,
      sym__identifier,
    ACTIONS(2168), 1,
      anon_sym_local,
    ACTIONS(2170), 1,
      sym_function_start,
    STATE(276), 1,
      sym_function_call,
    STATE(614), 1,
      sym_identifier,
    STATE(616), 1,
      sym__var,
    STATE(987), 1,
      sym_variable_declarator,
    STATE(1317), 1,
      sym__prefix_exp,
    STATE(1324), 1,
      sym_comment,
    STATE(1359), 1,
      sym_local,
  [80377] = 13,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(674), 1,
      sym__identifier,
    ACTIONS(2172), 1,
      anon_sym_local,
    ACTIONS(2174), 1,
      sym_function_start,
    STATE(276), 1,
      sym_function_call,
    STATE(789), 1,
      sym_identifier,
    STATE(798), 1,
      sym__var,
    STATE(1054), 1,
      sym_variable_declarator,
    STATE(1318), 1,
      sym__prefix_exp,
    STATE(1325), 1,
      sym_comment,
    STATE(1354), 1,
      sym_local,
  [80417] = 13,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(582), 1,
      sym__identifier,
    ACTIONS(2176), 1,
      anon_sym_local,
    ACTIONS(2178), 1,
      sym_function_start,
    STATE(276), 1,
      sym_function_call,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(1058), 1,
      sym_variable_declarator,
    STATE(1319), 1,
      sym__prefix_exp,
    STATE(1326), 1,
      sym_comment,
    STATE(1353), 1,
      sym_local,
  [80457] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(516), 1,
      anon_sym_else,
    ACTIONS(2180), 1,
      anon_sym_COMMA,
    STATE(1327), 2,
      sym_comment,
      aux_sym__expression_list_repeat1,
    ACTIONS(486), 7,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_end,
      anon_sym_do,
      anon_sym_until,
      anon_sym_elseif,
      anon_sym_RPAREN,
  [80483] = 13,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(29), 1,
      sym__identifier,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2183), 1,
      anon_sym_local,
    ACTIONS(2185), 1,
      sym_function_start,
    STATE(276), 1,
      sym_function_call,
    STATE(572), 1,
      sym__var,
    STATE(573), 1,
      sym_identifier,
    STATE(720), 1,
      sym_variable_declarator,
    STATE(1321), 1,
      sym__prefix_exp,
    STATE(1328), 1,
      sym_comment,
    STATE(1373), 1,
      sym_local,
  [80523] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2187), 1,
      anon_sym_DOT,
    STATE(1329), 1,
      sym_comment,
    STATE(1331), 1,
      aux_sym_emmy_identifier_repeat1,
    ACTIONS(1675), 7,
      anon_sym_COMMA,
      anon_sym_GT,
      anon_sym_PIPE,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
  [80548] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2162), 1,
      anon_sym_LBRACE,
    ACTIONS(2164), 1,
      sym_left_paren,
    ACTIONS(2166), 1,
      sym__string_start,
    STATE(781), 1,
      sym_string,
    STATE(787), 1,
      sym__table_call,
    STATE(790), 1,
      sym__string_call,
    STATE(791), 1,
      sym__parentheses_call,
    STATE(804), 1,
      sym_tableconstructor,
    STATE(832), 1,
      sym__args,
    STATE(1330), 1,
      sym_comment,
  [80585] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2189), 1,
      anon_sym_DOT,
    STATE(1331), 2,
      sym_comment,
      aux_sym_emmy_identifier_repeat1,
    ACTIONS(1630), 7,
      anon_sym_COMMA,
      anon_sym_GT,
      anon_sym_PIPE,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
  [80608] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(267), 1,
      anon_sym_LBRACE,
    ACTIONS(269), 1,
      sym_left_paren,
    ACTIONS(271), 1,
      sym__string_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(157), 1,
      sym__args,
    STATE(164), 1,
      sym__table_call,
    STATE(174), 1,
      sym__string_call,
    STATE(179), 1,
      sym__parentheses_call,
    STATE(182), 1,
      sym_tableconstructor,
    STATE(184), 1,
      sym_string,
    STATE(1332), 1,
      sym_comment,
  [80645] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(179), 1,
      anon_sym_LBRACE,
    ACTIONS(181), 1,
      sym_left_paren,
    ACTIONS(183), 1,
      sym__string_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(81), 1,
      sym__string_call,
    STATE(83), 1,
      sym__table_call,
    STATE(85), 1,
      sym__parentheses_call,
    STATE(93), 1,
      sym__args,
    STATE(97), 1,
      sym_string,
    STATE(103), 1,
      sym_tableconstructor,
    STATE(1333), 1,
      sym_comment,
  [80682] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2126), 1,
      anon_sym_LBRACE,
    ACTIONS(2128), 1,
      sym_left_paren,
    ACTIONS(2130), 1,
      sym__string_start,
    STATE(921), 1,
      sym__table_call,
    STATE(927), 1,
      sym__string_call,
    STATE(929), 1,
      sym__parentheses_call,
    STATE(935), 1,
      sym__args,
    STATE(936), 1,
      sym_tableconstructor,
    STATE(942), 1,
      sym_string,
    STATE(1334), 1,
      sym_comment,
  [80719] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(279), 1,
      anon_sym_LBRACE,
    ACTIONS(281), 1,
      sym_left_paren,
    ACTIONS(283), 1,
      sym__string_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(212), 1,
      sym__args,
    STATE(215), 1,
      sym__table_call,
    STATE(216), 1,
      sym__string_call,
    STATE(217), 1,
      sym__parentheses_call,
    STATE(219), 1,
      sym_tableconstructor,
    STATE(220), 1,
      sym_string,
    STATE(1335), 1,
      sym_comment,
  [80756] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(225), 1,
      anon_sym_LBRACE,
    ACTIONS(227), 1,
      sym_left_paren,
    ACTIONS(229), 1,
      sym__string_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(146), 1,
      sym_tableconstructor,
    STATE(147), 1,
      sym_string,
    STATE(149), 1,
      sym__parentheses_call,
    STATE(150), 1,
      sym__string_call,
    STATE(151), 1,
      sym__table_call,
    STATE(168), 1,
      sym__args,
    STATE(1336), 1,
      sym_comment,
  [80793] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(395), 1,
      anon_sym_LBRACE,
    ACTIONS(397), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(401), 1,
      sym__string_start,
    STATE(286), 1,
      sym_string,
    STATE(287), 1,
      sym_tableconstructor,
    STATE(288), 1,
      sym__parentheses_call,
    STATE(290), 1,
      sym__string_call,
    STATE(293), 1,
      sym__table_call,
    STATE(298), 1,
      sym__args,
    STATE(1337), 1,
      sym_comment,
  [80830] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2146), 1,
      anon_sym_LBRACE,
    ACTIONS(2148), 1,
      sym_left_paren,
    ACTIONS(2150), 1,
      sym__string_start,
    STATE(591), 1,
      sym_tableconstructor,
    STATE(592), 1,
      sym__args,
    STATE(599), 1,
      sym_string,
    STATE(601), 1,
      sym__parentheses_call,
    STATE(602), 1,
      sym__string_call,
    STATE(603), 1,
      sym__table_call,
    STATE(1338), 1,
      sym_comment,
  [80867] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2187), 1,
      anon_sym_DOT,
    STATE(1329), 1,
      aux_sym_emmy_identifier_repeat1,
    STATE(1339), 1,
      sym_comment,
    ACTIONS(1643), 7,
      anon_sym_COMMA,
      anon_sym_GT,
      anon_sym_PIPE,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
  [80892] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(89), 1,
      anon_sym_LBRACE,
    ACTIONS(91), 1,
      sym_left_paren,
    ACTIONS(93), 1,
      sym__string_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(69), 1,
      sym__table_call,
    STATE(70), 1,
      sym__args,
    STATE(72), 1,
      sym_string,
    STATE(73), 1,
      sym_tableconstructor,
    STATE(76), 1,
      sym__parentheses_call,
    STATE(77), 1,
      sym__string_call,
    STATE(1340), 1,
      sym_comment,
  [80929] = 12,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2154), 1,
      anon_sym_LBRACE,
    ACTIONS(2156), 1,
      sym_left_paren,
    ACTIONS(2158), 1,
      sym__string_start,
    STATE(980), 1,
      sym_string,
    STATE(981), 1,
      sym_tableconstructor,
    STATE(983), 1,
      sym__parentheses_call,
    STATE(984), 1,
      sym__string_call,
    STATE(985), 1,
      sym__table_call,
    STATE(992), 1,
      sym__args,
    STATE(1341), 1,
      sym_comment,
  [80966] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1675), 1,
      aux_sym_emmy_class_token4,
    ACTIONS(2192), 1,
      anon_sym_DOT,
    STATE(1342), 1,
      sym_comment,
    STATE(1347), 1,
      aux_sym_emmy_identifier_repeat1,
    ACTIONS(1677), 5,
      anon_sym_PIPE,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token2,
      aux_sym_emmy_class_token3,
  [80992] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(520), 1,
      anon_sym_COMMA,
    ACTIONS(2196), 1,
      anon_sym_else,
    STATE(1327), 1,
      aux_sym__expression_list_repeat1,
    STATE(1343), 1,
      sym_comment,
    ACTIONS(2194), 5,
      ts_builtin_sym_end,
      anon_sym_,
      anon_sym_end,
      anon_sym_until,
      anon_sym_elseif,
  [81018] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(1344), 1,
      sym_comment,
    ACTIONS(1630), 8,
      anon_sym_DOT,
      anon_sym_COMMA,
      anon_sym_GT,
      anon_sym_PIPE,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
  [81038] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(1305), 1,
      sym__bar,
    STATE(1345), 1,
      sym_comment,
    STATE(1380), 1,
      aux_sym__emmy_type_repeat1,
    ACTIONS(1685), 6,
      anon_sym_COMMA,
      anon_sym_GT,
      anon_sym_PIPE,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
      anon_sym_LBRACK_RBRACK,
  [81062] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1643), 1,
      aux_sym_emmy_class_token4,
    ACTIONS(2192), 1,
      anon_sym_DOT,
    STATE(1342), 1,
      aux_sym_emmy_identifier_repeat1,
    STATE(1346), 1,
      sym_comment,
    ACTIONS(1645), 5,
      anon_sym_PIPE,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token2,
      aux_sym_emmy_class_token3,
  [81088] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1630), 1,
      aux_sym_emmy_class_token4,
    ACTIONS(2198), 1,
      anon_sym_DOT,
    STATE(1347), 2,
      sym_comment,
      aux_sym_emmy_identifier_repeat1,
    ACTIONS(1632), 5,
      anon_sym_PIPE,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token2,
      aux_sym_emmy_class_token3,
  [81112] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2201), 1,
      anon_sym_COLON,
    STATE(1348), 1,
      sym_comment,
    ACTIONS(1857), 7,
      anon_sym_COMMA,
      anon_sym_GT,
      anon_sym_PIPE,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
  [81134] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2203), 1,
      anon_sym_COLON,
    STATE(1349), 1,
      sym_comment,
    ACTIONS(1808), 7,
      anon_sym_COMMA,
      anon_sym_GT,
      anon_sym_PIPE,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
  [81156] = 10,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2205), 1,
      sym__identifier,
    STATE(276), 1,
      sym_function_call,
    STATE(789), 1,
      sym_identifier,
    STATE(798), 1,
      sym__var,
    STATE(1055), 1,
      sym_variable_declarator,
    STATE(1318), 1,
      sym__prefix_exp,
    STATE(1350), 1,
      sym_comment,
  [81187] = 10,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2207), 1,
      sym__identifier,
    STATE(276), 1,
      sym_function_call,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(1170), 1,
      sym_variable_declarator,
    STATE(1319), 1,
      sym__prefix_exp,
    STATE(1351), 1,
      sym_comment,
  [81218] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(1352), 1,
      sym_comment,
    ACTIONS(1712), 7,
      anon_sym_COMMA,
      anon_sym_GT,
      anon_sym_PIPE,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
  [81237] = 10,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2207), 1,
      sym__identifier,
    STATE(276), 1,
      sym_function_call,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(1065), 1,
      sym_variable_declarator,
    STATE(1319), 1,
      sym__prefix_exp,
    STATE(1353), 1,
      sym_comment,
  [81268] = 10,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2205), 1,
      sym__identifier,
    STATE(276), 1,
      sym_function_call,
    STATE(789), 1,
      sym_identifier,
    STATE(798), 1,
      sym__var,
    STATE(1067), 1,
      sym_variable_declarator,
    STATE(1318), 1,
      sym__prefix_exp,
    STATE(1354), 1,
      sym_comment,
  [81299] = 10,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2205), 1,
      sym__identifier,
    STATE(276), 1,
      sym_function_call,
    STATE(789), 1,
      sym_identifier,
    STATE(798), 1,
      sym__var,
    STATE(1098), 1,
      sym_variable_declarator,
    STATE(1318), 1,
      sym__prefix_exp,
    STATE(1355), 1,
      sym_comment,
  [81330] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1679), 1,
      aux_sym_emmy_class_token4,
    ACTIONS(2209), 1,
      anon_sym_PIPE,
    STATE(1297), 1,
      sym__bar,
    STATE(1356), 1,
      sym_comment,
    STATE(1362), 1,
      aux_sym__emmy_type_repeat1,
    ACTIONS(1683), 3,
      anon_sym_LBRACK_RBRACK,
      aux_sym_emmy_class_token2,
      aux_sym_emmy_class_token3,
  [81357] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(1357), 1,
      sym_comment,
    ACTIONS(1708), 7,
      anon_sym_COMMA,
      anon_sym_GT,
      anon_sym_PIPE,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
  [81376] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(1358), 1,
      sym_comment,
    ACTIONS(333), 7,
      anon_sym_DOT,
      anon_sym_COLON,
      aux_sym_parameter_list_token1,
      anon_sym_EQ,
      anon_sym_in,
      sym_left_paren,
      anon_sym_RPAREN,
  [81395] = 10,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2211), 1,
      sym__identifier,
    STATE(276), 1,
      sym_function_call,
    STATE(614), 1,
      sym_identifier,
    STATE(616), 1,
      sym__var,
    STATE(943), 1,
      sym_variable_declarator,
    STATE(1317), 1,
      sym__prefix_exp,
    STATE(1359), 1,
      sym_comment,
  [81426] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(1360), 1,
      sym_comment,
    ACTIONS(1865), 7,
      anon_sym_COMMA,
      anon_sym_GT,
      anon_sym_PIPE,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
  [81445] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(1361), 1,
      sym_comment,
    ACTIONS(1816), 7,
      anon_sym_COMMA,
      anon_sym_GT,
      anon_sym_PIPE,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
  [81464] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1685), 1,
      aux_sym_emmy_class_token4,
    ACTIONS(2213), 1,
      anon_sym_PIPE,
    STATE(1297), 1,
      sym__bar,
    STATE(1362), 2,
      sym_comment,
      aux_sym__emmy_type_repeat1,
    ACTIONS(1687), 3,
      anon_sym_LBRACK_RBRACK,
      aux_sym_emmy_class_token2,
      aux_sym_emmy_class_token3,
  [81489] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1689), 1,
      anon_sym_PIPE,
    STATE(1305), 1,
      sym__bar,
    STATE(1363), 2,
      sym_comment,
      aux_sym__emmy_type_repeat1,
    ACTIONS(1685), 4,
      anon_sym_COMMA,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
      anon_sym_LBRACK_RBRACK,
  [81512] = 10,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2211), 1,
      sym__identifier,
    STATE(276), 1,
      sym_function_call,
    STATE(614), 1,
      sym_identifier,
    STATE(616), 1,
      sym__var,
    STATE(1052), 1,
      sym_variable_declarator,
    STATE(1317), 1,
      sym__prefix_exp,
    STATE(1364), 1,
      sym_comment,
  [81543] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2216), 1,
      anon_sym_QMARK,
    STATE(1365), 1,
      sym_comment,
    ACTIONS(1794), 6,
      anon_sym_COMMA,
      anon_sym_GT,
      anon_sym_PIPE,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
      anon_sym_LBRACK_RBRACK,
  [81564] = 10,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2218), 1,
      sym__identifier,
    STATE(276), 1,
      sym_function_call,
    STATE(572), 1,
      sym__var,
    STATE(573), 1,
      sym_identifier,
    STATE(845), 1,
      sym_variable_declarator,
    STATE(1321), 1,
      sym__prefix_exp,
    STATE(1366), 1,
      sym_comment,
  [81595] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2220), 1,
      anon_sym_QMARK,
    STATE(1367), 1,
      sym_comment,
    ACTIONS(1800), 6,
      anon_sym_COMMA,
      anon_sym_GT,
      anon_sym_PIPE,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
      anon_sym_LBRACK_RBRACK,
  [81616] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1681), 1,
      anon_sym_PIPE,
    STATE(1305), 1,
      sym__bar,
    STATE(1368), 1,
      sym_comment,
    STATE(1380), 1,
      aux_sym__emmy_type_repeat1,
    ACTIONS(1692), 4,
      anon_sym_COMMA,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
      anon_sym_LBRACK_RBRACK,
  [81641] = 10,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2218), 1,
      sym__identifier,
    STATE(276), 1,
      sym_function_call,
    STATE(572), 1,
      sym__var,
    STATE(573), 1,
      sym_identifier,
    STATE(751), 1,
      sym_variable_declarator,
    STATE(1321), 1,
      sym__prefix_exp,
    STATE(1369), 1,
      sym_comment,
  [81672] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1692), 1,
      aux_sym_emmy_class_token4,
    ACTIONS(2209), 1,
      anon_sym_PIPE,
    STATE(1297), 1,
      sym__bar,
    STATE(1356), 1,
      aux_sym__emmy_type_repeat1,
    STATE(1370), 1,
      sym_comment,
    ACTIONS(1694), 3,
      anon_sym_LBRACK_RBRACK,
      aux_sym_emmy_class_token2,
      aux_sym_emmy_class_token3,
  [81699] = 10,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2211), 1,
      sym__identifier,
    STATE(276), 1,
      sym_function_call,
    STATE(614), 1,
      sym_identifier,
    STATE(616), 1,
      sym__var,
    STATE(978), 1,
      sym_variable_declarator,
    STATE(1317), 1,
      sym__prefix_exp,
    STATE(1371), 1,
      sym_comment,
  [81730] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(1372), 1,
      sym_comment,
    ACTIONS(1736), 7,
      anon_sym_COMMA,
      anon_sym_GT,
      anon_sym_PIPE,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
  [81749] = 10,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2218), 1,
      sym__identifier,
    STATE(276), 1,
      sym_function_call,
    STATE(572), 1,
      sym__var,
    STATE(573), 1,
      sym_identifier,
    STATE(660), 1,
      sym_variable_declarator,
    STATE(1321), 1,
      sym__prefix_exp,
    STATE(1373), 1,
      sym_comment,
  [81780] = 10,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(31), 1,
      sym_left_paren,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2207), 1,
      sym__identifier,
    STATE(276), 1,
      sym_function_call,
    STATE(800), 1,
      sym_identifier,
    STATE(817), 1,
      sym__var,
    STATE(1061), 1,
      sym_variable_declarator,
    STATE(1319), 1,
      sym__prefix_exp,
    STATE(1374), 1,
      sym_comment,
  [81811] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(1375), 1,
      sym_comment,
    ACTIONS(1716), 7,
      anon_sym_COMMA,
      anon_sym_GT,
      anon_sym_PIPE,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
  [81830] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(1376), 1,
      sym_comment,
    ACTIONS(1921), 7,
      anon_sym_COMMA,
      anon_sym_GT,
      anon_sym_PIPE,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
  [81849] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1685), 1,
      aux_sym_emmy_class_token4,
    STATE(1305), 1,
      sym__bar,
    STATE(1377), 1,
      sym_comment,
    STATE(1380), 1,
      aux_sym__emmy_type_repeat1,
    ACTIONS(1687), 4,
      anon_sym_PIPE,
      anon_sym_LBRACK_RBRACK,
      aux_sym_emmy_class_token2,
      aux_sym_emmy_class_token3,
  [81874] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1808), 1,
      aux_sym_emmy_class_token4,
    ACTIONS(2222), 1,
      anon_sym_COLON,
    STATE(1378), 1,
      sym_comment,
    ACTIONS(1810), 5,
      anon_sym_PIPE,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token2,
      aux_sym_emmy_class_token3,
  [81897] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1630), 1,
      aux_sym_emmy_class_token4,
    STATE(1379), 1,
      sym_comment,
    ACTIONS(1632), 6,
      anon_sym_DOT,
      anon_sym_PIPE,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token2,
      aux_sym_emmy_class_token3,
  [81918] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1681), 1,
      anon_sym_PIPE,
    STATE(1305), 1,
      sym__bar,
    STATE(1363), 1,
      aux_sym__emmy_type_repeat1,
    STATE(1380), 1,
      sym_comment,
    ACTIONS(1679), 4,
      anon_sym_COMMA,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
      anon_sym_LBRACK_RBRACK,
  [81943] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1857), 1,
      aux_sym_emmy_class_token4,
    ACTIONS(2224), 1,
      anon_sym_COLON,
    STATE(1381), 1,
      sym_comment,
    ACTIONS(1859), 5,
      anon_sym_PIPE,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token2,
      aux_sym_emmy_class_token3,
  [81966] = 9,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2226), 1,
      sym_ellipsis,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(499), 1,
      sym_right_paren,
    STATE(1382), 1,
      sym_comment,
    STATE(1533), 1,
      sym_identifier,
    STATE(1623), 1,
      sym_parameter_list,
  [81994] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1712), 1,
      aux_sym_emmy_class_token4,
    STATE(1383), 1,
      sym_comment,
    ACTIONS(1714), 5,
      anon_sym_PIPE,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token2,
      aux_sym_emmy_class_token3,
  [82014] = 9,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2226), 1,
      sym_ellipsis,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(413), 1,
      sym_right_paren,
    STATE(1384), 1,
      sym_comment,
    STATE(1533), 1,
      sym_identifier,
    STATE(1653), 1,
      sym_parameter_list,
  [82042] = 9,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2226), 1,
      sym_ellipsis,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(448), 1,
      sym_right_paren,
    STATE(1385), 1,
      sym_comment,
    STATE(1533), 1,
      sym_identifier,
    STATE(1583), 1,
      sym_parameter_list,
  [82070] = 9,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2226), 1,
      sym_ellipsis,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(459), 1,
      sym_right_paren,
    STATE(1386), 1,
      sym_comment,
    STATE(1533), 1,
      sym_identifier,
    STATE(1646), 1,
      sym_parameter_list,
  [82098] = 9,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2226), 1,
      sym_ellipsis,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(410), 1,
      sym_right_paren,
    STATE(1387), 1,
      sym_comment,
    STATE(1533), 1,
      sym_identifier,
    STATE(1636), 1,
      sym_parameter_list,
  [82126] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1679), 1,
      aux_sym_emmy_class_token4,
    ACTIONS(2209), 1,
      anon_sym_PIPE,
    STATE(1301), 1,
      sym__bar,
    STATE(1388), 1,
      sym_comment,
    STATE(1397), 1,
      aux_sym__emmy_type_repeat1,
    ACTIONS(1683), 2,
      anon_sym_LBRACK_RBRACK,
      aux_sym_emmy_class_token3,
  [82152] = 8,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1692), 1,
      aux_sym_emmy_class_token4,
    ACTIONS(2209), 1,
      anon_sym_PIPE,
    STATE(1301), 1,
      sym__bar,
    STATE(1388), 1,
      aux_sym__emmy_type_repeat1,
    STATE(1389), 1,
      sym_comment,
    ACTIONS(1694), 2,
      anon_sym_LBRACK_RBRACK,
      aux_sym_emmy_class_token3,
  [82178] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2234), 1,
      sym__identifier,
    STATE(1390), 1,
      sym_comment,
    ACTIONS(2232), 5,
      sym__string_start,
      anon_sym_LBRACE,
      anon_sym_table_LT,
      anon_sym_function_LPAREN,
      anon_sym_fun_LPAREN,
  [82198] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1816), 1,
      aux_sym_emmy_class_token4,
    STATE(1391), 1,
      sym_comment,
    ACTIONS(1818), 5,
      anon_sym_PIPE,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token2,
      aux_sym_emmy_class_token3,
  [82218] = 9,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2226), 1,
      sym_ellipsis,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(456), 1,
      sym_right_paren,
    STATE(1392), 1,
      sym_comment,
    STATE(1533), 1,
      sym_identifier,
    STATE(1645), 1,
      sym_parameter_list,
  [82246] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(1393), 1,
      sym_comment,
    ACTIONS(1964), 6,
      anon_sym_COMMA,
      anon_sym_GT,
      anon_sym_PIPE,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
      anon_sym_LBRACK_RBRACK,
  [82264] = 9,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2226), 1,
      sym_ellipsis,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(447), 1,
      sym_right_paren,
    STATE(1394), 1,
      sym_comment,
    STATE(1533), 1,
      sym_identifier,
    STATE(1642), 1,
      sym_parameter_list,
  [82292] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(1395), 1,
      sym_comment,
    ACTIONS(1968), 6,
      anon_sym_COMMA,
      anon_sym_GT,
      anon_sym_PIPE,
      anon_sym_RBRACE,
      anon_sym_RPAREN,
      anon_sym_LBRACK_RBRACK,
  [82310] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1921), 1,
      aux_sym_emmy_class_token4,
    STATE(1396), 1,
      sym_comment,
    ACTIONS(1923), 5,
      anon_sym_PIPE,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token2,
      aux_sym_emmy_class_token3,
  [82330] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1685), 1,
      aux_sym_emmy_class_token4,
    ACTIONS(2213), 1,
      anon_sym_PIPE,
    STATE(1301), 1,
      sym__bar,
    ACTIONS(1687), 2,
      anon_sym_LBRACK_RBRACK,
      aux_sym_emmy_class_token3,
    STATE(1397), 2,
      sym_comment,
      aux_sym__emmy_type_repeat1,
  [82354] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1857), 1,
      aux_sym_emmy_class_token4,
    ACTIONS(2224), 1,
      anon_sym_COLON,
    STATE(1398), 1,
      sym_comment,
    ACTIONS(1859), 4,
      anon_sym_PIPE,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token3,
  [82376] = 9,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2226), 1,
      sym_ellipsis,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(438), 1,
      sym_right_paren,
    STATE(1399), 1,
      sym_comment,
    STATE(1533), 1,
      sym_identifier,
    STATE(1640), 1,
      sym_parameter_list,
  [82404] = 9,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2226), 1,
      sym_ellipsis,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(437), 1,
      sym_right_paren,
    STATE(1400), 1,
      sym_comment,
    STATE(1533), 1,
      sym_identifier,
    STATE(1639), 1,
      sym_parameter_list,
  [82432] = 9,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2226), 1,
      sym_ellipsis,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(418), 1,
      sym_right_paren,
    STATE(1401), 1,
      sym_comment,
    STATE(1533), 1,
      sym_identifier,
    STATE(1586), 1,
      sym_parameter_list,
  [82460] = 9,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2226), 1,
      sym_ellipsis,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(469), 1,
      sym_right_paren,
    STATE(1402), 1,
      sym_comment,
    STATE(1533), 1,
      sym_identifier,
    STATE(1635), 1,
      sym_parameter_list,
  [82488] = 9,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2226), 1,
      sym_ellipsis,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(425), 1,
      sym_right_paren,
    STATE(1403), 1,
      sym_comment,
    STATE(1533), 1,
      sym_identifier,
    STATE(1593), 1,
      sym_parameter_list,
  [82516] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2236), 1,
      sym__identifier,
    STATE(1404), 1,
      sym_comment,
    STATE(1562), 1,
      sym_identifier,
    STATE(1700), 1,
      sym_emmy_visibility,
    ACTIONS(2238), 3,
      anon_sym_public,
      anon_sym_protected,
      anon_sym_private,
  [82540] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1808), 1,
      aux_sym_emmy_class_token4,
    ACTIONS(2222), 1,
      anon_sym_COLON,
    STATE(1405), 1,
      sym_comment,
    ACTIONS(1810), 4,
      anon_sym_PIPE,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token3,
  [82562] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1736), 1,
      aux_sym_emmy_class_token4,
    STATE(1406), 1,
      sym_comment,
    ACTIONS(1738), 5,
      anon_sym_PIPE,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token2,
      aux_sym_emmy_class_token3,
  [82582] = 9,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2226), 1,
      sym_ellipsis,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(483), 1,
      sym_right_paren,
    STATE(1407), 1,
      sym_comment,
    STATE(1533), 1,
      sym_identifier,
    STATE(1626), 1,
      sym_parameter_list,
  [82610] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1865), 1,
      aux_sym_emmy_class_token4,
    STATE(1408), 1,
      sym_comment,
    ACTIONS(1867), 5,
      anon_sym_PIPE,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token2,
      aux_sym_emmy_class_token3,
  [82630] = 9,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2226), 1,
      sym_ellipsis,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(475), 1,
      sym_right_paren,
    STATE(1409), 1,
      sym_comment,
    STATE(1533), 1,
      sym_identifier,
    STATE(1598), 1,
      sym_parameter_list,
  [82658] = 9,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2226), 1,
      sym_ellipsis,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(501), 1,
      sym_right_paren,
    STATE(1410), 1,
      sym_comment,
    STATE(1533), 1,
      sym_identifier,
    STATE(1622), 1,
      sym_parameter_list,
  [82686] = 9,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2226), 1,
      sym_ellipsis,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(489), 1,
      sym_right_paren,
    STATE(1411), 1,
      sym_comment,
    STATE(1533), 1,
      sym_identifier,
    STATE(1601), 1,
      sym_parameter_list,
  [82714] = 9,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2226), 1,
      sym_ellipsis,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(450), 1,
      sym_right_paren,
    STATE(1412), 1,
      sym_comment,
    STATE(1533), 1,
      sym_identifier,
    STATE(1618), 1,
      sym_parameter_list,
  [82742] = 9,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2226), 1,
      sym_ellipsis,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(488), 1,
      sym_right_paren,
    STATE(1413), 1,
      sym_comment,
    STATE(1533), 1,
      sym_identifier,
    STATE(1602), 1,
      sym_parameter_list,
  [82770] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(349), 1,
      aux_sym_emmy_class_token4,
    STATE(1414), 1,
      sym_comment,
    ACTIONS(351), 5,
      anon_sym_PIPE,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token2,
      aux_sym_emmy_class_token3,
  [82790] = 9,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2226), 1,
      sym_ellipsis,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(466), 1,
      sym_right_paren,
    STATE(1415), 1,
      sym_comment,
    STATE(1533), 1,
      sym_identifier,
    STATE(1603), 1,
      sym_parameter_list,
  [82818] = 9,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2226), 1,
      sym_ellipsis,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(432), 1,
      sym_right_paren,
    STATE(1416), 1,
      sym_comment,
    STATE(1533), 1,
      sym_identifier,
    STATE(1604), 1,
      sym_parameter_list,
  [82846] = 9,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2226), 1,
      sym_ellipsis,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(463), 1,
      sym_right_paren,
    STATE(1417), 1,
      sym_comment,
    STATE(1533), 1,
      sym_identifier,
    STATE(1606), 1,
      sym_parameter_list,
  [82874] = 9,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2226), 1,
      sym_ellipsis,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(452), 1,
      sym_right_paren,
    STATE(1418), 1,
      sym_comment,
    STATE(1533), 1,
      sym_identifier,
    STATE(1616), 1,
      sym_parameter_list,
  [82902] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(345), 1,
      aux_sym_emmy_class_token4,
    STATE(1419), 1,
      sym_comment,
    ACTIONS(347), 5,
      anon_sym_PIPE,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token2,
      aux_sym_emmy_class_token3,
  [82922] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1800), 1,
      aux_sym_emmy_class_token4,
    ACTIONS(2240), 1,
      anon_sym_QMARK,
    STATE(1420), 1,
      sym_comment,
    ACTIONS(1802), 4,
      anon_sym_PIPE,
      anon_sym_LBRACK_RBRACK,
      aux_sym_emmy_class_token2,
      aux_sym_emmy_class_token3,
  [82944] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1794), 1,
      aux_sym_emmy_class_token4,
    ACTIONS(2242), 1,
      anon_sym_QMARK,
    STATE(1421), 1,
      sym_comment,
    ACTIONS(1796), 4,
      anon_sym_PIPE,
      anon_sym_LBRACK_RBRACK,
      aux_sym_emmy_class_token2,
      aux_sym_emmy_class_token3,
  [82966] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1716), 1,
      aux_sym_emmy_class_token4,
    STATE(1422), 1,
      sym_comment,
    ACTIONS(1718), 5,
      anon_sym_PIPE,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token2,
      aux_sym_emmy_class_token3,
  [82986] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1708), 1,
      aux_sym_emmy_class_token4,
    STATE(1423), 1,
      sym_comment,
    ACTIONS(1710), 5,
      anon_sym_PIPE,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
      aux_sym_emmy_class_token2,
      aux_sym_emmy_class_token3,
  [83006] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2236), 1,
      sym__identifier,
    STATE(1424), 1,
      sym_comment,
    STATE(1580), 1,
      sym_identifier,
    STATE(1871), 1,
      sym_emmy_visibility,
    ACTIONS(2238), 3,
      anon_sym_public,
      anon_sym_protected,
      anon_sym_private,
  [83030] = 8,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2244), 1,
      anon_sym_LBRACK,
    ACTIONS(2246), 1,
      anon_sym_RBRACE,
    STATE(1425), 1,
      sym_comment,
    STATE(1605), 1,
      sym_emmy_type_dictionary_value,
    STATE(1748), 1,
      sym_identifier,
  [83055] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1968), 1,
      aux_sym_emmy_class_token4,
    STATE(1426), 1,
      sym_comment,
    ACTIONS(1970), 4,
      anon_sym_PIPE,
      anon_sym_LBRACK_RBRACK,
      aux_sym_emmy_class_token2,
      aux_sym_emmy_class_token3,
  [83074] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    STATE(1427), 1,
      sym_comment,
    STATE(1466), 1,
      sym_identifier,
    STATE(1843), 1,
      sym__identifier_list,
    STATE(1763), 2,
      sym_for_numeric,
      sym_for_generic,
  [83097] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1689), 1,
      anon_sym_PIPE,
    STATE(1296), 1,
      sym__bar,
    ACTIONS(1685), 2,
      anon_sym_GT,
      anon_sym_LBRACK_RBRACK,
    STATE(1428), 2,
      sym_comment,
      aux_sym__emmy_type_repeat1,
  [83118] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1681), 1,
      anon_sym_PIPE,
    STATE(1296), 1,
      sym__bar,
    STATE(1428), 1,
      aux_sym__emmy_type_repeat1,
    STATE(1429), 1,
      sym_comment,
    ACTIONS(1679), 2,
      anon_sym_GT,
      anon_sym_LBRACK_RBRACK,
  [83141] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    STATE(1430), 1,
      sym_comment,
    STATE(1466), 1,
      sym_identifier,
    STATE(1843), 1,
      sym__identifier_list,
    STATE(1725), 2,
      sym_for_numeric,
      sym_for_generic,
  [83164] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    STATE(1431), 1,
      sym_comment,
    STATE(1466), 1,
      sym_identifier,
    STATE(1843), 1,
      sym__identifier_list,
    STATE(1842), 2,
      sym_for_numeric,
      sym_for_generic,
  [83187] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    STATE(1432), 1,
      sym_comment,
    STATE(1466), 1,
      sym_identifier,
    STATE(1843), 1,
      sym__identifier_list,
    STATE(1786), 2,
      sym_for_numeric,
      sym_for_generic,
  [83210] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(1964), 1,
      aux_sym_emmy_class_token4,
    STATE(1433), 1,
      sym_comment,
    ACTIONS(1966), 4,
      anon_sym_PIPE,
      anon_sym_LBRACK_RBRACK,
      aux_sym_emmy_class_token2,
      aux_sym_emmy_class_token3,
  [83229] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1681), 1,
      anon_sym_PIPE,
    STATE(1296), 1,
      sym__bar,
    STATE(1429), 1,
      aux_sym__emmy_type_repeat1,
    STATE(1434), 1,
      sym_comment,
    ACTIONS(1692), 2,
      anon_sym_GT,
      anon_sym_LBRACK_RBRACK,
  [83252] = 8,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2244), 1,
      anon_sym_LBRACK,
    ACTIONS(2248), 1,
      anon_sym_RBRACE,
    STATE(1435), 1,
      sym_comment,
    STATE(1605), 1,
      sym_emmy_type_dictionary_value,
    STATE(1748), 1,
      sym_identifier,
  [83277] = 8,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2244), 1,
      anon_sym_LBRACK,
    ACTIONS(2250), 1,
      anon_sym_RBRACE,
    STATE(1436), 1,
      sym_comment,
    STATE(1605), 1,
      sym_emmy_type_dictionary_value,
    STATE(1748), 1,
      sym_identifier,
  [83302] = 8,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2244), 1,
      anon_sym_LBRACK,
    ACTIONS(2252), 1,
      anon_sym_RBRACE,
    STATE(1437), 1,
      sym_comment,
    STATE(1605), 1,
      sym_emmy_type_dictionary_value,
    STATE(1748), 1,
      sym_identifier,
  [83327] = 8,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2244), 1,
      anon_sym_LBRACK,
    ACTIONS(2254), 1,
      anon_sym_RBRACE,
    STATE(1438), 1,
      sym_comment,
    STATE(1605), 1,
      sym_emmy_type_dictionary_value,
    STATE(1748), 1,
      sym_identifier,
  [83352] = 8,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2244), 1,
      anon_sym_LBRACK,
    ACTIONS(2256), 1,
      anon_sym_RBRACE,
    STATE(1439), 1,
      sym_comment,
    STATE(1605), 1,
      sym_emmy_type_dictionary_value,
    STATE(1748), 1,
      sym_identifier,
  [83377] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(722), 1,
      anon_sym_else,
    STATE(1440), 1,
      sym_comment,
    ACTIONS(2258), 3,
      anon_sym_end,
      anon_sym_until,
      anon_sym_elseif,
  [83395] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2244), 1,
      anon_sym_LBRACK,
    STATE(1441), 1,
      sym_comment,
    STATE(1475), 1,
      sym_emmy_type_dictionary_value,
    STATE(1748), 1,
      sym_identifier,
  [83417] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2260), 1,
      anon_sym_DOT,
    ACTIONS(2262), 1,
      anon_sym_COLON,
    ACTIONS(2264), 1,
      sym_left_paren,
    STATE(1442), 1,
      sym_comment,
    STATE(1468), 1,
      aux_sym_function_name_repeat1,
  [83439] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2268), 1,
      anon_sym_RBRACE,
    STATE(1443), 1,
      sym_comment,
    STATE(1457), 1,
      aux_sym_fieldlist_repeat1,
    ACTIONS(2266), 2,
      anon_sym_SEMI,
      anon_sym_COMMA,
  [83459] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2270), 1,
      anon_sym_end,
    ACTIONS(2272), 1,
      anon_sym_elseif,
    ACTIONS(2274), 1,
      anon_sym_else,
    STATE(1444), 1,
      sym_comment,
    STATE(1469), 1,
      aux_sym_if_statement_repeat1,
  [83481] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2272), 1,
      anon_sym_elseif,
    ACTIONS(2276), 1,
      anon_sym_end,
    ACTIONS(2278), 1,
      anon_sym_else,
    STATE(1445), 1,
      sym_comment,
    STATE(1469), 1,
      aux_sym_if_statement_repeat1,
  [83503] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2260), 1,
      anon_sym_DOT,
    ACTIONS(2280), 1,
      anon_sym_COLON,
    ACTIONS(2282), 1,
      sym_left_paren,
    STATE(1442), 1,
      aux_sym_function_name_repeat1,
    STATE(1446), 1,
      sym_comment,
  [83525] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2272), 1,
      anon_sym_elseif,
    ACTIONS(2284), 1,
      anon_sym_end,
    ACTIONS(2286), 1,
      anon_sym_else,
    STATE(1447), 1,
      sym_comment,
    STATE(1469), 1,
      aux_sym_if_statement_repeat1,
  [83547] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2290), 1,
      anon_sym_else,
    STATE(1448), 1,
      sym_comment,
    ACTIONS(2288), 3,
      anon_sym_end,
      anon_sym_until,
      anon_sym_elseif,
  [83565] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2292), 1,
      anon_sym_LBRACK_RBRACK,
    ACTIONS(2294), 1,
      aux_sym_emmy_class_token2,
    ACTIONS(2296), 1,
      aux_sym_emmy_class_token3,
    ACTIONS(2298), 1,
      aux_sym_emmy_class_token4,
    STATE(1449), 1,
      sym_comment,
  [83587] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2244), 1,
      anon_sym_LBRACK,
    STATE(1450), 1,
      sym_comment,
    STATE(1498), 1,
      sym_emmy_type_dictionary_value,
    STATE(1748), 1,
      sym_identifier,
  [83609] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2272), 1,
      anon_sym_elseif,
    ACTIONS(2300), 1,
      anon_sym_end,
    ACTIONS(2302), 1,
      anon_sym_else,
    STATE(1444), 1,
      aux_sym_if_statement_repeat1,
    STATE(1451), 1,
      sym_comment,
  [83631] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2306), 1,
      anon_sym_else,
    STATE(1452), 1,
      sym_comment,
    ACTIONS(2304), 3,
      anon_sym_end,
      anon_sym_until,
      anon_sym_elseif,
  [83649] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2308), 1,
      aux_sym_parameter_list_token1,
    ACTIONS(2311), 2,
      anon_sym_in,
      anon_sym_RPAREN,
    STATE(1453), 2,
      sym_comment,
      aux_sym_parameter_list_repeat1,
  [83667] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2272), 1,
      anon_sym_elseif,
    ACTIONS(2313), 1,
      anon_sym_end,
    ACTIONS(2315), 1,
      anon_sym_else,
    STATE(1454), 1,
      sym_comment,
    STATE(1460), 1,
      aux_sym_if_statement_repeat1,
  [83689] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2244), 1,
      anon_sym_LBRACK,
    STATE(1455), 1,
      sym_comment,
    STATE(1522), 1,
      sym_emmy_type_dictionary_value,
    STATE(1748), 1,
      sym_identifier,
  [83711] = 7,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2292), 1,
      anon_sym_LBRACK_RBRACK,
    ACTIONS(2317), 1,
      aux_sym_emmy_class_token2,
    ACTIONS(2319), 1,
      aux_sym_emmy_class_token3,
    ACTIONS(2321), 1,
      aux_sym_emmy_class_token4,
    STATE(1456), 1,
      sym_comment,
  [83733] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(960), 1,
      anon_sym_RBRACE,
    STATE(1457), 1,
      sym_comment,
    STATE(1459), 1,
      aux_sym_fieldlist_repeat1,
    ACTIONS(2323), 2,
      anon_sym_SEMI,
      anon_sym_COMMA,
  [83753] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2272), 1,
      anon_sym_elseif,
    ACTIONS(2313), 1,
      anon_sym_end,
    ACTIONS(2315), 1,
      anon_sym_else,
    STATE(1458), 1,
      sym_comment,
    STATE(1469), 1,
      aux_sym_if_statement_repeat1,
  [83775] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2328), 1,
      anon_sym_RBRACE,
    ACTIONS(2325), 2,
      anon_sym_SEMI,
      anon_sym_COMMA,
    STATE(1459), 2,
      sym_comment,
      aux_sym_fieldlist_repeat1,
  [83793] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2272), 1,
      anon_sym_elseif,
    ACTIONS(2330), 1,
      anon_sym_end,
    ACTIONS(2332), 1,
      anon_sym_else,
    STATE(1460), 1,
      sym_comment,
    STATE(1469), 1,
      aux_sym_if_statement_repeat1,
  [83815] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2272), 1,
      anon_sym_elseif,
    ACTIONS(2334), 1,
      anon_sym_end,
    ACTIONS(2336), 1,
      anon_sym_else,
    STATE(1461), 1,
      sym_comment,
    STATE(1469), 1,
      aux_sym_if_statement_repeat1,
  [83837] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(1462), 1,
      sym_comment,
    ACTIONS(345), 4,
      anon_sym_GT,
      anon_sym_PIPE,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
  [83853] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(1463), 1,
      sym_comment,
    ACTIONS(349), 4,
      anon_sym_GT,
      anon_sym_PIPE,
      anon_sym_LBRACK_RBRACK,
      anon_sym_QMARK,
  [83869] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2244), 1,
      anon_sym_LBRACK,
    STATE(1464), 1,
      sym_comment,
    STATE(1605), 1,
      sym_emmy_type_dictionary_value,
    STATE(1748), 1,
      sym_identifier,
  [83891] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2340), 1,
      anon_sym_else,
    STATE(1465), 1,
      sym_comment,
    ACTIONS(2338), 3,
      anon_sym_end,
      anon_sym_until,
      anon_sym_elseif,
  [83909] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2342), 1,
      aux_sym_parameter_list_token1,
    ACTIONS(2344), 1,
      anon_sym_EQ,
    ACTIONS(2346), 1,
      anon_sym_in,
    STATE(1466), 1,
      sym_comment,
    STATE(1508), 1,
      aux_sym_parameter_list_repeat1,
  [83931] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2272), 1,
      anon_sym_elseif,
    ACTIONS(2276), 1,
      anon_sym_end,
    ACTIONS(2278), 1,
      anon_sym_else,
    STATE(1461), 1,
      aux_sym_if_statement_repeat1,
    STATE(1467), 1,
      sym_comment,
  [83953] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2348), 1,
      anon_sym_DOT,
    ACTIONS(2351), 2,
      anon_sym_COLON,
      sym_left_paren,
    STATE(1468), 2,
      sym_comment,
      aux_sym_function_name_repeat1,
  [83971] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2353), 1,
      anon_sym_end,
    ACTIONS(2355), 1,
      anon_sym_elseif,
    ACTIONS(2358), 1,
      anon_sym_else,
    STATE(1469), 2,
      sym_comment,
      aux_sym_if_statement_repeat1,
  [83991] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2272), 1,
      anon_sym_elseif,
    ACTIONS(2360), 1,
      anon_sym_end,
    ACTIONS(2362), 1,
      anon_sym_else,
    STATE(1447), 1,
      aux_sym_if_statement_repeat1,
    STATE(1470), 1,
      sym_comment,
  [84013] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2272), 1,
      anon_sym_elseif,
    ACTIONS(2360), 1,
      anon_sym_end,
    ACTIONS(2362), 1,
      anon_sym_else,
    STATE(1469), 1,
      aux_sym_if_statement_repeat1,
    STATE(1471), 1,
      sym_comment,
  [84035] = 7,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2272), 1,
      anon_sym_elseif,
    ACTIONS(2300), 1,
      anon_sym_end,
    ACTIONS(2302), 1,
      anon_sym_else,
    STATE(1469), 1,
      aux_sym_if_statement_repeat1,
    STATE(1472), 1,
      sym_comment,
  [84057] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2364), 1,
      aux_sym_emmy_class_token4,
    ACTIONS(2366), 1,
      aux_sym__multiline_emmy_string_token2,
    STATE(1473), 1,
      sym_comment,
    STATE(1499), 1,
      aux_sym__multiline_emmy_string_repeat1,
  [84076] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2368), 1,
      aux_sym__multiline_emmy_string_token1,
    STATE(1474), 1,
      sym_comment,
    STATE(1757), 1,
      sym_class_description,
    STATE(1762), 1,
      sym__multiline_emmy_string,
  [84095] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2370), 1,
      anon_sym_COMMA,
    ACTIONS(2372), 1,
      anon_sym_RBRACE,
    STATE(1475), 1,
      sym_comment,
    STATE(1539), 1,
      aux_sym_emmy_type_dictionary_repeat1,
  [84114] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2368), 1,
      aux_sym__multiline_emmy_string_token1,
    STATE(1476), 1,
      sym_comment,
    STATE(1696), 1,
      sym__multiline_emmy_string,
    STATE(1740), 1,
      sym_field_description,
  [84133] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2368), 1,
      aux_sym__multiline_emmy_string_token1,
    STATE(1477), 1,
      sym_comment,
    STATE(1696), 1,
      sym__multiline_emmy_string,
    STATE(1747), 1,
      sym_field_description,
  [84152] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2292), 1,
      anon_sym_LBRACK_RBRACK,
    ACTIONS(2374), 1,
      aux_sym_emmy_class_token2,
    ACTIONS(2376), 1,
      aux_sym_emmy_class_token4,
    STATE(1478), 1,
      sym_comment,
  [84171] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2368), 1,
      aux_sym__multiline_emmy_string_token1,
    STATE(1479), 1,
      sym_comment,
    STATE(1696), 1,
      sym__multiline_emmy_string,
    STATE(1735), 1,
      sym_field_description,
  [84190] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2292), 1,
      anon_sym_LBRACK_RBRACK,
    ACTIONS(2378), 1,
      aux_sym_emmy_class_token2,
    ACTIONS(2380), 1,
      aux_sym_emmy_class_token4,
    STATE(1480), 1,
      sym_comment,
  [84209] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2368), 1,
      aux_sym__multiline_emmy_string_token1,
    STATE(1481), 1,
      sym_comment,
    STATE(1755), 1,
      sym_class_description,
    STATE(1762), 1,
      sym__multiline_emmy_string,
  [84228] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2382), 1,
      aux_sym__documentation_brief_container_token2,
    ACTIONS(2384), 1,
      aux_sym_documentation_command_token3,
    STATE(1482), 1,
      sym_comment,
    STATE(1535), 1,
      aux_sym_documentation_command_repeat1,
  [84247] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2368), 1,
      aux_sym__multiline_emmy_string_token1,
    STATE(1483), 1,
      sym_comment,
    STATE(1696), 1,
      sym__multiline_emmy_string,
    STATE(1737), 1,
      sym_field_description,
  [84266] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2368), 1,
      aux_sym__multiline_emmy_string_token1,
    STATE(1484), 1,
      sym_comment,
    STATE(1762), 1,
      sym__multiline_emmy_string,
    STATE(1767), 1,
      sym_class_description,
  [84285] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(520), 1,
      anon_sym_COMMA,
    ACTIONS(2386), 1,
      anon_sym_RPAREN,
    STATE(1327), 1,
      aux_sym__expression_list_repeat1,
    STATE(1485), 1,
      sym_comment,
  [84304] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2388), 1,
      sym__identifier,
    STATE(1486), 1,
      sym_comment,
    STATE(1519), 1,
      sym_identifier,
    STATE(1520), 1,
      sym_emmy_function_parameter,
  [84323] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2368), 1,
      aux_sym__multiline_emmy_string_token1,
    STATE(1487), 1,
      sym_comment,
    STATE(1762), 1,
      sym__multiline_emmy_string,
    STATE(1781), 1,
      sym_class_description,
  [84342] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2390), 1,
      sym_function_start,
    ACTIONS(2392), 1,
      sym__identifier,
    ACTIONS(2394), 1,
      sym_left_paren,
    STATE(1488), 1,
      sym_comment,
  [84361] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2398), 1,
      anon_sym_else,
    STATE(1489), 1,
      sym_comment,
    ACTIONS(2396), 2,
      anon_sym_end,
      anon_sym_elseif,
  [84378] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2292), 1,
      anon_sym_LBRACK_RBRACK,
    ACTIONS(2400), 1,
      aux_sym_emmy_class_token2,
    ACTIONS(2402), 1,
      aux_sym_emmy_class_token4,
    STATE(1490), 1,
      sym_comment,
  [84397] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(520), 1,
      anon_sym_COMMA,
    ACTIONS(2404), 1,
      anon_sym_do,
    STATE(1327), 1,
      aux_sym__expression_list_repeat1,
    STATE(1491), 1,
      sym_comment,
  [84416] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2406), 1,
      anon_sym_COMMA,
    ACTIONS(2409), 1,
      anon_sym_RPAREN,
    STATE(1492), 2,
      sym_comment,
      aux_sym_emmy_function_repeat1,
  [84433] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2366), 1,
      aux_sym__multiline_emmy_string_token2,
    ACTIONS(2411), 1,
      aux_sym_emmy_class_token4,
    STATE(1473), 1,
      aux_sym__multiline_emmy_string_repeat1,
    STATE(1493), 1,
      sym_comment,
  [84452] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(1494), 1,
      sym_comment,
    ACTIONS(2311), 3,
      aux_sym_parameter_list_token1,
      anon_sym_in,
      anon_sym_RPAREN,
  [84467] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2368), 1,
      aux_sym__multiline_emmy_string_token1,
    STATE(1495), 1,
      sym_comment,
    STATE(1695), 1,
      sym_field_description,
    STATE(1696), 1,
      sym__multiline_emmy_string,
  [84486] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2292), 1,
      anon_sym_LBRACK_RBRACK,
    ACTIONS(2413), 1,
      aux_sym_emmy_class_token2,
    ACTIONS(2415), 1,
      aux_sym_emmy_class_token4,
    STATE(1496), 1,
      sym_comment,
  [84505] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2419), 1,
      anon_sym_LBRACK_RBRACK,
    STATE(1497), 1,
      sym_comment,
    ACTIONS(2417), 2,
      anon_sym_COMMA,
      anon_sym_RBRACE,
  [84522] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2421), 1,
      anon_sym_COMMA,
    ACTIONS(2423), 1,
      anon_sym_RBRACE,
    STATE(1498), 1,
      sym_comment,
    STATE(1515), 1,
      aux_sym_emmy_type_dictionary_repeat1,
  [84541] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2425), 1,
      aux_sym_emmy_class_token4,
    ACTIONS(2427), 1,
      aux_sym__multiline_emmy_string_token2,
    STATE(1499), 2,
      sym_comment,
      aux_sym__multiline_emmy_string_repeat1,
  [84558] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2430), 1,
      anon_sym_COMMA,
    ACTIONS(2432), 1,
      anon_sym_RPAREN,
    STATE(1500), 1,
      sym_comment,
    STATE(1516), 1,
      aux_sym_emmy_function_repeat1,
  [84577] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2388), 1,
      sym__identifier,
    STATE(1500), 1,
      sym_emmy_function_parameter,
    STATE(1501), 1,
      sym_comment,
    STATE(1519), 1,
      sym_identifier,
  [84596] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2292), 1,
      anon_sym_LBRACK_RBRACK,
    ACTIONS(2434), 1,
      aux_sym_emmy_class_token2,
    ACTIONS(2436), 1,
      aux_sym_emmy_class_token4,
    STATE(1502), 1,
      sym_comment,
  [84615] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2392), 1,
      sym__identifier,
    ACTIONS(2394), 1,
      sym_left_paren,
    ACTIONS(2438), 1,
      sym_function_start,
    STATE(1503), 1,
      sym_comment,
  [84634] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2368), 1,
      aux_sym__multiline_emmy_string_token1,
    STATE(1504), 1,
      sym_comment,
    STATE(1696), 1,
      sym__multiline_emmy_string,
    STATE(1741), 1,
      sym_field_description,
  [84653] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2440), 1,
      aux_sym__documentation_brief_container_token2,
    ACTIONS(2443), 1,
      aux_sym__documentation_brief_container_token3,
    STATE(1505), 2,
      sym_comment,
      aux_sym__documentation_brief_container_repeat1,
  [84670] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2292), 1,
      anon_sym_LBRACK_RBRACK,
    ACTIONS(2445), 1,
      aux_sym_emmy_class_token3,
    ACTIONS(2447), 1,
      aux_sym_emmy_class_token4,
    STATE(1506), 1,
      sym_comment,
  [84689] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2368), 1,
      aux_sym__multiline_emmy_string_token1,
    STATE(1507), 1,
      sym_comment,
    STATE(1696), 1,
      sym__multiline_emmy_string,
    STATE(1742), 1,
      sym_field_description,
  [84708] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2342), 1,
      aux_sym_parameter_list_token1,
    ACTIONS(2449), 1,
      anon_sym_in,
    STATE(1453), 1,
      aux_sym_parameter_list_repeat1,
    STATE(1508), 1,
      sym_comment,
  [84727] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2292), 1,
      anon_sym_LBRACK_RBRACK,
    ACTIONS(2451), 1,
      aux_sym_emmy_class_token2,
    ACTIONS(2453), 1,
      aux_sym_emmy_class_token4,
    STATE(1509), 1,
      sym_comment,
  [84746] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2455), 1,
      sym_ellipsis,
    STATE(1494), 1,
      sym_identifier,
    STATE(1510), 1,
      sym_comment,
  [84765] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2292), 1,
      anon_sym_LBRACK_RBRACK,
    ACTIONS(2457), 1,
      aux_sym_emmy_class_token3,
    ACTIONS(2459), 1,
      aux_sym_emmy_class_token4,
    STATE(1511), 1,
      sym_comment,
  [84784] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2430), 1,
      anon_sym_COMMA,
    ACTIONS(2461), 1,
      anon_sym_RPAREN,
    STATE(1492), 1,
      aux_sym_emmy_function_repeat1,
    STATE(1512), 1,
      sym_comment,
  [84803] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2246), 1,
      anon_sym_RBRACE,
    ACTIONS(2463), 1,
      anon_sym_COMMA,
    STATE(1513), 1,
      sym_comment,
    STATE(1531), 1,
      aux_sym_emmy_type_dictionary_repeat1,
  [84822] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2388), 1,
      sym__identifier,
    STATE(1514), 1,
      sym_comment,
    STATE(1519), 1,
      sym_identifier,
    STATE(1526), 1,
      sym_emmy_function_parameter,
  [84841] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2252), 1,
      anon_sym_RBRACE,
    ACTIONS(2465), 1,
      anon_sym_COMMA,
    STATE(1515), 1,
      sym_comment,
    STATE(1531), 1,
      aux_sym_emmy_type_dictionary_repeat1,
  [84860] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2430), 1,
      anon_sym_COMMA,
    ACTIONS(2467), 1,
      anon_sym_RPAREN,
    STATE(1492), 1,
      aux_sym_emmy_function_repeat1,
    STATE(1516), 1,
      sym_comment,
  [84879] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2469), 1,
      aux_sym_parameter_list_token1,
    ACTIONS(2471), 1,
      anon_sym_RPAREN,
    STATE(1453), 1,
      aux_sym_parameter_list_repeat1,
    STATE(1517), 1,
      sym_comment,
  [84898] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2388), 1,
      sym__identifier,
    STATE(1518), 1,
      sym_comment,
    STATE(1519), 1,
      sym_identifier,
    STATE(1543), 1,
      sym_emmy_function_parameter,
  [84917] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2473), 1,
      anon_sym_COLON,
    STATE(1519), 1,
      sym_comment,
    ACTIONS(2475), 2,
      anon_sym_COMMA,
      anon_sym_RPAREN,
  [84934] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2430), 1,
      anon_sym_COMMA,
    ACTIONS(2477), 1,
      anon_sym_RPAREN,
    STATE(1512), 1,
      aux_sym_emmy_function_repeat1,
    STATE(1520), 1,
      sym_comment,
  [84953] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(1521), 1,
      sym_comment,
    ACTIONS(2479), 3,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_RBRACE,
  [84968] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2481), 1,
      anon_sym_COMMA,
    ACTIONS(2483), 1,
      anon_sym_RBRACE,
    STATE(1513), 1,
      aux_sym_emmy_type_dictionary_repeat1,
    STATE(1522), 1,
      sym_comment,
  [84987] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(1523), 1,
      sym_comment,
    ACTIONS(2485), 3,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_RBRACE,
  [85002] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2392), 1,
      sym__identifier,
    ACTIONS(2394), 1,
      sym_left_paren,
    ACTIONS(2487), 1,
      sym_function_start,
    STATE(1524), 1,
      sym_comment,
  [85021] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    STATE(1446), 1,
      sym_identifier,
    STATE(1525), 1,
      sym_comment,
    STATE(1715), 1,
      sym_function_name,
  [85040] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2430), 1,
      anon_sym_COMMA,
    ACTIONS(2489), 1,
      anon_sym_RPAREN,
    STATE(1526), 1,
      sym_comment,
    STATE(1528), 1,
      aux_sym_emmy_function_repeat1,
  [85059] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2368), 1,
      aux_sym__multiline_emmy_string_token1,
    STATE(1527), 1,
      sym_comment,
    STATE(1692), 1,
      sym_field_description,
    STATE(1696), 1,
      sym__multiline_emmy_string,
  [85078] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2430), 1,
      anon_sym_COMMA,
    ACTIONS(2491), 1,
      anon_sym_RPAREN,
    STATE(1492), 1,
      aux_sym_emmy_function_repeat1,
    STATE(1528), 1,
      sym_comment,
  [85097] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2419), 1,
      anon_sym_LBRACK_RBRACK,
    STATE(1529), 1,
      sym_comment,
    ACTIONS(2493), 2,
      anon_sym_COMMA,
      anon_sym_RPAREN,
  [85114] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2388), 1,
      sym__identifier,
    STATE(1519), 1,
      sym_identifier,
    STATE(1530), 1,
      sym_comment,
    STATE(1628), 1,
      sym_emmy_function_parameter,
  [85133] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2495), 1,
      anon_sym_COMMA,
    ACTIONS(2498), 1,
      anon_sym_RBRACE,
    STATE(1531), 2,
      sym_comment,
      aux_sym_emmy_type_dictionary_repeat1,
  [85150] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2292), 1,
      anon_sym_LBRACK_RBRACK,
    ACTIONS(2500), 1,
      aux_sym_emmy_class_token2,
    ACTIONS(2502), 1,
      aux_sym_emmy_class_token4,
    STATE(1532), 1,
      sym_comment,
  [85169] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2504), 1,
      aux_sym_parameter_list_token1,
    ACTIONS(2506), 1,
      anon_sym_RPAREN,
    STATE(1517), 1,
      aux_sym_parameter_list_repeat1,
    STATE(1533), 1,
      sym_comment,
  [85188] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2292), 1,
      anon_sym_LBRACK_RBRACK,
    ACTIONS(2508), 1,
      aux_sym_emmy_class_token2,
    ACTIONS(2510), 1,
      aux_sym_emmy_class_token4,
    STATE(1534), 1,
      sym_comment,
  [85207] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2512), 1,
      aux_sym__documentation_brief_container_token2,
    ACTIONS(2515), 1,
      aux_sym_documentation_command_token3,
    STATE(1535), 2,
      sym_comment,
      aux_sym_documentation_command_repeat1,
  [85224] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(1536), 1,
      sym_comment,
    ACTIONS(2328), 3,
      anon_sym_SEMI,
      anon_sym_COMMA,
      anon_sym_RBRACE,
  [85239] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2517), 1,
      sym_ellipsis,
    ACTIONS(2519), 1,
      sym__identifier,
    STATE(1537), 1,
      sym_comment,
    STATE(1680), 1,
      sym_identifier,
  [85258] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2368), 1,
      aux_sym__multiline_emmy_string_token1,
    STATE(1538), 1,
      sym_comment,
    STATE(1681), 1,
      sym__multiline_emmy_string,
    STATE(1708), 1,
      sym_parameter_description,
  [85277] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2254), 1,
      anon_sym_RBRACE,
    ACTIONS(2521), 1,
      anon_sym_COMMA,
    STATE(1531), 1,
      aux_sym_emmy_type_dictionary_repeat1,
    STATE(1539), 1,
      sym_comment,
  [85296] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2430), 1,
      anon_sym_COMMA,
    ACTIONS(2523), 1,
      anon_sym_RPAREN,
    STATE(1492), 1,
      aux_sym_emmy_function_repeat1,
    STATE(1540), 1,
      sym_comment,
  [85315] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2525), 1,
      aux_sym__documentation_brief_container_token2,
    ACTIONS(2527), 1,
      aux_sym__documentation_brief_container_token3,
    STATE(1505), 1,
      aux_sym__documentation_brief_container_repeat1,
    STATE(1541), 1,
      sym_comment,
  [85334] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    ACTIONS(2529), 1,
      sym_ellipsis,
    STATE(1494), 1,
      sym_identifier,
    STATE(1542), 1,
      sym_comment,
  [85353] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2430), 1,
      anon_sym_COMMA,
    ACTIONS(2531), 1,
      anon_sym_RPAREN,
    STATE(1540), 1,
      aux_sym_emmy_function_repeat1,
    STATE(1543), 1,
      sym_comment,
  [85372] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(1544), 1,
      sym_comment,
    ACTIONS(2533), 3,
      anon_sym_DOT,
      anon_sym_COLON,
      sym_left_paren,
  [85387] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    STATE(1446), 1,
      sym_identifier,
    STATE(1545), 1,
      sym_comment,
    STATE(1728), 1,
      sym_function_name,
  [85406] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2525), 1,
      aux_sym__documentation_brief_container_token2,
    ACTIONS(2535), 1,
      aux_sym__documentation_brief_container_token3,
    STATE(1541), 1,
      aux_sym__documentation_brief_container_repeat1,
    STATE(1546), 1,
      sym_comment,
  [85425] = 6,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2292), 1,
      anon_sym_LBRACK_RBRACK,
    ACTIONS(2537), 1,
      aux_sym_emmy_class_token2,
    ACTIONS(2539), 1,
      aux_sym_emmy_class_token4,
    STATE(1547), 1,
      sym_comment,
  [85444] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    STATE(1446), 1,
      sym_identifier,
    STATE(1548), 1,
      sym_comment,
    STATE(1824), 1,
      sym_function_name,
  [85463] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    STATE(1446), 1,
      sym_identifier,
    STATE(1549), 1,
      sym_comment,
    STATE(1829), 1,
      sym_function_name,
  [85482] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    STATE(1446), 1,
      sym_identifier,
    STATE(1550), 1,
      sym_comment,
    STATE(1837), 1,
      sym_function_name,
  [85501] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(1551), 1,
      sym_comment,
    ACTIONS(333), 3,
      anon_sym_COLON,
      anon_sym_COMMA,
      anon_sym_RPAREN,
  [85516] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    STATE(1446), 1,
      sym_identifier,
    STATE(1552), 1,
      sym_comment,
    STATE(1840), 1,
      sym_function_name,
  [85535] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    STATE(1446), 1,
      sym_identifier,
    STATE(1553), 1,
      sym_comment,
    STATE(1846), 1,
      sym_function_name,
  [85554] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    STATE(1446), 1,
      sym_identifier,
    STATE(1554), 1,
      sym_comment,
    STATE(1848), 1,
      sym_function_name,
  [85573] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2392), 1,
      sym__identifier,
    ACTIONS(2394), 1,
      sym_left_paren,
    ACTIONS(2541), 1,
      sym_function_start,
    STATE(1555), 1,
      sym_comment,
  [85592] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2392), 1,
      sym__identifier,
    ACTIONS(2394), 1,
      sym_left_paren,
    ACTIONS(2543), 1,
      sym_function_start,
    STATE(1556), 1,
      sym_comment,
  [85611] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2392), 1,
      sym__identifier,
    ACTIONS(2394), 1,
      sym_left_paren,
    ACTIONS(2545), 1,
      sym_function_start,
    STATE(1557), 1,
      sym_comment,
  [85630] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2392), 1,
      sym__identifier,
    ACTIONS(2394), 1,
      sym_left_paren,
    ACTIONS(2547), 1,
      sym_function_start,
    STATE(1558), 1,
      sym_comment,
  [85649] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2419), 1,
      anon_sym_LBRACK_RBRACK,
    STATE(1559), 1,
      sym_comment,
    ACTIONS(2549), 2,
      anon_sym_COMMA,
      anon_sym_RBRACE,
  [85666] = 6,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2392), 1,
      sym__identifier,
    ACTIONS(2394), 1,
      sym_left_paren,
    ACTIONS(2551), 1,
      sym_function_start,
    STATE(1560), 1,
      sym_comment,
  [85685] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2553), 1,
      sym__string_content,
    ACTIONS(2555), 1,
      sym__string_end,
    STATE(1561), 1,
      sym_comment,
  [85701] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2557), 1,
      anon_sym_QMARK,
    ACTIONS(2559), 1,
      aux_sym_emmy_parameter_token2,
    STATE(1562), 1,
      sym_comment,
  [85717] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    STATE(1563), 1,
      sym_comment,
    STATE(1678), 1,
      sym_identifier,
  [85733] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    STATE(1564), 1,
      sym_comment,
    STATE(1847), 1,
      sym_identifier,
  [85749] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2561), 1,
      ts_builtin_sym_end,
    ACTIONS(2563), 1,
      anon_sym_,
    STATE(1565), 1,
      sym_comment,
  [85765] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    STATE(1566), 1,
      sym_comment,
    STATE(1845), 1,
      sym_identifier,
  [85781] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    STATE(1567), 1,
      sym_comment,
    STATE(1839), 1,
      sym_identifier,
  [85797] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2565), 1,
      aux_sym_documentation_tag_token1,
    STATE(1239), 1,
      sym_emmy_return_description,
    STATE(1568), 1,
      sym_comment,
  [85813] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    STATE(1569), 1,
      sym_comment,
    STATE(1836), 1,
      sym_identifier,
  [85829] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2519), 1,
      sym__identifier,
    STATE(1570), 1,
      sym_comment,
    STATE(1578), 1,
      sym_identifier,
  [85845] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2207), 1,
      sym__identifier,
    STATE(855), 1,
      sym_identifier,
    STATE(1571), 1,
      sym_comment,
  [85861] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    STATE(1572), 1,
      sym_comment,
    STATE(1828), 1,
      sym_identifier,
  [85877] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    STATE(1573), 1,
      sym_comment,
    STATE(1823), 1,
      sym_identifier,
  [85893] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2419), 1,
      anon_sym_LBRACK_RBRACK,
    ACTIONS(2567), 1,
      anon_sym_COMMA,
    STATE(1574), 1,
      sym_comment,
  [85909] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2569), 1,
      aux_sym_documentation_tag_token1,
    STATE(1044), 1,
      sym_documentation_tag,
    STATE(1575), 1,
      sym_comment,
  [85925] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2571), 1,
      sym__identifier,
    STATE(160), 1,
      sym_identifier,
    STATE(1576), 1,
      sym_comment,
  [85941] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2573), 1,
      sym__string_content,
    ACTIONS(2575), 1,
      sym__string_end,
    STATE(1577), 1,
      sym_comment,
  [85957] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2577), 1,
      anon_sym_QMARK,
    ACTIONS(2579), 1,
      aux_sym_emmy_parameter_token2,
    STATE(1578), 1,
      sym_comment,
  [85973] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2419), 1,
      anon_sym_LBRACK_RBRACK,
    ACTIONS(2581), 1,
      anon_sym_COMMA,
    STATE(1579), 1,
      sym_comment,
  [85989] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2583), 1,
      anon_sym_QMARK,
    ACTIONS(2585), 1,
      aux_sym_emmy_parameter_token2,
    STATE(1580), 1,
      sym_comment,
  [86005] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2587), 1,
      aux_sym_documentation_tag_token1,
    STATE(1581), 1,
      sym_comment,
    STATE(1660), 1,
      sym_documentation_brief,
  [86021] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2589), 1,
      sym__identifier,
    STATE(1333), 1,
      sym_identifier,
    STATE(1582), 1,
      sym_comment,
  [86037] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(481), 1,
      sym_right_paren,
    STATE(1583), 1,
      sym_comment,
  [86053] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2589), 1,
      sym__identifier,
    STATE(1330), 1,
      sym_identifier,
    STATE(1584), 1,
      sym_comment,
  [86069] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2591), 1,
      sym__string_content,
    ACTIONS(2593), 1,
      sym__string_end,
    STATE(1585), 1,
      sym_comment,
  [86085] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(439), 1,
      sym_right_paren,
    STATE(1586), 1,
      sym_comment,
  [86101] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2589), 1,
      sym__identifier,
    STATE(1336), 1,
      sym_identifier,
    STATE(1587), 1,
      sym_comment,
  [86117] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    STATE(1588), 1,
      sym_comment,
    STATE(1815), 1,
      sym_identifier,
  [86133] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(772), 1,
      anon_sym_RPAREN,
    STATE(300), 1,
      sym_right_paren,
    STATE(1589), 1,
      sym_comment,
  [86149] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(756), 1,
      anon_sym_RPAREN,
    STATE(63), 1,
      sym_right_paren,
    STATE(1590), 1,
      sym_comment,
  [86165] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2595), 1,
      aux_sym__documentation_brief_container_token2,
    ACTIONS(2597), 1,
      aux_sym_documentation_command_token3,
    STATE(1591), 1,
      sym_comment,
  [86181] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2589), 1,
      sym__identifier,
    STATE(1332), 1,
      sym_identifier,
    STATE(1592), 1,
      sym_comment,
  [86197] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(426), 1,
      sym_right_paren,
    STATE(1593), 1,
      sym_comment,
  [86213] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2519), 1,
      sym__identifier,
    STATE(1594), 1,
      sym_comment,
    STATE(1599), 1,
      sym_identifier,
  [86229] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2599), 1,
      sym__identifier,
    STATE(58), 1,
      sym_identifier,
    STATE(1595), 1,
      sym_comment,
  [86245] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2601), 1,
      sym__identifier,
    STATE(1372), 1,
      sym_emmy_identifier,
    STATE(1596), 1,
      sym_comment,
  [86261] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2589), 1,
      sym__identifier,
    STATE(1335), 1,
      sym_identifier,
    STATE(1597), 1,
      sym_comment,
  [86277] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(479), 1,
      sym_right_paren,
    STATE(1598), 1,
      sym_comment,
  [86293] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2603), 1,
      anon_sym_QMARK,
    ACTIONS(2605), 1,
      aux_sym_emmy_parameter_token2,
    STATE(1599), 1,
      sym_comment,
  [86309] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2589), 1,
      sym__identifier,
    STATE(1340), 1,
      sym_identifier,
    STATE(1600), 1,
      sym_comment,
  [86325] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(492), 1,
      sym_right_paren,
    STATE(1601), 1,
      sym_comment,
  [86341] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(490), 1,
      sym_right_paren,
    STATE(1602), 1,
      sym_comment,
  [86357] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(486), 1,
      sym_right_paren,
    STATE(1603), 1,
      sym_comment,
  [86373] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(476), 1,
      sym_right_paren,
    STATE(1604), 1,
      sym_comment,
  [86389] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(1605), 1,
      sym_comment,
    ACTIONS(2498), 2,
      anon_sym_COMMA,
      anon_sym_RBRACE,
  [86403] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(440), 1,
      sym_right_paren,
    STATE(1606), 1,
      sym_comment,
  [86419] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1051), 1,
      anon_sym_RPAREN,
    STATE(900), 1,
      sym_right_paren,
    STATE(1607), 1,
      sym_comment,
  [86435] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2589), 1,
      sym__identifier,
    STATE(1341), 1,
      sym_identifier,
    STATE(1608), 1,
      sym_comment,
  [86451] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2607), 1,
      sym__identifier,
    STATE(902), 1,
      sym_emmy_identifier,
    STATE(1609), 1,
      sym_comment,
  [86467] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(333), 1,
      aux_sym_emmy_parameter_token2,
    ACTIONS(335), 1,
      anon_sym_QMARK,
    STATE(1610), 1,
      sym_comment,
  [86483] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2419), 1,
      anon_sym_LBRACK_RBRACK,
    ACTIONS(2609), 1,
      anon_sym_GT,
    STATE(1611), 1,
      sym_comment,
  [86499] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2419), 1,
      anon_sym_LBRACK_RBRACK,
    ACTIONS(2611), 1,
      anon_sym_COMMA,
    STATE(1612), 1,
      sym_comment,
  [86515] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2607), 1,
      sym__identifier,
    STATE(911), 1,
      sym_emmy_identifier,
    STATE(1613), 1,
      sym_comment,
  [86531] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2613), 1,
      sym__identifier,
    STATE(1406), 1,
      sym_emmy_identifier,
    STATE(1614), 1,
      sym_comment,
  [86547] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2615), 1,
      sym__identifier,
    STATE(163), 1,
      sym_identifier,
    STATE(1615), 1,
      sym_comment,
  [86563] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(495), 1,
      sym_right_paren,
    STATE(1616), 1,
      sym_comment,
  [86579] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2617), 1,
      sym__string_content,
    ACTIONS(2619), 1,
      sym__string_end,
    STATE(1617), 1,
      sym_comment,
  [86595] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(464), 1,
      sym_right_paren,
    STATE(1618), 1,
      sym_comment,
  [86611] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2589), 1,
      sym__identifier,
    STATE(296), 1,
      sym_identifier,
    STATE(1619), 1,
      sym_comment,
  [86627] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2419), 1,
      anon_sym_LBRACK_RBRACK,
    ACTIONS(2621), 1,
      anon_sym_GT,
    STATE(1620), 1,
      sym_comment,
  [86643] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2623), 1,
      ts_builtin_sym_end,
    ACTIONS(2625), 1,
      anon_sym_,
    STATE(1621), 1,
      sym_comment,
  [86659] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(460), 1,
      sym_right_paren,
    STATE(1622), 1,
      sym_comment,
  [86675] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(496), 1,
      sym_right_paren,
    STATE(1623), 1,
      sym_comment,
  [86691] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    STATE(1624), 1,
      sym_comment,
    STATE(1703), 1,
      sym_identifier,
  [86707] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1053), 1,
      anon_sym_RPAREN,
    STATE(594), 1,
      sym_right_paren,
    STATE(1625), 1,
      sym_comment,
  [86723] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(503), 1,
      sym_right_paren,
    STATE(1626), 1,
      sym_comment,
  [86739] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(760), 1,
      anon_sym_RPAREN,
    STATE(210), 1,
      sym_right_paren,
    STATE(1627), 1,
      sym_comment,
  [86755] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    STATE(1628), 1,
      sym_comment,
    ACTIONS(2409), 2,
      anon_sym_COMMA,
      anon_sym_RPAREN,
  [86769] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2613), 1,
      sym__identifier,
    STATE(1423), 1,
      sym_emmy_identifier,
    STATE(1629), 1,
      sym_comment,
  [86785] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2419), 1,
      anon_sym_LBRACK_RBRACK,
    ACTIONS(2627), 1,
      anon_sym_GT,
    STATE(1630), 1,
      sym_comment,
  [86801] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2589), 1,
      sym__identifier,
    STATE(1334), 1,
      sym_identifier,
    STATE(1631), 1,
      sym_comment,
  [86817] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2211), 1,
      sym__identifier,
    STATE(610), 1,
      sym_identifier,
    STATE(1632), 1,
      sym_comment,
  [86833] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2629), 1,
      sym__identifier,
    STATE(213), 1,
      sym_identifier,
    STATE(1633), 1,
      sym_comment,
  [86849] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2631), 1,
      sym__string_content,
    ACTIONS(2633), 1,
      sym__string_end,
    STATE(1634), 1,
      sym_comment,
  [86865] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(472), 1,
      sym_right_paren,
    STATE(1635), 1,
      sym_comment,
  [86881] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(468), 1,
      sym_right_paren,
    STATE(1636), 1,
      sym_comment,
  [86897] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2635), 1,
      aux_sym_emmy_class_token4,
    ACTIONS(2637), 1,
      aux_sym__multiline_emmy_string_token2,
    STATE(1637), 1,
      sym_comment,
  [86913] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2639), 1,
      ts_builtin_sym_end,
    ACTIONS(2641), 1,
      anon_sym_,
    STATE(1638), 1,
      sym_comment,
  [86929] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(430), 1,
      sym_right_paren,
    STATE(1639), 1,
      sym_comment,
  [86945] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(433), 1,
      sym_right_paren,
    STATE(1640), 1,
      sym_comment,
  [86961] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2218), 1,
      sym__identifier,
    STATE(575), 1,
      sym_identifier,
    STATE(1641), 1,
      sym_comment,
  [86977] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(441), 1,
      sym_right_paren,
    STATE(1642), 1,
      sym_comment,
  [86993] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    STATE(1494), 1,
      sym_identifier,
    STATE(1643), 1,
      sym_comment,
  [87009] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(770), 1,
      anon_sym_RPAREN,
    STATE(155), 1,
      sym_right_paren,
    STATE(1644), 1,
      sym_comment,
  [87025] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(445), 1,
      sym_right_paren,
    STATE(1645), 1,
      sym_comment,
  [87041] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(451), 1,
      sym_right_paren,
    STATE(1646), 1,
      sym_comment,
  [87057] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2589), 1,
      sym__identifier,
    STATE(1338), 1,
      sym_identifier,
    STATE(1647), 1,
      sym_comment,
  [87073] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2643), 1,
      sym__string_content,
    ACTIONS(2645), 1,
      sym__string_end,
    STATE(1648), 1,
      sym_comment,
  [87089] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2647), 1,
      sym__identifier,
    STATE(87), 1,
      sym_identifier,
    STATE(1649), 1,
      sym_comment,
  [87105] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2589), 1,
      sym__identifier,
    STATE(1337), 1,
      sym_identifier,
    STATE(1650), 1,
      sym_comment,
  [87121] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2649), 1,
      sym__string_content,
    ACTIONS(2651), 1,
      sym__string_end,
    STATE(1651), 1,
      sym_comment,
  [87137] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    STATE(1652), 1,
      sym_comment,
    STATE(1813), 1,
      sym_identifier,
  [87153] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2230), 1,
      anon_sym_RPAREN,
    STATE(423), 1,
      sym_right_paren,
    STATE(1653), 1,
      sym_comment,
  [87169] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2228), 1,
      sym__identifier,
    STATE(1544), 1,
      sym_identifier,
    STATE(1654), 1,
      sym_comment,
  [87185] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2653), 1,
      sym__string_content,
    ACTIONS(2655), 1,
      sym__string_end,
    STATE(1655), 1,
      sym_comment,
  [87201] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2657), 1,
      sym__string_content,
    ACTIONS(2659), 1,
      sym__string_end,
    STATE(1656), 1,
      sym_comment,
  [87217] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2661), 1,
      aux_sym__documentation_brief_container_token2,
    ACTIONS(2663), 1,
      aux_sym__documentation_brief_container_token3,
    STATE(1657), 1,
      sym_comment,
  [87233] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2665), 1,
      sym__string_content,
    ACTIONS(2667), 1,
      sym__string_end,
    STATE(1658), 1,
      sym_comment,
  [87249] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(768), 1,
      anon_sym_RPAREN,
    STATE(171), 1,
      sym_right_paren,
    STATE(1659), 1,
      sym_comment,
  [87265] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2443), 1,
      aux_sym__documentation_brief_container_token3,
    ACTIONS(2669), 1,
      aux_sym__documentation_brief_container_token2,
    STATE(1660), 1,
      sym_comment,
  [87281] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2671), 1,
      sym__string_content,
    ACTIONS(2673), 1,
      sym__string_end,
    STATE(1661), 1,
      sym_comment,
  [87297] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2675), 1,
      sym__string_content,
    ACTIONS(2677), 1,
      sym__string_end,
    STATE(1662), 1,
      sym_comment,
  [87313] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2205), 1,
      sym__identifier,
    STATE(869), 1,
      sym_identifier,
    STATE(1663), 1,
      sym_comment,
  [87329] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2679), 1,
      sym__block_comment_content,
    ACTIONS(2681), 1,
      sym__block_comment_end,
    STATE(1664), 1,
      sym_comment,
  [87345] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2683), 1,
      sym__string_content,
    ACTIONS(2685), 1,
      sym__string_end,
    STATE(1665), 1,
      sym_comment,
  [87361] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1041), 1,
      anon_sym_RPAREN,
    STATE(976), 1,
      sym_right_paren,
    STATE(1666), 1,
      sym_comment,
  [87377] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2687), 1,
      sym__string_content,
    ACTIONS(2689), 1,
      sym__string_end,
    STATE(1667), 1,
      sym_comment,
  [87393] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2691), 1,
      sym__string_content,
    ACTIONS(2693), 1,
      sym__string_end,
    STATE(1668), 1,
      sym_comment,
  [87409] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(1049), 1,
      anon_sym_RPAREN,
    STATE(829), 1,
      sym_right_paren,
    STATE(1669), 1,
      sym_comment,
  [87425] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2695), 1,
      sym__string_content,
    ACTIONS(2697), 1,
      sym__string_end,
    STATE(1670), 1,
      sym_comment,
  [87441] = 5,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2699), 1,
      aux_sym__documentation_brief_container_token2,
    STATE(1482), 1,
      aux_sym_documentation_command_repeat1,
    STATE(1671), 1,
      sym_comment,
  [87457] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2701), 1,
      sym__string_content,
    ACTIONS(2703), 1,
      sym__string_end,
    STATE(1672), 1,
      sym_comment,
  [87473] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(758), 1,
      anon_sym_RPAREN,
    STATE(99), 1,
      sym_right_paren,
    STATE(1673), 1,
      sym_comment,
  [87489] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2705), 1,
      sym__string_content,
    ACTIONS(2707), 1,
      sym__string_end,
    STATE(1674), 1,
      sym_comment,
  [87505] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2709), 1,
      sym__string_content,
    ACTIONS(2711), 1,
      sym__string_end,
    STATE(1675), 1,
      sym_comment,
  [87521] = 5,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2601), 1,
      sym__identifier,
    STATE(1357), 1,
      sym_emmy_identifier,
    STATE(1676), 1,
      sym_comment,
  [87537] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2713), 1,
      anon_sym_end,
    STATE(1677), 1,
      sym_comment,
  [87550] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2715), 1,
      sym_left_paren,
    STATE(1678), 1,
      sym_comment,
  [87563] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2717), 1,
      anon_sym_RBRACE,
    STATE(1679), 1,
      sym_comment,
  [87576] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2719), 1,
      aux_sym_emmy_parameter_token2,
    STATE(1680), 1,
      sym_comment,
  [87589] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2721), 1,
      aux_sym_emmy_class_token4,
    STATE(1681), 1,
      sym_comment,
  [87602] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2723), 1,
      anon_sym_end,
    STATE(1682), 1,
      sym_comment,
  [87615] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2725), 1,
      anon_sym_end,
    STATE(1683), 1,
      sym_comment,
  [87628] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2727), 1,
      sym__string_end,
    STATE(1684), 1,
      sym_comment,
  [87641] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2729), 1,
      anon_sym_RBRACE,
    STATE(1685), 1,
      sym_comment,
  [87654] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2731), 1,
      aux_sym_emmy_parameter_token2,
    STATE(1686), 1,
      sym_comment,
  [87667] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2733), 1,
      sym__identifier,
    STATE(1687), 1,
      sym_comment,
  [87680] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2735), 1,
      anon_sym_do,
    STATE(1688), 1,
      sym_comment,
  [87693] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2737), 1,
      sym__string_end,
    STATE(1689), 1,
      sym_comment,
  [87706] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2739), 1,
      anon_sym_RBRACE,
    STATE(1690), 1,
      sym_comment,
  [87719] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2741), 1,
      sym__string_end,
    STATE(1691), 1,
      sym_comment,
  [87732] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2743), 1,
      aux_sym_emmy_class_token4,
    STATE(1692), 1,
      sym_comment,
  [87745] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2745), 1,
      sym__string_end,
    STATE(1693), 1,
      sym_comment,
  [87758] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2747), 1,
      anon_sym_RBRACE,
    STATE(1694), 1,
      sym_comment,
  [87771] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2749), 1,
      aux_sym_emmy_class_token4,
    STATE(1695), 1,
      sym_comment,
  [87784] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2751), 1,
      aux_sym_emmy_class_token4,
    STATE(1696), 1,
      sym_comment,
  [87797] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2753), 1,
      sym__string_end,
    STATE(1697), 1,
      sym_comment,
  [87810] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2755), 1,
      anon_sym_RBRACE,
    STATE(1698), 1,
      sym_comment,
  [87823] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2757), 1,
      aux_sym_function_statement_token1,
    STATE(1699), 1,
      sym_comment,
  [87836] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2759), 1,
      aux_sym_emmy_parameter_token2,
    STATE(1700), 1,
      sym_comment,
  [87849] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2761), 1,
      sym__string_end,
    STATE(1701), 1,
      sym_comment,
  [87862] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2763), 1,
      anon_sym_RBRACE,
    STATE(1702), 1,
      sym_comment,
  [87875] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2765), 1,
      sym_left_paren,
    STATE(1703), 1,
      sym_comment,
  [87888] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2767), 1,
      anon_sym_RBRACE,
    STATE(1704), 1,
      sym_comment,
  [87901] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2769), 1,
      sym__string_end,
    STATE(1705), 1,
      sym_comment,
  [87914] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2771), 1,
      anon_sym_RBRACE,
    STATE(1706), 1,
      sym_comment,
  [87927] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2773), 1,
      sym__string_end,
    STATE(1707), 1,
      sym_comment,
  [87940] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2775), 1,
      aux_sym_emmy_class_token4,
    STATE(1708), 1,
      sym_comment,
  [87953] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2777), 1,
      sym__string_end,
    STATE(1709), 1,
      sym_comment,
  [87966] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2779), 1,
      anon_sym_RBRACE,
    STATE(1710), 1,
      sym_comment,
  [87979] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2781), 1,
      anon_sym_end,
    STATE(1711), 1,
      sym_comment,
  [87992] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2783), 1,
      sym__string_end,
    STATE(1712), 1,
      sym_comment,
  [88005] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2785), 1,
      anon_sym_end,
    STATE(1713), 1,
      sym_comment,
  [88018] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2787), 1,
      sym__string_end,
    STATE(1714), 1,
      sym_comment,
  [88031] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2789), 1,
      sym_left_paren,
    STATE(1715), 1,
      sym_comment,
  [88044] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2791), 1,
      sym__string_end,
    STATE(1716), 1,
      sym_comment,
  [88057] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2793), 1,
      anon_sym_end,
    STATE(1717), 1,
      sym_comment,
  [88070] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2795), 1,
      anon_sym_end,
    STATE(1718), 1,
      sym_comment,
  [88083] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2797), 1,
      anon_sym_RBRACE,
    STATE(1719), 1,
      sym_comment,
  [88096] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2799), 1,
      anon_sym_end,
    STATE(1720), 1,
      sym_comment,
  [88109] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2801), 1,
      sym__string_end,
    STATE(1721), 1,
      sym_comment,
  [88122] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2803), 1,
      anon_sym_until,
    STATE(1722), 1,
      sym_comment,
  [88135] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2805), 1,
      anon_sym_RPAREN,
    STATE(1723), 1,
      sym_comment,
  [88148] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2807), 1,
      anon_sym_end,
    STATE(1724), 1,
      sym_comment,
  [88161] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2809), 1,
      anon_sym_do,
    STATE(1725), 1,
      sym_comment,
  [88174] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2811), 1,
      anon_sym_RBRACE,
    STATE(1726), 1,
      sym_comment,
  [88187] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2813), 1,
      sym__string_end,
    STATE(1727), 1,
      sym_comment,
  [88200] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2815), 1,
      sym_left_paren,
    STATE(1728), 1,
      sym_comment,
  [88213] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2817), 1,
      anon_sym_end,
    STATE(1729), 1,
      sym_comment,
  [88226] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2819), 1,
      anon_sym_end,
    STATE(1730), 1,
      sym_comment,
  [88239] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2821), 1,
      sym_documentation_command_content,
    STATE(1731), 1,
      sym_comment,
  [88252] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2823), 1,
      anon_sym_end,
    STATE(1732), 1,
      sym_comment,
  [88265] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2419), 1,
      anon_sym_LBRACK_RBRACK,
    STATE(1733), 1,
      sym_comment,
  [88278] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2825), 1,
      anon_sym_end,
    STATE(1734), 1,
      sym_comment,
  [88291] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2827), 1,
      aux_sym_emmy_class_token4,
    STATE(1735), 1,
      sym_comment,
  [88304] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2829), 1,
      anon_sym_end,
    STATE(1736), 1,
      sym_comment,
  [88317] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2831), 1,
      aux_sym_emmy_class_token4,
    STATE(1737), 1,
      sym_comment,
  [88330] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2833), 1,
      anon_sym_end,
    STATE(1738), 1,
      sym_comment,
  [88343] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2835), 1,
      anon_sym_end,
    STATE(1739), 1,
      sym_comment,
  [88356] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2837), 1,
      aux_sym_emmy_class_token4,
    STATE(1740), 1,
      sym_comment,
  [88369] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2839), 1,
      aux_sym_emmy_class_token4,
    STATE(1741), 1,
      sym_comment,
  [88382] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2841), 1,
      aux_sym_emmy_class_token4,
    STATE(1742), 1,
      sym_comment,
  [88395] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2843), 1,
      anon_sym_end,
    STATE(1743), 1,
      sym_comment,
  [88408] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2845), 1,
      anon_sym_end,
    STATE(1744), 1,
      sym_comment,
  [88421] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2847), 1,
      anon_sym_end,
    STATE(1745), 1,
      sym_comment,
  [88434] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2849), 1,
      anon_sym_end,
    STATE(1746), 1,
      sym_comment,
  [88447] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2851), 1,
      aux_sym_emmy_class_token4,
    STATE(1747), 1,
      sym_comment,
  [88460] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2853), 1,
      anon_sym_COLON,
    STATE(1748), 1,
      sym_comment,
  [88473] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2855), 1,
      aux_sym_function_statement_token1,
    STATE(1749), 1,
      sym_comment,
  [88486] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2857), 1,
      anon_sym_RBRACE,
    STATE(1750), 1,
      sym_comment,
  [88499] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2859), 1,
      anon_sym_end,
    STATE(1751), 1,
      sym_comment,
  [88512] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2861), 1,
      anon_sym_end,
    STATE(1752), 1,
      sym_comment,
  [88525] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2863), 1,
      anon_sym_end,
    STATE(1753), 1,
      sym_comment,
  [88538] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2865), 1,
      ts_builtin_sym_end,
    STATE(1754), 1,
      sym_comment,
  [88551] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2867), 1,
      aux_sym_emmy_class_token4,
    STATE(1755), 1,
      sym_comment,
  [88564] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2869), 1,
      ts_builtin_sym_end,
    STATE(1756), 1,
      sym_comment,
  [88577] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2871), 1,
      aux_sym_emmy_class_token4,
    STATE(1757), 1,
      sym_comment,
  [88590] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2873), 1,
      anon_sym_end,
    STATE(1758), 1,
      sym_comment,
  [88603] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2875), 1,
      ts_builtin_sym_end,
    STATE(1759), 1,
      sym_comment,
  [88616] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2877), 1,
      anon_sym_until,
    STATE(1760), 1,
      sym_comment,
  [88629] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2879), 1,
      anon_sym_end,
    STATE(1761), 1,
      sym_comment,
  [88642] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2881), 1,
      aux_sym_emmy_class_token4,
    STATE(1762), 1,
      sym_comment,
  [88655] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2883), 1,
      anon_sym_do,
    STATE(1763), 1,
      sym_comment,
  [88668] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2885), 1,
      anon_sym_end,
    STATE(1764), 1,
      sym_comment,
  [88681] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2887), 1,
      anon_sym_end,
    STATE(1765), 1,
      sym_comment,
  [88694] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2284), 1,
      anon_sym_end,
    STATE(1766), 1,
      sym_comment,
  [88707] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2889), 1,
      aux_sym_emmy_class_token4,
    STATE(1767), 1,
      sym_comment,
  [88720] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2891), 1,
      anon_sym_end,
    STATE(1768), 1,
      sym_comment,
  [88733] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2893), 1,
      anon_sym_end,
    STATE(1769), 1,
      sym_comment,
  [88746] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2895), 1,
      anon_sym_end,
    STATE(1770), 1,
      sym_comment,
  [88759] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2270), 1,
      anon_sym_end,
    STATE(1771), 1,
      sym_comment,
  [88772] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2897), 1,
      sym__identifier,
    STATE(1772), 1,
      sym_comment,
  [88785] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2899), 1,
      anon_sym_RBRACE,
    STATE(1773), 1,
      sym_comment,
  [88798] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2901), 1,
      anon_sym_RBRACE,
    STATE(1774), 1,
      sym_comment,
  [88811] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2903), 1,
      anon_sym_end,
    STATE(1775), 1,
      sym_comment,
  [88824] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2905), 1,
      aux_sym_emmy_parameter_token2,
    STATE(1776), 1,
      sym_comment,
  [88837] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2907), 1,
      sym__string_end,
    STATE(1777), 1,
      sym_comment,
  [88850] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2909), 1,
      sym__string_end,
    STATE(1778), 1,
      sym_comment,
  [88863] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2911), 1,
      sym__string_end,
    STATE(1779), 1,
      sym_comment,
  [88876] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2913), 1,
      anon_sym_end,
    STATE(1780), 1,
      sym_comment,
  [88889] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2915), 1,
      aux_sym_emmy_class_token4,
    STATE(1781), 1,
      sym_comment,
  [88902] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2917), 1,
      anon_sym_end,
    STATE(1782), 1,
      sym_comment,
  [88915] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2919), 1,
      anon_sym_until,
    STATE(1783), 1,
      sym_comment,
  [88928] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2921), 1,
      anon_sym_end,
    STATE(1784), 1,
      sym_comment,
  [88941] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2923), 1,
      anon_sym_end,
    STATE(1785), 1,
      sym_comment,
  [88954] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2925), 1,
      anon_sym_do,
    STATE(1786), 1,
      sym_comment,
  [88967] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2927), 1,
      anon_sym_end,
    STATE(1787), 1,
      sym_comment,
  [88980] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2929), 1,
      anon_sym_end,
    STATE(1788), 1,
      sym_comment,
  [88993] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2931), 1,
      anon_sym_end,
    STATE(1789), 1,
      sym_comment,
  [89006] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2933), 1,
      aux_sym_documentation_tag_token1,
    STATE(1790), 1,
      sym_comment,
  [89019] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2935), 1,
      aux_sym_documentation_tag_token1,
    STATE(1791), 1,
      sym_comment,
  [89032] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2937), 1,
      anon_sym_end,
    STATE(1792), 1,
      sym_comment,
  [89045] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2939), 1,
      aux_sym_documentation_tag_token1,
    STATE(1793), 1,
      sym_comment,
  [89058] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2941), 1,
      anon_sym_end,
    STATE(1794), 1,
      sym_comment,
  [89071] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2943), 1,
      anon_sym_end,
    STATE(1795), 1,
      sym_comment,
  [89084] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2945), 1,
      aux_sym_documentation_tag_token1,
    STATE(1796), 1,
      sym_comment,
  [89097] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2947), 1,
      sym__identifier,
    STATE(1797), 1,
      sym_comment,
  [89110] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2949), 1,
      anon_sym_end,
    STATE(1798), 1,
      sym_comment,
  [89123] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2951), 1,
      anon_sym_end,
    STATE(1799), 1,
      sym_comment,
  [89136] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2953), 1,
      aux_sym_emmy_parameter_token2,
    STATE(1800), 1,
      sym_comment,
  [89149] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2955), 1,
      anon_sym_end,
    STATE(1801), 1,
      sym_comment,
  [89162] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2957), 1,
      aux_sym_documentation_tag_token1,
    STATE(1802), 1,
      sym_comment,
  [89175] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2959), 1,
      anon_sym_LBRACK_RBRACK,
    STATE(1803), 1,
      sym_comment,
  [89188] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2961), 1,
      anon_sym_COLON,
    STATE(1804), 1,
      sym_comment,
  [89201] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2963), 1,
      anon_sym_RBRACE,
    STATE(1805), 1,
      sym_comment,
  [89214] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2330), 1,
      anon_sym_end,
    STATE(1806), 1,
      sym_comment,
  [89227] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2965), 1,
      sym__string_end,
    STATE(1807), 1,
      sym_comment,
  [89240] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2967), 1,
      anon_sym_end,
    STATE(1808), 1,
      sym_comment,
  [89253] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2969), 1,
      anon_sym_end,
    STATE(1809), 1,
      sym_comment,
  [89266] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2971), 1,
      ts_builtin_sym_end,
    STATE(1810), 1,
      sym_comment,
  [89279] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2973), 1,
      anon_sym_end,
    STATE(1811), 1,
      sym_comment,
  [89292] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2975), 1,
      anon_sym_end,
    STATE(1812), 1,
      sym_comment,
  [89305] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2977), 1,
      sym_left_paren,
    STATE(1813), 1,
      sym_comment,
  [89318] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2979), 1,
      aux_sym_comment_token1,
    STATE(1814), 1,
      sym_comment,
  [89331] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2981), 1,
      sym_left_paren,
    STATE(1815), 1,
      sym_comment,
  [89344] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2506), 1,
      anon_sym_RPAREN,
    STATE(1816), 1,
      sym_comment,
  [89357] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2983), 1,
      anon_sym_end,
    STATE(1817), 1,
      sym_comment,
  [89370] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2985), 1,
      anon_sym_end,
    STATE(1818), 1,
      sym_comment,
  [89383] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2987), 1,
      aux_sym_documentation_command_token2,
    STATE(1819), 1,
      sym_comment,
  [89396] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2989), 1,
      anon_sym_RBRACE,
    STATE(1820), 1,
      sym_comment,
  [89409] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2991), 1,
      sym_left_paren,
    STATE(1821), 1,
      sym_comment,
  [89422] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(2993), 1,
      aux_sym_function_statement_token1,
    STATE(1822), 1,
      sym_comment,
  [89435] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2995), 1,
      sym_left_paren,
    STATE(1823), 1,
      sym_comment,
  [89448] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2997), 1,
      sym_left_paren,
    STATE(1824), 1,
      sym_comment,
  [89461] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2999), 1,
      sym__string_end,
    STATE(1825), 1,
      sym_comment,
  [89474] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2022), 1,
      anon_sym_LBRACK_RBRACK,
    STATE(1826), 1,
      sym_comment,
  [89487] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(3001), 1,
      aux_sym_emmy_parameter_token2,
    STATE(1827), 1,
      sym_comment,
  [89500] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3003), 1,
      sym_left_paren,
    STATE(1828), 1,
      sym_comment,
  [89513] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3005), 1,
      sym_left_paren,
    STATE(1829), 1,
      sym_comment,
  [89526] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3007), 1,
      anon_sym_end,
    STATE(1830), 1,
      sym_comment,
  [89539] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(3009), 1,
      aux_sym_emmy_parameter_token2,
    STATE(1831), 1,
      sym_comment,
  [89552] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3011), 1,
      anon_sym_RPAREN,
    STATE(1832), 1,
      sym_comment,
  [89565] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3013), 1,
      anon_sym_end,
    STATE(1833), 1,
      sym_comment,
  [89578] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3015), 1,
      anon_sym_end,
    STATE(1834), 1,
      sym_comment,
  [89591] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3017), 1,
      sym_left_paren,
    STATE(1835), 1,
      sym_comment,
  [89604] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3019), 1,
      sym_left_paren,
    STATE(1836), 1,
      sym_comment,
  [89617] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3021), 1,
      sym_left_paren,
    STATE(1837), 1,
      sym_comment,
  [89630] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3023), 1,
      anon_sym_end,
    STATE(1838), 1,
      sym_comment,
  [89643] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3025), 1,
      sym_left_paren,
    STATE(1839), 1,
      sym_comment,
  [89656] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3027), 1,
      sym_left_paren,
    STATE(1840), 1,
      sym_comment,
  [89669] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3029), 1,
      anon_sym_end,
    STATE(1841), 1,
      sym_comment,
  [89682] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3031), 1,
      anon_sym_do,
    STATE(1842), 1,
      sym_comment,
  [89695] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3033), 1,
      anon_sym_in,
    STATE(1843), 1,
      sym_comment,
  [89708] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3035), 1,
      sym_left_paren,
    STATE(1844), 1,
      sym_comment,
  [89721] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3037), 1,
      sym_left_paren,
    STATE(1845), 1,
      sym_comment,
  [89734] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3039), 1,
      sym_left_paren,
    STATE(1846), 1,
      sym_comment,
  [89747] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3041), 1,
      sym_left_paren,
    STATE(1847), 1,
      sym_comment,
  [89760] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3043), 1,
      sym_left_paren,
    STATE(1848), 1,
      sym_comment,
  [89773] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3045), 1,
      sym_left_paren,
    STATE(1849), 1,
      sym_comment,
  [89786] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3047), 1,
      sym_left_paren,
    STATE(1850), 1,
      sym_comment,
  [89799] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3049), 1,
      anon_sym_end,
    STATE(1851), 1,
      sym_comment,
  [89812] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(403), 1,
      ts_builtin_sym_end,
    STATE(1852), 1,
      sym_comment,
  [89825] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(3051), 1,
      sym_documentation_command_content,
    STATE(1853), 1,
      sym_comment,
  [89838] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3053), 1,
      anon_sym_until,
    STATE(1854), 1,
      sym_comment,
  [89851] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3055), 1,
      anon_sym_end,
    STATE(1855), 1,
      sym_comment,
  [89864] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(2334), 1,
      anon_sym_end,
    STATE(1856), 1,
      sym_comment,
  [89877] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3057), 1,
      anon_sym_end,
    STATE(1857), 1,
      sym_comment,
  [89890] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3059), 1,
      anon_sym_EQ,
    STATE(1858), 1,
      sym_comment,
  [89903] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(3061), 1,
      aux_sym_documentation_tag_token1,
    STATE(1859), 1,
      sym_comment,
  [89916] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3063), 1,
      anon_sym_end,
    STATE(1860), 1,
      sym_comment,
  [89929] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3065), 1,
      anon_sym_end,
    STATE(1861), 1,
      sym_comment,
  [89942] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3067), 1,
      ts_builtin_sym_end,
    STATE(1862), 1,
      sym_comment,
  [89955] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3069), 1,
      anon_sym_end,
    STATE(1863), 1,
      sym_comment,
  [89968] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3071), 1,
      anon_sym_EQ,
    STATE(1864), 1,
      sym_comment,
  [89981] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3073), 1,
      anon_sym_end,
    STATE(1865), 1,
      sym_comment,
  [89994] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3075), 1,
      sym_left_paren,
    STATE(1866), 1,
      sym_comment,
  [90007] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3077), 1,
      sym__block_comment_end,
    STATE(1867), 1,
      sym_comment,
  [90020] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(3079), 1,
      aux_sym_function_statement_token1,
    STATE(1868), 1,
      sym_comment,
  [90033] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3081), 1,
      anon_sym_end,
    STATE(1869), 1,
      sym_comment,
  [90046] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(3083), 1,
      aux_sym_function_statement_token1,
    STATE(1870), 1,
      sym_comment,
  [90059] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(3085), 1,
      aux_sym_emmy_parameter_token2,
    STATE(1871), 1,
      sym_comment,
  [90072] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(3087), 1,
      anon_sym_end,
    STATE(1872), 1,
      sym_comment,
  [90085] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(3089), 1,
      aux_sym_function_statement_token1,
    STATE(1873), 1,
      sym_comment,
  [90098] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(3091), 1,
      aux_sym_function_statement_token1,
    STATE(1874), 1,
      sym_comment,
  [90111] = 4,
    ACTIONS(3), 1,
      anon_sym_DASH_DASH,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(3093), 1,
      aux_sym_function_statement_token1,
    STATE(1875), 1,
      sym_comment,
  [90124] = 4,
    ACTIONS(5), 1,
      sym__block_comment_start,
    ACTIONS(399), 1,
      anon_sym_DASH_DASH,
    ACTIONS(407), 1,
      ts_builtin_sym_end,
    STATE(1876), 1,
      sym_comment,
  [90137] = 1,
    ACTIONS(3095), 1,
      ts_builtin_sym_end,
  [90141] = 1,
    ACTIONS(3097), 1,
      ts_builtin_sym_end,
  [90145] = 1,
    ACTIONS(3099), 1,
      ts_builtin_sym_end,
};

static const uint32_t ts_small_parse_table_map[] = {
  [SMALL_STATE(2)] = 0,
  [SMALL_STATE(3)] = 128,
  [SMALL_STATE(4)] = 256,
  [SMALL_STATE(5)] = 384,
  [SMALL_STATE(6)] = 512,
  [SMALL_STATE(7)] = 640,
  [SMALL_STATE(8)] = 768,
  [SMALL_STATE(9)] = 896,
  [SMALL_STATE(10)] = 1024,
  [SMALL_STATE(11)] = 1119,
  [SMALL_STATE(12)] = 1242,
  [SMALL_STATE(13)] = 1337,
  [SMALL_STATE(14)] = 1459,
  [SMALL_STATE(15)] = 1581,
  [SMALL_STATE(16)] = 1706,
  [SMALL_STATE(17)] = 1831,
  [SMALL_STATE(18)] = 1956,
  [SMALL_STATE(19)] = 2081,
  [SMALL_STATE(20)] = 2206,
  [SMALL_STATE(21)] = 2331,
  [SMALL_STATE(22)] = 2456,
  [SMALL_STATE(23)] = 2577,
  [SMALL_STATE(24)] = 2702,
  [SMALL_STATE(25)] = 2794,
  [SMALL_STATE(26)] = 2914,
  [SMALL_STATE(27)] = 3006,
  [SMALL_STATE(28)] = 3129,
  [SMALL_STATE(29)] = 3252,
  [SMALL_STATE(30)] = 3375,
  [SMALL_STATE(31)] = 3494,
  [SMALL_STATE(32)] = 3617,
  [SMALL_STATE(33)] = 3740,
  [SMALL_STATE(34)] = 3863,
  [SMALL_STATE(35)] = 3982,
  [SMALL_STATE(36)] = 4105,
  [SMALL_STATE(37)] = 4228,
  [SMALL_STATE(38)] = 4351,
  [SMALL_STATE(39)] = 4474,
  [SMALL_STATE(40)] = 4597,
  [SMALL_STATE(41)] = 4720,
  [SMALL_STATE(42)] = 4843,
  [SMALL_STATE(43)] = 4966,
  [SMALL_STATE(44)] = 5089,
  [SMALL_STATE(45)] = 5212,
  [SMALL_STATE(46)] = 5302,
  [SMALL_STATE(47)] = 5392,
  [SMALL_STATE(48)] = 5482,
  [SMALL_STATE(49)] = 5600,
  [SMALL_STATE(50)] = 5690,
  [SMALL_STATE(51)] = 5808,
  [SMALL_STATE(52)] = 5897,
  [SMALL_STATE(53)] = 6014,
  [SMALL_STATE(54)] = 6131,
  [SMALL_STATE(55)] = 6248,
  [SMALL_STATE(56)] = 6337,
  [SMALL_STATE(57)] = 6454,
  [SMALL_STATE(58)] = 6571,
  [SMALL_STATE(59)] = 6633,
  [SMALL_STATE(60)] = 6695,
  [SMALL_STATE(61)] = 6757,
  [SMALL_STATE(62)] = 6819,
  [SMALL_STATE(63)] = 6881,
  [SMALL_STATE(64)] = 6943,
  [SMALL_STATE(65)] = 7005,
  [SMALL_STATE(66)] = 7067,
  [SMALL_STATE(67)] = 7129,
  [SMALL_STATE(68)] = 7191,
  [SMALL_STATE(69)] = 7253,
  [SMALL_STATE(70)] = 7315,
  [SMALL_STATE(71)] = 7377,
  [SMALL_STATE(72)] = 7439,
  [SMALL_STATE(73)] = 7501,
  [SMALL_STATE(74)] = 7563,
  [SMALL_STATE(75)] = 7625,
  [SMALL_STATE(76)] = 7687,
  [SMALL_STATE(77)] = 7749,
  [SMALL_STATE(78)] = 7811,
  [SMALL_STATE(79)] = 7873,
  [SMALL_STATE(80)] = 7960,
  [SMALL_STATE(81)] = 8047,
  [SMALL_STATE(82)] = 8106,
  [SMALL_STATE(83)] = 8227,
  [SMALL_STATE(84)] = 8286,
  [SMALL_STATE(85)] = 8407,
  [SMALL_STATE(86)] = 8466,
  [SMALL_STATE(87)] = 8525,
  [SMALL_STATE(88)] = 8584,
  [SMALL_STATE(89)] = 8643,
  [SMALL_STATE(90)] = 8702,
  [SMALL_STATE(91)] = 8761,
  [SMALL_STATE(92)] = 8820,
  [SMALL_STATE(93)] = 8879,
  [SMALL_STATE(94)] = 8938,
  [SMALL_STATE(95)] = 8997,
  [SMALL_STATE(96)] = 9056,
  [SMALL_STATE(97)] = 9115,
  [SMALL_STATE(98)] = 9174,
  [SMALL_STATE(99)] = 9233,
  [SMALL_STATE(100)] = 9292,
  [SMALL_STATE(101)] = 9351,
  [SMALL_STATE(102)] = 9472,
  [SMALL_STATE(103)] = 9531,
  [SMALL_STATE(104)] = 9590,
  [SMALL_STATE(105)] = 9649,
  [SMALL_STATE(106)] = 9739,
  [SMALL_STATE(107)] = 9829,
  [SMALL_STATE(108)] = 9919,
  [SMALL_STATE(109)] = 10009,
  [SMALL_STATE(110)] = 10099,
  [SMALL_STATE(111)] = 10189,
  [SMALL_STATE(112)] = 10279,
  [SMALL_STATE(113)] = 10369,
  [SMALL_STATE(114)] = 10459,
  [SMALL_STATE(115)] = 10549,
  [SMALL_STATE(116)] = 10639,
  [SMALL_STATE(117)] = 10729,
  [SMALL_STATE(118)] = 10819,
  [SMALL_STATE(119)] = 10909,
  [SMALL_STATE(120)] = 10999,
  [SMALL_STATE(121)] = 11089,
  [SMALL_STATE(122)] = 11179,
  [SMALL_STATE(123)] = 11269,
  [SMALL_STATE(124)] = 11383,
  [SMALL_STATE(125)] = 11473,
  [SMALL_STATE(126)] = 11563,
  [SMALL_STATE(127)] = 11653,
  [SMALL_STATE(128)] = 11743,
  [SMALL_STATE(129)] = 11833,
  [SMALL_STATE(130)] = 11923,
  [SMALL_STATE(131)] = 12013,
  [SMALL_STATE(132)] = 12103,
  [SMALL_STATE(133)] = 12193,
  [SMALL_STATE(134)] = 12283,
  [SMALL_STATE(135)] = 12373,
  [SMALL_STATE(136)] = 12463,
  [SMALL_STATE(137)] = 12553,
  [SMALL_STATE(138)] = 12643,
  [SMALL_STATE(139)] = 12733,
  [SMALL_STATE(140)] = 12823,
  [SMALL_STATE(141)] = 12913,
  [SMALL_STATE(142)] = 13003,
  [SMALL_STATE(143)] = 13093,
  [SMALL_STATE(144)] = 13183,
  [SMALL_STATE(145)] = 13273,
  [SMALL_STATE(146)] = 13363,
  [SMALL_STATE(147)] = 13420,
  [SMALL_STATE(148)] = 13477,
  [SMALL_STATE(149)] = 13534,
  [SMALL_STATE(150)] = 13591,
  [SMALL_STATE(151)] = 13648,
  [SMALL_STATE(152)] = 13705,
  [SMALL_STATE(153)] = 13762,
  [SMALL_STATE(154)] = 13819,
  [SMALL_STATE(155)] = 13876,
  [SMALL_STATE(156)] = 13933,
  [SMALL_STATE(157)] = 13990,
  [SMALL_STATE(158)] = 14047,
  [SMALL_STATE(159)] = 14104,
  [SMALL_STATE(160)] = 14161,
  [SMALL_STATE(161)] = 14218,
  [SMALL_STATE(162)] = 14275,
  [SMALL_STATE(163)] = 14332,
  [SMALL_STATE(164)] = 14389,
  [SMALL_STATE(165)] = 14446,
  [SMALL_STATE(166)] = 14503,
  [SMALL_STATE(167)] = 14560,
  [SMALL_STATE(168)] = 14617,
  [SMALL_STATE(169)] = 14674,
  [SMALL_STATE(170)] = 14731,
  [SMALL_STATE(171)] = 14788,
  [SMALL_STATE(172)] = 14845,
  [SMALL_STATE(173)] = 14902,
  [SMALL_STATE(174)] = 14959,
  [SMALL_STATE(175)] = 15016,
  [SMALL_STATE(176)] = 15073,
  [SMALL_STATE(177)] = 15130,
  [SMALL_STATE(178)] = 15215,
  [SMALL_STATE(179)] = 15272,
  [SMALL_STATE(180)] = 15329,
  [SMALL_STATE(181)] = 15386,
  [SMALL_STATE(182)] = 15443,
  [SMALL_STATE(183)] = 15500,
  [SMALL_STATE(184)] = 15557,
  [SMALL_STATE(185)] = 15614,
  [SMALL_STATE(186)] = 15725,
  [SMALL_STATE(187)] = 15782,
  [SMALL_STATE(188)] = 15839,
  [SMALL_STATE(189)] = 15896,
  [SMALL_STATE(190)] = 15953,
  [SMALL_STATE(191)] = 16010,
  [SMALL_STATE(192)] = 16067,
  [SMALL_STATE(193)] = 16124,
  [SMALL_STATE(194)] = 16181,
  [SMALL_STATE(195)] = 16238,
  [SMALL_STATE(196)] = 16295,
  [SMALL_STATE(197)] = 16352,
  [SMALL_STATE(198)] = 16409,
  [SMALL_STATE(199)] = 16466,
  [SMALL_STATE(200)] = 16523,
  [SMALL_STATE(201)] = 16580,
  [SMALL_STATE(202)] = 16636,
  [SMALL_STATE(203)] = 16720,
  [SMALL_STATE(204)] = 16776,
  [SMALL_STATE(205)] = 16832,
  [SMALL_STATE(206)] = 16888,
  [SMALL_STATE(207)] = 16944,
  [SMALL_STATE(208)] = 17058,
  [SMALL_STATE(209)] = 17114,
  [SMALL_STATE(210)] = 17170,
  [SMALL_STATE(211)] = 17226,
  [SMALL_STATE(212)] = 17282,
  [SMALL_STATE(213)] = 17338,
  [SMALL_STATE(214)] = 17394,
  [SMALL_STATE(215)] = 17450,
  [SMALL_STATE(216)] = 17506,
  [SMALL_STATE(217)] = 17562,
  [SMALL_STATE(218)] = 17618,
  [SMALL_STATE(219)] = 17674,
  [SMALL_STATE(220)] = 17730,
  [SMALL_STATE(221)] = 17786,
  [SMALL_STATE(222)] = 17842,
  [SMALL_STATE(223)] = 17926,
  [SMALL_STATE(224)] = 17982,
  [SMALL_STATE(225)] = 18038,
  [SMALL_STATE(226)] = 18125,
  [SMALL_STATE(227)] = 18212,
  [SMALL_STATE(228)] = 18299,
  [SMALL_STATE(229)] = 18386,
  [SMALL_STATE(230)] = 18473,
  [SMALL_STATE(231)] = 18560,
  [SMALL_STATE(232)] = 18647,
  [SMALL_STATE(233)] = 18730,
  [SMALL_STATE(234)] = 18817,
  [SMALL_STATE(235)] = 18904,
  [SMALL_STATE(236)] = 18991,
  [SMALL_STATE(237)] = 19078,
  [SMALL_STATE(238)] = 19165,
  [SMALL_STATE(239)] = 19220,
  [SMALL_STATE(240)] = 19307,
  [SMALL_STATE(241)] = 19394,
  [SMALL_STATE(242)] = 19481,
  [SMALL_STATE(243)] = 19568,
  [SMALL_STATE(244)] = 19655,
  [SMALL_STATE(245)] = 19742,
  [SMALL_STATE(246)] = 19829,
  [SMALL_STATE(247)] = 19916,
  [SMALL_STATE(248)] = 20003,
  [SMALL_STATE(249)] = 20090,
  [SMALL_STATE(250)] = 20177,
  [SMALL_STATE(251)] = 20264,
  [SMALL_STATE(252)] = 20351,
  [SMALL_STATE(253)] = 20438,
  [SMALL_STATE(254)] = 20525,
  [SMALL_STATE(255)] = 20612,
  [SMALL_STATE(256)] = 20699,
  [SMALL_STATE(257)] = 20786,
  [SMALL_STATE(258)] = 20873,
  [SMALL_STATE(259)] = 20960,
  [SMALL_STATE(260)] = 21047,
  [SMALL_STATE(261)] = 21134,
  [SMALL_STATE(262)] = 21221,
  [SMALL_STATE(263)] = 21308,
  [SMALL_STATE(264)] = 21395,
  [SMALL_STATE(265)] = 21482,
  [SMALL_STATE(266)] = 21569,
  [SMALL_STATE(267)] = 21656,
  [SMALL_STATE(268)] = 21710,
  [SMALL_STATE(269)] = 21764,
  [SMALL_STATE(270)] = 21880,
  [SMALL_STATE(271)] = 21996,
  [SMALL_STATE(272)] = 22050,
  [SMALL_STATE(273)] = 22104,
  [SMALL_STATE(274)] = 22158,
  [SMALL_STATE(275)] = 22212,
  [SMALL_STATE(276)] = 22266,
  [SMALL_STATE(277)] = 22320,
  [SMALL_STATE(278)] = 22374,
  [SMALL_STATE(279)] = 22428,
  [SMALL_STATE(280)] = 22482,
  [SMALL_STATE(281)] = 22536,
  [SMALL_STATE(282)] = 22590,
  [SMALL_STATE(283)] = 22644,
  [SMALL_STATE(284)] = 22698,
  [SMALL_STATE(285)] = 22752,
  [SMALL_STATE(286)] = 22806,
  [SMALL_STATE(287)] = 22860,
  [SMALL_STATE(288)] = 22914,
  [SMALL_STATE(289)] = 22968,
  [SMALL_STATE(290)] = 23050,
  [SMALL_STATE(291)] = 23104,
  [SMALL_STATE(292)] = 23158,
  [SMALL_STATE(293)] = 23212,
  [SMALL_STATE(294)] = 23266,
  [SMALL_STATE(295)] = 23320,
  [SMALL_STATE(296)] = 23374,
  [SMALL_STATE(297)] = 23428,
  [SMALL_STATE(298)] = 23482,
  [SMALL_STATE(299)] = 23536,
  [SMALL_STATE(300)] = 23652,
  [SMALL_STATE(301)] = 23706,
  [SMALL_STATE(302)] = 23760,
  [SMALL_STATE(303)] = 23876,
  [SMALL_STATE(304)] = 23961,
  [SMALL_STATE(305)] = 24046,
  [SMALL_STATE(306)] = 24131,
  [SMALL_STATE(307)] = 24216,
  [SMALL_STATE(308)] = 24301,
  [SMALL_STATE(309)] = 24386,
  [SMALL_STATE(310)] = 24471,
  [SMALL_STATE(311)] = 24556,
  [SMALL_STATE(312)] = 24641,
  [SMALL_STATE(313)] = 24726,
  [SMALL_STATE(314)] = 24811,
  [SMALL_STATE(315)] = 24896,
  [SMALL_STATE(316)] = 24981,
  [SMALL_STATE(317)] = 25066,
  [SMALL_STATE(318)] = 25151,
  [SMALL_STATE(319)] = 25236,
  [SMALL_STATE(320)] = 25321,
  [SMALL_STATE(321)] = 25402,
  [SMALL_STATE(322)] = 25487,
  [SMALL_STATE(323)] = 25572,
  [SMALL_STATE(324)] = 25657,
  [SMALL_STATE(325)] = 25742,
  [SMALL_STATE(326)] = 25827,
  [SMALL_STATE(327)] = 25912,
  [SMALL_STATE(328)] = 25997,
  [SMALL_STATE(329)] = 26082,
  [SMALL_STATE(330)] = 26167,
  [SMALL_STATE(331)] = 26252,
  [SMALL_STATE(332)] = 26337,
  [SMALL_STATE(333)] = 26422,
  [SMALL_STATE(334)] = 26507,
  [SMALL_STATE(335)] = 26592,
  [SMALL_STATE(336)] = 26677,
  [SMALL_STATE(337)] = 26762,
  [SMALL_STATE(338)] = 26847,
  [SMALL_STATE(339)] = 26932,
  [SMALL_STATE(340)] = 27017,
  [SMALL_STATE(341)] = 27102,
  [SMALL_STATE(342)] = 27187,
  [SMALL_STATE(343)] = 27272,
  [SMALL_STATE(344)] = 27357,
  [SMALL_STATE(345)] = 27442,
  [SMALL_STATE(346)] = 27527,
  [SMALL_STATE(347)] = 27612,
  [SMALL_STATE(348)] = 27697,
  [SMALL_STATE(349)] = 27782,
  [SMALL_STATE(350)] = 27891,
  [SMALL_STATE(351)] = 27976,
  [SMALL_STATE(352)] = 28061,
  [SMALL_STATE(353)] = 28146,
  [SMALL_STATE(354)] = 28231,
  [SMALL_STATE(355)] = 28316,
  [SMALL_STATE(356)] = 28401,
  [SMALL_STATE(357)] = 28486,
  [SMALL_STATE(358)] = 28571,
  [SMALL_STATE(359)] = 28656,
  [SMALL_STATE(360)] = 28737,
  [SMALL_STATE(361)] = 28822,
  [SMALL_STATE(362)] = 28907,
  [SMALL_STATE(363)] = 28992,
  [SMALL_STATE(364)] = 29077,
  [SMALL_STATE(365)] = 29162,
  [SMALL_STATE(366)] = 29247,
  [SMALL_STATE(367)] = 29332,
  [SMALL_STATE(368)] = 29417,
  [SMALL_STATE(369)] = 29502,
  [SMALL_STATE(370)] = 29587,
  [SMALL_STATE(371)] = 29672,
  [SMALL_STATE(372)] = 29757,
  [SMALL_STATE(373)] = 29842,
  [SMALL_STATE(374)] = 29927,
  [SMALL_STATE(375)] = 30012,
  [SMALL_STATE(376)] = 30097,
  [SMALL_STATE(377)] = 30182,
  [SMALL_STATE(378)] = 30267,
  [SMALL_STATE(379)] = 30352,
  [SMALL_STATE(380)] = 30437,
  [SMALL_STATE(381)] = 30522,
  [SMALL_STATE(382)] = 30607,
  [SMALL_STATE(383)] = 30692,
  [SMALL_STATE(384)] = 30777,
  [SMALL_STATE(385)] = 30862,
  [SMALL_STATE(386)] = 30947,
  [SMALL_STATE(387)] = 30999,
  [SMALL_STATE(388)] = 31051,
  [SMALL_STATE(389)] = 31103,
  [SMALL_STATE(390)] = 31155,
  [SMALL_STATE(391)] = 31207,
  [SMALL_STATE(392)] = 31259,
  [SMALL_STATE(393)] = 31311,
  [SMALL_STATE(394)] = 31363,
  [SMALL_STATE(395)] = 31415,
  [SMALL_STATE(396)] = 31467,
  [SMALL_STATE(397)] = 31519,
  [SMALL_STATE(398)] = 31571,
  [SMALL_STATE(399)] = 31623,
  [SMALL_STATE(400)] = 31675,
  [SMALL_STATE(401)] = 31727,
  [SMALL_STATE(402)] = 31779,
  [SMALL_STATE(403)] = 31831,
  [SMALL_STATE(404)] = 31911,
  [SMALL_STATE(405)] = 31963,
  [SMALL_STATE(406)] = 32015,
  [SMALL_STATE(407)] = 32067,
  [SMALL_STATE(408)] = 32119,
  [SMALL_STATE(409)] = 32199,
  [SMALL_STATE(410)] = 32251,
  [SMALL_STATE(411)] = 32358,
  [SMALL_STATE(412)] = 32409,
  [SMALL_STATE(413)] = 32516,
  [SMALL_STATE(414)] = 32623,
  [SMALL_STATE(415)] = 32702,
  [SMALL_STATE(416)] = 32781,
  [SMALL_STATE(417)] = 32888,
  [SMALL_STATE(418)] = 32995,
  [SMALL_STATE(419)] = 33102,
  [SMALL_STATE(420)] = 33209,
  [SMALL_STATE(421)] = 33288,
  [SMALL_STATE(422)] = 33395,
  [SMALL_STATE(423)] = 33502,
  [SMALL_STATE(424)] = 33609,
  [SMALL_STATE(425)] = 33660,
  [SMALL_STATE(426)] = 33767,
  [SMALL_STATE(427)] = 33874,
  [SMALL_STATE(428)] = 33977,
  [SMALL_STATE(429)] = 34084,
  [SMALL_STATE(430)] = 34191,
  [SMALL_STATE(431)] = 34298,
  [SMALL_STATE(432)] = 34405,
  [SMALL_STATE(433)] = 34512,
  [SMALL_STATE(434)] = 34619,
  [SMALL_STATE(435)] = 34670,
  [SMALL_STATE(436)] = 34721,
  [SMALL_STATE(437)] = 34828,
  [SMALL_STATE(438)] = 34935,
  [SMALL_STATE(439)] = 35042,
  [SMALL_STATE(440)] = 35149,
  [SMALL_STATE(441)] = 35256,
  [SMALL_STATE(442)] = 35363,
  [SMALL_STATE(443)] = 35470,
  [SMALL_STATE(444)] = 35577,
  [SMALL_STATE(445)] = 35680,
  [SMALL_STATE(446)] = 35787,
  [SMALL_STATE(447)] = 35894,
  [SMALL_STATE(448)] = 36001,
  [SMALL_STATE(449)] = 36108,
  [SMALL_STATE(450)] = 36215,
  [SMALL_STATE(451)] = 36322,
  [SMALL_STATE(452)] = 36429,
  [SMALL_STATE(453)] = 36536,
  [SMALL_STATE(454)] = 36643,
  [SMALL_STATE(455)] = 36750,
  [SMALL_STATE(456)] = 36801,
  [SMALL_STATE(457)] = 36908,
  [SMALL_STATE(458)] = 37015,
  [SMALL_STATE(459)] = 37122,
  [SMALL_STATE(460)] = 37229,
  [SMALL_STATE(461)] = 37336,
  [SMALL_STATE(462)] = 37443,
  [SMALL_STATE(463)] = 37550,
  [SMALL_STATE(464)] = 37657,
  [SMALL_STATE(465)] = 37764,
  [SMALL_STATE(466)] = 37843,
  [SMALL_STATE(467)] = 37950,
  [SMALL_STATE(468)] = 38001,
  [SMALL_STATE(469)] = 38108,
  [SMALL_STATE(470)] = 38215,
  [SMALL_STATE(471)] = 38322,
  [SMALL_STATE(472)] = 38429,
  [SMALL_STATE(473)] = 38536,
  [SMALL_STATE(474)] = 38643,
  [SMALL_STATE(475)] = 38722,
  [SMALL_STATE(476)] = 38829,
  [SMALL_STATE(477)] = 38936,
  [SMALL_STATE(478)] = 38987,
  [SMALL_STATE(479)] = 39038,
  [SMALL_STATE(480)] = 39145,
  [SMALL_STATE(481)] = 39252,
  [SMALL_STATE(482)] = 39359,
  [SMALL_STATE(483)] = 39466,
  [SMALL_STATE(484)] = 39573,
  [SMALL_STATE(485)] = 39676,
  [SMALL_STATE(486)] = 39727,
  [SMALL_STATE(487)] = 39834,
  [SMALL_STATE(488)] = 39941,
  [SMALL_STATE(489)] = 40048,
  [SMALL_STATE(490)] = 40155,
  [SMALL_STATE(491)] = 40262,
  [SMALL_STATE(492)] = 40369,
  [SMALL_STATE(493)] = 40476,
  [SMALL_STATE(494)] = 40527,
  [SMALL_STATE(495)] = 40578,
  [SMALL_STATE(496)] = 40685,
  [SMALL_STATE(497)] = 40792,
  [SMALL_STATE(498)] = 40899,
  [SMALL_STATE(499)] = 41006,
  [SMALL_STATE(500)] = 41113,
  [SMALL_STATE(501)] = 41216,
  [SMALL_STATE(502)] = 41323,
  [SMALL_STATE(503)] = 41430,
  [SMALL_STATE(504)] = 41537,
  [SMALL_STATE(505)] = 41641,
  [SMALL_STATE(506)] = 41745,
  [SMALL_STATE(507)] = 41849,
  [SMALL_STATE(508)] = 41899,
  [SMALL_STATE(509)] = 41949,
  [SMALL_STATE(510)] = 42053,
  [SMALL_STATE(511)] = 42157,
  [SMALL_STATE(512)] = 42261,
  [SMALL_STATE(513)] = 42365,
  [SMALL_STATE(514)] = 42469,
  [SMALL_STATE(515)] = 42570,
  [SMALL_STATE(516)] = 42671,
  [SMALL_STATE(517)] = 42762,
  [SMALL_STATE(518)] = 42863,
  [SMALL_STATE(519)] = 42964,
  [SMALL_STATE(520)] = 43065,
  [SMALL_STATE(521)] = 43166,
  [SMALL_STATE(522)] = 43267,
  [SMALL_STATE(523)] = 43368,
  [SMALL_STATE(524)] = 43469,
  [SMALL_STATE(525)] = 43570,
  [SMALL_STATE(526)] = 43671,
  [SMALL_STATE(527)] = 43772,
  [SMALL_STATE(528)] = 43873,
  [SMALL_STATE(529)] = 43974,
  [SMALL_STATE(530)] = 44075,
  [SMALL_STATE(531)] = 44176,
  [SMALL_STATE(532)] = 44277,
  [SMALL_STATE(533)] = 44378,
  [SMALL_STATE(534)] = 44479,
  [SMALL_STATE(535)] = 44580,
  [SMALL_STATE(536)] = 44681,
  [SMALL_STATE(537)] = 44782,
  [SMALL_STATE(538)] = 44883,
  [SMALL_STATE(539)] = 44984,
  [SMALL_STATE(540)] = 45032,
  [SMALL_STATE(541)] = 45080,
  [SMALL_STATE(542)] = 45128,
  [SMALL_STATE(543)] = 45176,
  [SMALL_STATE(544)] = 45224,
  [SMALL_STATE(545)] = 45272,
  [SMALL_STATE(546)] = 45320,
  [SMALL_STATE(547)] = 45368,
  [SMALL_STATE(548)] = 45416,
  [SMALL_STATE(549)] = 45505,
  [SMALL_STATE(550)] = 45594,
  [SMALL_STATE(551)] = 45677,
  [SMALL_STATE(552)] = 45760,
  [SMALL_STATE(553)] = 45843,
  [SMALL_STATE(554)] = 45926,
  [SMALL_STATE(555)] = 45973,
  [SMALL_STATE(556)] = 46056,
  [SMALL_STATE(557)] = 46139,
  [SMALL_STATE(558)] = 46222,
  [SMALL_STATE(559)] = 46305,
  [SMALL_STATE(560)] = 46388,
  [SMALL_STATE(561)] = 46471,
  [SMALL_STATE(562)] = 46554,
  [SMALL_STATE(563)] = 46637,
  [SMALL_STATE(564)] = 46720,
  [SMALL_STATE(565)] = 46803,
  [SMALL_STATE(566)] = 46886,
  [SMALL_STATE(567)] = 46969,
  [SMALL_STATE(568)] = 47049,
  [SMALL_STATE(569)] = 47129,
  [SMALL_STATE(570)] = 47201,
  [SMALL_STATE(571)] = 47276,
  [SMALL_STATE(572)] = 47353,
  [SMALL_STATE(573)] = 47399,
  [SMALL_STATE(574)] = 47441,
  [SMALL_STATE(575)] = 47483,
  [SMALL_STATE(576)] = 47525,
  [SMALL_STATE(577)] = 47593,
  [SMALL_STATE(578)] = 47663,
  [SMALL_STATE(579)] = 47733,
  [SMALL_STATE(580)] = 47775,
  [SMALL_STATE(581)] = 47846,
  [SMALL_STATE(582)] = 47917,
  [SMALL_STATE(583)] = 47988,
  [SMALL_STATE(584)] = 48059,
  [SMALL_STATE(585)] = 48126,
  [SMALL_STATE(586)] = 48197,
  [SMALL_STATE(587)] = 48268,
  [SMALL_STATE(588)] = 48339,
  [SMALL_STATE(589)] = 48410,
  [SMALL_STATE(590)] = 48481,
  [SMALL_STATE(591)] = 48552,
  [SMALL_STATE(592)] = 48592,
  [SMALL_STATE(593)] = 48632,
  [SMALL_STATE(594)] = 48676,
  [SMALL_STATE(595)] = 48716,
  [SMALL_STATE(596)] = 48756,
  [SMALL_STATE(597)] = 48796,
  [SMALL_STATE(598)] = 48836,
  [SMALL_STATE(599)] = 48902,
  [SMALL_STATE(600)] = 48942,
  [SMALL_STATE(601)] = 48982,
  [SMALL_STATE(602)] = 49022,
  [SMALL_STATE(603)] = 49062,
  [SMALL_STATE(604)] = 49102,
  [SMALL_STATE(605)] = 49142,
  [SMALL_STATE(606)] = 49182,
  [SMALL_STATE(607)] = 49222,
  [SMALL_STATE(608)] = 49262,
  [SMALL_STATE(609)] = 49301,
  [SMALL_STATE(610)] = 49366,
  [SMALL_STATE(611)] = 49405,
  [SMALL_STATE(612)] = 49470,
  [SMALL_STATE(613)] = 49535,
  [SMALL_STATE(614)] = 49600,
  [SMALL_STATE(615)] = 49639,
  [SMALL_STATE(616)] = 49704,
  [SMALL_STATE(617)] = 49747,
  [SMALL_STATE(618)] = 49786,
  [SMALL_STATE(619)] = 49848,
  [SMALL_STATE(620)] = 49910,
  [SMALL_STATE(621)] = 49984,
  [SMALL_STATE(622)] = 50046,
  [SMALL_STATE(623)] = 50108,
  [SMALL_STATE(624)] = 50170,
  [SMALL_STATE(625)] = 50232,
  [SMALL_STATE(626)] = 50294,
  [SMALL_STATE(627)] = 50356,
  [SMALL_STATE(628)] = 50418,
  [SMALL_STATE(629)] = 50480,
  [SMALL_STATE(630)] = 50542,
  [SMALL_STATE(631)] = 50604,
  [SMALL_STATE(632)] = 50666,
  [SMALL_STATE(633)] = 50728,
  [SMALL_STATE(634)] = 50802,
  [SMALL_STATE(635)] = 50864,
  [SMALL_STATE(636)] = 50926,
  [SMALL_STATE(637)] = 50988,
  [SMALL_STATE(638)] = 51050,
  [SMALL_STATE(639)] = 51112,
  [SMALL_STATE(640)] = 51186,
  [SMALL_STATE(641)] = 51248,
  [SMALL_STATE(642)] = 51310,
  [SMALL_STATE(643)] = 51372,
  [SMALL_STATE(644)] = 51434,
  [SMALL_STATE(645)] = 51496,
  [SMALL_STATE(646)] = 51558,
  [SMALL_STATE(647)] = 51620,
  [SMALL_STATE(648)] = 51694,
  [SMALL_STATE(649)] = 51768,
  [SMALL_STATE(650)] = 51830,
  [SMALL_STATE(651)] = 51892,
  [SMALL_STATE(652)] = 51954,
  [SMALL_STATE(653)] = 52016,
  [SMALL_STATE(654)] = 52078,
  [SMALL_STATE(655)] = 52140,
  [SMALL_STATE(656)] = 52202,
  [SMALL_STATE(657)] = 52264,
  [SMALL_STATE(658)] = 52328,
  [SMALL_STATE(659)] = 52396,
  [SMALL_STATE(660)] = 52458,
  [SMALL_STATE(661)] = 52502,
  [SMALL_STATE(662)] = 52564,
  [SMALL_STATE(663)] = 52626,
  [SMALL_STATE(664)] = 52670,
  [SMALL_STATE(665)] = 52732,
  [SMALL_STATE(666)] = 52794,
  [SMALL_STATE(667)] = 52858,
  [SMALL_STATE(668)] = 52920,
  [SMALL_STATE(669)] = 52982,
  [SMALL_STATE(670)] = 53056,
  [SMALL_STATE(671)] = 53118,
  [SMALL_STATE(672)] = 53180,
  [SMALL_STATE(673)] = 53242,
  [SMALL_STATE(674)] = 53304,
  [SMALL_STATE(675)] = 53366,
  [SMALL_STATE(676)] = 53428,
  [SMALL_STATE(677)] = 53502,
  [SMALL_STATE(678)] = 53564,
  [SMALL_STATE(679)] = 53626,
  [SMALL_STATE(680)] = 53700,
  [SMALL_STATE(681)] = 53762,
  [SMALL_STATE(682)] = 53824,
  [SMALL_STATE(683)] = 53886,
  [SMALL_STATE(684)] = 53948,
  [SMALL_STATE(685)] = 54010,
  [SMALL_STATE(686)] = 54084,
  [SMALL_STATE(687)] = 54128,
  [SMALL_STATE(688)] = 54190,
  [SMALL_STATE(689)] = 54252,
  [SMALL_STATE(690)] = 54314,
  [SMALL_STATE(691)] = 54376,
  [SMALL_STATE(692)] = 54450,
  [SMALL_STATE(693)] = 54512,
  [SMALL_STATE(694)] = 54574,
  [SMALL_STATE(695)] = 54636,
  [SMALL_STATE(696)] = 54698,
  [SMALL_STATE(697)] = 54760,
  [SMALL_STATE(698)] = 54822,
  [SMALL_STATE(699)] = 54884,
  [SMALL_STATE(700)] = 54946,
  [SMALL_STATE(701)] = 55008,
  [SMALL_STATE(702)] = 55070,
  [SMALL_STATE(703)] = 55132,
  [SMALL_STATE(704)] = 55194,
  [SMALL_STATE(705)] = 55256,
  [SMALL_STATE(706)] = 55318,
  [SMALL_STATE(707)] = 55380,
  [SMALL_STATE(708)] = 55442,
  [SMALL_STATE(709)] = 55504,
  [SMALL_STATE(710)] = 55566,
  [SMALL_STATE(711)] = 55640,
  [SMALL_STATE(712)] = 55702,
  [SMALL_STATE(713)] = 55764,
  [SMALL_STATE(714)] = 55826,
  [SMALL_STATE(715)] = 55888,
  [SMALL_STATE(716)] = 55950,
  [SMALL_STATE(717)] = 56024,
  [SMALL_STATE(718)] = 56086,
  [SMALL_STATE(719)] = 56148,
  [SMALL_STATE(720)] = 56210,
  [SMALL_STATE(721)] = 56254,
  [SMALL_STATE(722)] = 56316,
  [SMALL_STATE(723)] = 56378,
  [SMALL_STATE(724)] = 56440,
  [SMALL_STATE(725)] = 56502,
  [SMALL_STATE(726)] = 56576,
  [SMALL_STATE(727)] = 56638,
  [SMALL_STATE(728)] = 56700,
  [SMALL_STATE(729)] = 56774,
  [SMALL_STATE(730)] = 56836,
  [SMALL_STATE(731)] = 56898,
  [SMALL_STATE(732)] = 56960,
  [SMALL_STATE(733)] = 57022,
  [SMALL_STATE(734)] = 57084,
  [SMALL_STATE(735)] = 57158,
  [SMALL_STATE(736)] = 57220,
  [SMALL_STATE(737)] = 57282,
  [SMALL_STATE(738)] = 57344,
  [SMALL_STATE(739)] = 57406,
  [SMALL_STATE(740)] = 57468,
  [SMALL_STATE(741)] = 57530,
  [SMALL_STATE(742)] = 57592,
  [SMALL_STATE(743)] = 57654,
  [SMALL_STATE(744)] = 57716,
  [SMALL_STATE(745)] = 57778,
  [SMALL_STATE(746)] = 57840,
  [SMALL_STATE(747)] = 57884,
  [SMALL_STATE(748)] = 57946,
  [SMALL_STATE(749)] = 58008,
  [SMALL_STATE(750)] = 58070,
  [SMALL_STATE(751)] = 58132,
  [SMALL_STATE(752)] = 58176,
  [SMALL_STATE(753)] = 58238,
  [SMALL_STATE(754)] = 58300,
  [SMALL_STATE(755)] = 58362,
  [SMALL_STATE(756)] = 58424,
  [SMALL_STATE(757)] = 58486,
  [SMALL_STATE(758)] = 58548,
  [SMALL_STATE(759)] = 58610,
  [SMALL_STATE(760)] = 58650,
  [SMALL_STATE(761)] = 58724,
  [SMALL_STATE(762)] = 58786,
  [SMALL_STATE(763)] = 58830,
  [SMALL_STATE(764)] = 58892,
  [SMALL_STATE(765)] = 58956,
  [SMALL_STATE(766)] = 59018,
  [SMALL_STATE(767)] = 59080,
  [SMALL_STATE(768)] = 59142,
  [SMALL_STATE(769)] = 59210,
  [SMALL_STATE(770)] = 59272,
  [SMALL_STATE(771)] = 59334,
  [SMALL_STATE(772)] = 59378,
  [SMALL_STATE(773)] = 59440,
  [SMALL_STATE(774)] = 59502,
  [SMALL_STATE(775)] = 59564,
  [SMALL_STATE(776)] = 59626,
  [SMALL_STATE(777)] = 59688,
  [SMALL_STATE(778)] = 59750,
  [SMALL_STATE(779)] = 59812,
  [SMALL_STATE(780)] = 59874,
  [SMALL_STATE(781)] = 59936,
  [SMALL_STATE(782)] = 59973,
  [SMALL_STATE(783)] = 60014,
  [SMALL_STATE(784)] = 60051,
  [SMALL_STATE(785)] = 60092,
  [SMALL_STATE(786)] = 60133,
  [SMALL_STATE(787)] = 60170,
  [SMALL_STATE(788)] = 60207,
  [SMALL_STATE(789)] = 60246,
  [SMALL_STATE(790)] = 60283,
  [SMALL_STATE(791)] = 60320,
  [SMALL_STATE(792)] = 60357,
  [SMALL_STATE(793)] = 60398,
  [SMALL_STATE(794)] = 60439,
  [SMALL_STATE(795)] = 60480,
  [SMALL_STATE(796)] = 60517,
  [SMALL_STATE(797)] = 60554,
  [SMALL_STATE(798)] = 60591,
  [SMALL_STATE(799)] = 60632,
  [SMALL_STATE(800)] = 60673,
  [SMALL_STATE(801)] = 60710,
  [SMALL_STATE(802)] = 60751,
  [SMALL_STATE(803)] = 60792,
  [SMALL_STATE(804)] = 60835,
  [SMALL_STATE(805)] = 60872,
  [SMALL_STATE(806)] = 60913,
  [SMALL_STATE(807)] = 60954,
  [SMALL_STATE(808)] = 60995,
  [SMALL_STATE(809)] = 61036,
  [SMALL_STATE(810)] = 61075,
  [SMALL_STATE(811)] = 61112,
  [SMALL_STATE(812)] = 61153,
  [SMALL_STATE(813)] = 61194,
  [SMALL_STATE(814)] = 61259,
  [SMALL_STATE(815)] = 61324,
  [SMALL_STATE(816)] = 61389,
  [SMALL_STATE(817)] = 61430,
  [SMALL_STATE(818)] = 61471,
  [SMALL_STATE(819)] = 61536,
  [SMALL_STATE(820)] = 61601,
  [SMALL_STATE(821)] = 61642,
  [SMALL_STATE(822)] = 61683,
  [SMALL_STATE(823)] = 61748,
  [SMALL_STATE(824)] = 61789,
  [SMALL_STATE(825)] = 61830,
  [SMALL_STATE(826)] = 61871,
  [SMALL_STATE(827)] = 61912,
  [SMALL_STATE(828)] = 61953,
  [SMALL_STATE(829)] = 61994,
  [SMALL_STATE(830)] = 62031,
  [SMALL_STATE(831)] = 62072,
  [SMALL_STATE(832)] = 62113,
  [SMALL_STATE(833)] = 62150,
  [SMALL_STATE(834)] = 62187,
  [SMALL_STATE(835)] = 62224,
  [SMALL_STATE(836)] = 62265,
  [SMALL_STATE(837)] = 62306,
  [SMALL_STATE(838)] = 62347,
  [SMALL_STATE(839)] = 62390,
  [SMALL_STATE(840)] = 62431,
  [SMALL_STATE(841)] = 62472,
  [SMALL_STATE(842)] = 62513,
  [SMALL_STATE(843)] = 62578,
  [SMALL_STATE(844)] = 62619,
  [SMALL_STATE(845)] = 62660,
  [SMALL_STATE(846)] = 62697,
  [SMALL_STATE(847)] = 62738,
  [SMALL_STATE(848)] = 62779,
  [SMALL_STATE(849)] = 62816,
  [SMALL_STATE(850)] = 62857,
  [SMALL_STATE(851)] = 62898,
  [SMALL_STATE(852)] = 62939,
  [SMALL_STATE(853)] = 62980,
  [SMALL_STATE(854)] = 63021,
  [SMALL_STATE(855)] = 63062,
  [SMALL_STATE(856)] = 63099,
  [SMALL_STATE(857)] = 63140,
  [SMALL_STATE(858)] = 63177,
  [SMALL_STATE(859)] = 63214,
  [SMALL_STATE(860)] = 63255,
  [SMALL_STATE(861)] = 63296,
  [SMALL_STATE(862)] = 63337,
  [SMALL_STATE(863)] = 63378,
  [SMALL_STATE(864)] = 63415,
  [SMALL_STATE(865)] = 63456,
  [SMALL_STATE(866)] = 63497,
  [SMALL_STATE(867)] = 63538,
  [SMALL_STATE(868)] = 63579,
  [SMALL_STATE(869)] = 63620,
  [SMALL_STATE(870)] = 63657,
  [SMALL_STATE(871)] = 63722,
  [SMALL_STATE(872)] = 63784,
  [SMALL_STATE(873)] = 63826,
  [SMALL_STATE(874)] = 63888,
  [SMALL_STATE(875)] = 63950,
  [SMALL_STATE(876)] = 64012,
  [SMALL_STATE(877)] = 64074,
  [SMALL_STATE(878)] = 64136,
  [SMALL_STATE(879)] = 64198,
  [SMALL_STATE(880)] = 64260,
  [SMALL_STATE(881)] = 64322,
  [SMALL_STATE(882)] = 64358,
  [SMALL_STATE(883)] = 64398,
  [SMALL_STATE(884)] = 64438,
  [SMALL_STATE(885)] = 64500,
  [SMALL_STATE(886)] = 64562,
  [SMALL_STATE(887)] = 64624,
  [SMALL_STATE(888)] = 64666,
  [SMALL_STATE(889)] = 64728,
  [SMALL_STATE(890)] = 64790,
  [SMALL_STATE(891)] = 64852,
  [SMALL_STATE(892)] = 64914,
  [SMALL_STATE(893)] = 64976,
  [SMALL_STATE(894)] = 65038,
  [SMALL_STATE(895)] = 65100,
  [SMALL_STATE(896)] = 65162,
  [SMALL_STATE(897)] = 65224,
  [SMALL_STATE(898)] = 65286,
  [SMALL_STATE(899)] = 65321,
  [SMALL_STATE(900)] = 65356,
  [SMALL_STATE(901)] = 65391,
  [SMALL_STATE(902)] = 65426,
  [SMALL_STATE(903)] = 65461,
  [SMALL_STATE(904)] = 65496,
  [SMALL_STATE(905)] = 65531,
  [SMALL_STATE(906)] = 65566,
  [SMALL_STATE(907)] = 65601,
  [SMALL_STATE(908)] = 65636,
  [SMALL_STATE(909)] = 65671,
  [SMALL_STATE(910)] = 65706,
  [SMALL_STATE(911)] = 65741,
  [SMALL_STATE(912)] = 65776,
  [SMALL_STATE(913)] = 65811,
  [SMALL_STATE(914)] = 65846,
  [SMALL_STATE(915)] = 65881,
  [SMALL_STATE(916)] = 65916,
  [SMALL_STATE(917)] = 65951,
  [SMALL_STATE(918)] = 65986,
  [SMALL_STATE(919)] = 66021,
  [SMALL_STATE(920)] = 66056,
  [SMALL_STATE(921)] = 66091,
  [SMALL_STATE(922)] = 66126,
  [SMALL_STATE(923)] = 66161,
  [SMALL_STATE(924)] = 66196,
  [SMALL_STATE(925)] = 66231,
  [SMALL_STATE(926)] = 66266,
  [SMALL_STATE(927)] = 66301,
  [SMALL_STATE(928)] = 66336,
  [SMALL_STATE(929)] = 66371,
  [SMALL_STATE(930)] = 66406,
  [SMALL_STATE(931)] = 66441,
  [SMALL_STATE(932)] = 66476,
  [SMALL_STATE(933)] = 66511,
  [SMALL_STATE(934)] = 66546,
  [SMALL_STATE(935)] = 66585,
  [SMALL_STATE(936)] = 66620,
  [SMALL_STATE(937)] = 66655,
  [SMALL_STATE(938)] = 66692,
  [SMALL_STATE(939)] = 66729,
  [SMALL_STATE(940)] = 66766,
  [SMALL_STATE(941)] = 66801,
  [SMALL_STATE(942)] = 66836,
  [SMALL_STATE(943)] = 66871,
  [SMALL_STATE(944)] = 66912,
  [SMALL_STATE(945)] = 66947,
  [SMALL_STATE(946)] = 66984,
  [SMALL_STATE(947)] = 67025,
  [SMALL_STATE(948)] = 67060,
  [SMALL_STATE(949)] = 67095,
  [SMALL_STATE(950)] = 67130,
  [SMALL_STATE(951)] = 67165,
  [SMALL_STATE(952)] = 67200,
  [SMALL_STATE(953)] = 67235,
  [SMALL_STATE(954)] = 67276,
  [SMALL_STATE(955)] = 67311,
  [SMALL_STATE(956)] = 67346,
  [SMALL_STATE(957)] = 67383,
  [SMALL_STATE(958)] = 67420,
  [SMALL_STATE(959)] = 67455,
  [SMALL_STATE(960)] = 67490,
  [SMALL_STATE(961)] = 67525,
  [SMALL_STATE(962)] = 67560,
  [SMALL_STATE(963)] = 67595,
  [SMALL_STATE(964)] = 67630,
  [SMALL_STATE(965)] = 67665,
  [SMALL_STATE(966)] = 67700,
  [SMALL_STATE(967)] = 67735,
  [SMALL_STATE(968)] = 67770,
  [SMALL_STATE(969)] = 67811,
  [SMALL_STATE(970)] = 67850,
  [SMALL_STATE(971)] = 67885,
  [SMALL_STATE(972)] = 67926,
  [SMALL_STATE(973)] = 67961,
  [SMALL_STATE(974)] = 67996,
  [SMALL_STATE(975)] = 68031,
  [SMALL_STATE(976)] = 68066,
  [SMALL_STATE(977)] = 68101,
  [SMALL_STATE(978)] = 68136,
  [SMALL_STATE(979)] = 68177,
  [SMALL_STATE(980)] = 68218,
  [SMALL_STATE(981)] = 68253,
  [SMALL_STATE(982)] = 68288,
  [SMALL_STATE(983)] = 68323,
  [SMALL_STATE(984)] = 68358,
  [SMALL_STATE(985)] = 68393,
  [SMALL_STATE(986)] = 68428,
  [SMALL_STATE(987)] = 68463,
  [SMALL_STATE(988)] = 68504,
  [SMALL_STATE(989)] = 68539,
  [SMALL_STATE(990)] = 68574,
  [SMALL_STATE(991)] = 68609,
  [SMALL_STATE(992)] = 68644,
  [SMALL_STATE(993)] = 68679,
  [SMALL_STATE(994)] = 68713,
  [SMALL_STATE(995)] = 68751,
  [SMALL_STATE(996)] = 68789,
  [SMALL_STATE(997)] = 68827,
  [SMALL_STATE(998)] = 68865,
  [SMALL_STATE(999)] = 68903,
  [SMALL_STATE(1000)] = 68941,
  [SMALL_STATE(1001)] = 68979,
  [SMALL_STATE(1002)] = 69017,
  [SMALL_STATE(1003)] = 69055,
  [SMALL_STATE(1004)] = 69093,
  [SMALL_STATE(1005)] = 69131,
  [SMALL_STATE(1006)] = 69169,
  [SMALL_STATE(1007)] = 69207,
  [SMALL_STATE(1008)] = 69245,
  [SMALL_STATE(1009)] = 69283,
  [SMALL_STATE(1010)] = 69321,
  [SMALL_STATE(1011)] = 69359,
  [SMALL_STATE(1012)] = 69397,
  [SMALL_STATE(1013)] = 69435,
  [SMALL_STATE(1014)] = 69473,
  [SMALL_STATE(1015)] = 69511,
  [SMALL_STATE(1016)] = 69549,
  [SMALL_STATE(1017)] = 69587,
  [SMALL_STATE(1018)] = 69625,
  [SMALL_STATE(1019)] = 69663,
  [SMALL_STATE(1020)] = 69701,
  [SMALL_STATE(1021)] = 69739,
  [SMALL_STATE(1022)] = 69777,
  [SMALL_STATE(1023)] = 69815,
  [SMALL_STATE(1024)] = 69853,
  [SMALL_STATE(1025)] = 69889,
  [SMALL_STATE(1026)] = 69927,
  [SMALL_STATE(1027)] = 69965,
  [SMALL_STATE(1028)] = 70003,
  [SMALL_STATE(1029)] = 70041,
  [SMALL_STATE(1030)] = 70079,
  [SMALL_STATE(1031)] = 70117,
  [SMALL_STATE(1032)] = 70155,
  [SMALL_STATE(1033)] = 70193,
  [SMALL_STATE(1034)] = 70231,
  [SMALL_STATE(1035)] = 70269,
  [SMALL_STATE(1036)] = 70307,
  [SMALL_STATE(1037)] = 70345,
  [SMALL_STATE(1038)] = 70383,
  [SMALL_STATE(1039)] = 70421,
  [SMALL_STATE(1040)] = 70455,
  [SMALL_STATE(1041)] = 70489,
  [SMALL_STATE(1042)] = 70523,
  [SMALL_STATE(1043)] = 70557,
  [SMALL_STATE(1044)] = 70591,
  [SMALL_STATE(1045)] = 70625,
  [SMALL_STATE(1046)] = 70663,
  [SMALL_STATE(1047)] = 70697,
  [SMALL_STATE(1048)] = 70731,
  [SMALL_STATE(1049)] = 70765,
  [SMALL_STATE(1050)] = 70803,
  [SMALL_STATE(1051)] = 70841,
  [SMALL_STATE(1052)] = 70879,
  [SMALL_STATE(1053)] = 70913,
  [SMALL_STATE(1054)] = 70952,
  [SMALL_STATE(1055)] = 70991,
  [SMALL_STATE(1056)] = 71030,
  [SMALL_STATE(1057)] = 71069,
  [SMALL_STATE(1058)] = 71108,
  [SMALL_STATE(1059)] = 71147,
  [SMALL_STATE(1060)] = 71186,
  [SMALL_STATE(1061)] = 71225,
  [SMALL_STATE(1062)] = 71264,
  [SMALL_STATE(1063)] = 71303,
  [SMALL_STATE(1064)] = 71342,
  [SMALL_STATE(1065)] = 71377,
  [SMALL_STATE(1066)] = 71416,
  [SMALL_STATE(1067)] = 71451,
  [SMALL_STATE(1068)] = 71490,
  [SMALL_STATE(1069)] = 71529,
  [SMALL_STATE(1070)] = 71568,
  [SMALL_STATE(1071)] = 71605,
  [SMALL_STATE(1072)] = 71644,
  [SMALL_STATE(1073)] = 71680,
  [SMALL_STATE(1074)] = 71716,
  [SMALL_STATE(1075)] = 71752,
  [SMALL_STATE(1076)] = 71788,
  [SMALL_STATE(1077)] = 71824,
  [SMALL_STATE(1078)] = 71860,
  [SMALL_STATE(1079)] = 71896,
  [SMALL_STATE(1080)] = 71932,
  [SMALL_STATE(1081)] = 71968,
  [SMALL_STATE(1082)] = 72004,
  [SMALL_STATE(1083)] = 72040,
  [SMALL_STATE(1084)] = 72076,
  [SMALL_STATE(1085)] = 72112,
  [SMALL_STATE(1086)] = 72148,
  [SMALL_STATE(1087)] = 72180,
  [SMALL_STATE(1088)] = 72212,
  [SMALL_STATE(1089)] = 72248,
  [SMALL_STATE(1090)] = 72284,
  [SMALL_STATE(1091)] = 72316,
  [SMALL_STATE(1092)] = 72352,
  [SMALL_STATE(1093)] = 72388,
  [SMALL_STATE(1094)] = 72420,
  [SMALL_STATE(1095)] = 72452,
  [SMALL_STATE(1096)] = 72484,
  [SMALL_STATE(1097)] = 72520,
  [SMALL_STATE(1098)] = 72556,
  [SMALL_STATE(1099)] = 72588,
  [SMALL_STATE(1100)] = 72624,
  [SMALL_STATE(1101)] = 72660,
  [SMALL_STATE(1102)] = 72696,
  [SMALL_STATE(1103)] = 72732,
  [SMALL_STATE(1104)] = 72768,
  [SMALL_STATE(1105)] = 72804,
  [SMALL_STATE(1106)] = 72840,
  [SMALL_STATE(1107)] = 72876,
  [SMALL_STATE(1108)] = 72912,
  [SMALL_STATE(1109)] = 72948,
  [SMALL_STATE(1110)] = 72984,
  [SMALL_STATE(1111)] = 73016,
  [SMALL_STATE(1112)] = 73052,
  [SMALL_STATE(1113)] = 73088,
  [SMALL_STATE(1114)] = 73124,
  [SMALL_STATE(1115)] = 73156,
  [SMALL_STATE(1116)] = 73190,
  [SMALL_STATE(1117)] = 73226,
  [SMALL_STATE(1118)] = 73262,
  [SMALL_STATE(1119)] = 73298,
  [SMALL_STATE(1120)] = 73334,
  [SMALL_STATE(1121)] = 73370,
  [SMALL_STATE(1122)] = 73406,
  [SMALL_STATE(1123)] = 73442,
  [SMALL_STATE(1124)] = 73478,
  [SMALL_STATE(1125)] = 73514,
  [SMALL_STATE(1126)] = 73550,
  [SMALL_STATE(1127)] = 73586,
  [SMALL_STATE(1128)] = 73622,
  [SMALL_STATE(1129)] = 73656,
  [SMALL_STATE(1130)] = 73692,
  [SMALL_STATE(1131)] = 73728,
  [SMALL_STATE(1132)] = 73764,
  [SMALL_STATE(1133)] = 73800,
  [SMALL_STATE(1134)] = 73836,
  [SMALL_STATE(1135)] = 73872,
  [SMALL_STATE(1136)] = 73908,
  [SMALL_STATE(1137)] = 73940,
  [SMALL_STATE(1138)] = 73976,
  [SMALL_STATE(1139)] = 74012,
  [SMALL_STATE(1140)] = 74044,
  [SMALL_STATE(1141)] = 74076,
  [SMALL_STATE(1142)] = 74112,
  [SMALL_STATE(1143)] = 74148,
  [SMALL_STATE(1144)] = 74184,
  [SMALL_STATE(1145)] = 74220,
  [SMALL_STATE(1146)] = 74256,
  [SMALL_STATE(1147)] = 74292,
  [SMALL_STATE(1148)] = 74326,
  [SMALL_STATE(1149)] = 74362,
  [SMALL_STATE(1150)] = 74398,
  [SMALL_STATE(1151)] = 74434,
  [SMALL_STATE(1152)] = 74470,
  [SMALL_STATE(1153)] = 74506,
  [SMALL_STATE(1154)] = 74542,
  [SMALL_STATE(1155)] = 74578,
  [SMALL_STATE(1156)] = 74614,
  [SMALL_STATE(1157)] = 74650,
  [SMALL_STATE(1158)] = 74686,
  [SMALL_STATE(1159)] = 74722,
  [SMALL_STATE(1160)] = 74758,
  [SMALL_STATE(1161)] = 74794,
  [SMALL_STATE(1162)] = 74830,
  [SMALL_STATE(1163)] = 74866,
  [SMALL_STATE(1164)] = 74902,
  [SMALL_STATE(1165)] = 74938,
  [SMALL_STATE(1166)] = 74974,
  [SMALL_STATE(1167)] = 75010,
  [SMALL_STATE(1168)] = 75046,
  [SMALL_STATE(1169)] = 75082,
  [SMALL_STATE(1170)] = 75118,
  [SMALL_STATE(1171)] = 75150,
  [SMALL_STATE(1172)] = 75186,
  [SMALL_STATE(1173)] = 75222,
  [SMALL_STATE(1174)] = 75254,
  [SMALL_STATE(1175)] = 75286,
  [SMALL_STATE(1176)] = 75322,
  [SMALL_STATE(1177)] = 75354,
  [SMALL_STATE(1178)] = 75386,
  [SMALL_STATE(1179)] = 75418,
  [SMALL_STATE(1180)] = 75450,
  [SMALL_STATE(1181)] = 75482,
  [SMALL_STATE(1182)] = 75518,
  [SMALL_STATE(1183)] = 75554,
  [SMALL_STATE(1184)] = 75590,
  [SMALL_STATE(1185)] = 75626,
  [SMALL_STATE(1186)] = 75662,
  [SMALL_STATE(1187)] = 75698,
  [SMALL_STATE(1188)] = 75734,
  [SMALL_STATE(1189)] = 75770,
  [SMALL_STATE(1190)] = 75806,
  [SMALL_STATE(1191)] = 75842,
  [SMALL_STATE(1192)] = 75874,
  [SMALL_STATE(1193)] = 75906,
  [SMALL_STATE(1194)] = 75938,
  [SMALL_STATE(1195)] = 75970,
  [SMALL_STATE(1196)] = 76002,
  [SMALL_STATE(1197)] = 76034,
  [SMALL_STATE(1198)] = 76066,
  [SMALL_STATE(1199)] = 76098,
  [SMALL_STATE(1200)] = 76130,
  [SMALL_STATE(1201)] = 76161,
  [SMALL_STATE(1202)] = 76192,
  [SMALL_STATE(1203)] = 76222,
  [SMALL_STATE(1204)] = 76252,
  [SMALL_STATE(1205)] = 76282,
  [SMALL_STATE(1206)] = 76312,
  [SMALL_STATE(1207)] = 76342,
  [SMALL_STATE(1208)] = 76372,
  [SMALL_STATE(1209)] = 76402,
  [SMALL_STATE(1210)] = 76432,
  [SMALL_STATE(1211)] = 76462,
  [SMALL_STATE(1212)] = 76492,
  [SMALL_STATE(1213)] = 76522,
  [SMALL_STATE(1214)] = 76552,
  [SMALL_STATE(1215)] = 76582,
  [SMALL_STATE(1216)] = 76612,
  [SMALL_STATE(1217)] = 76642,
  [SMALL_STATE(1218)] = 76672,
  [SMALL_STATE(1219)] = 76702,
  [SMALL_STATE(1220)] = 76732,
  [SMALL_STATE(1221)] = 76762,
  [SMALL_STATE(1222)] = 76794,
  [SMALL_STATE(1223)] = 76824,
  [SMALL_STATE(1224)] = 76854,
  [SMALL_STATE(1225)] = 76884,
  [SMALL_STATE(1226)] = 76914,
  [SMALL_STATE(1227)] = 76944,
  [SMALL_STATE(1228)] = 76974,
  [SMALL_STATE(1229)] = 77004,
  [SMALL_STATE(1230)] = 77036,
  [SMALL_STATE(1231)] = 77066,
  [SMALL_STATE(1232)] = 77096,
  [SMALL_STATE(1233)] = 77126,
  [SMALL_STATE(1234)] = 77156,
  [SMALL_STATE(1235)] = 77186,
  [SMALL_STATE(1236)] = 77216,
  [SMALL_STATE(1237)] = 77246,
  [SMALL_STATE(1238)] = 77276,
  [SMALL_STATE(1239)] = 77306,
  [SMALL_STATE(1240)] = 77336,
  [SMALL_STATE(1241)] = 77366,
  [SMALL_STATE(1242)] = 77396,
  [SMALL_STATE(1243)] = 77426,
  [SMALL_STATE(1244)] = 77456,
  [SMALL_STATE(1245)] = 77486,
  [SMALL_STATE(1246)] = 77516,
  [SMALL_STATE(1247)] = 77546,
  [SMALL_STATE(1248)] = 77576,
  [SMALL_STATE(1249)] = 77606,
  [SMALL_STATE(1250)] = 77636,
  [SMALL_STATE(1251)] = 77666,
  [SMALL_STATE(1252)] = 77696,
  [SMALL_STATE(1253)] = 77726,
  [SMALL_STATE(1254)] = 77756,
  [SMALL_STATE(1255)] = 77786,
  [SMALL_STATE(1256)] = 77816,
  [SMALL_STATE(1257)] = 77846,
  [SMALL_STATE(1258)] = 77876,
  [SMALL_STATE(1259)] = 77906,
  [SMALL_STATE(1260)] = 77936,
  [SMALL_STATE(1261)] = 77966,
  [SMALL_STATE(1262)] = 77996,
  [SMALL_STATE(1263)] = 78026,
  [SMALL_STATE(1264)] = 78056,
  [SMALL_STATE(1265)] = 78086,
  [SMALL_STATE(1266)] = 78116,
  [SMALL_STATE(1267)] = 78146,
  [SMALL_STATE(1268)] = 78176,
  [SMALL_STATE(1269)] = 78206,
  [SMALL_STATE(1270)] = 78236,
  [SMALL_STATE(1271)] = 78266,
  [SMALL_STATE(1272)] = 78296,
  [SMALL_STATE(1273)] = 78326,
  [SMALL_STATE(1274)] = 78356,
  [SMALL_STATE(1275)] = 78386,
  [SMALL_STATE(1276)] = 78416,
  [SMALL_STATE(1277)] = 78446,
  [SMALL_STATE(1278)] = 78476,
  [SMALL_STATE(1279)] = 78506,
  [SMALL_STATE(1280)] = 78536,
  [SMALL_STATE(1281)] = 78566,
  [SMALL_STATE(1282)] = 78596,
  [SMALL_STATE(1283)] = 78625,
  [SMALL_STATE(1284)] = 78654,
  [SMALL_STATE(1285)] = 78683,
  [SMALL_STATE(1286)] = 78712,
  [SMALL_STATE(1287)] = 78741,
  [SMALL_STATE(1288)] = 78783,
  [SMALL_STATE(1289)] = 78825,
  [SMALL_STATE(1290)] = 78867,
  [SMALL_STATE(1291)] = 78909,
  [SMALL_STATE(1292)] = 78951,
  [SMALL_STATE(1293)] = 78993,
  [SMALL_STATE(1294)] = 79035,
  [SMALL_STATE(1295)] = 79077,
  [SMALL_STATE(1296)] = 79119,
  [SMALL_STATE(1297)] = 79161,
  [SMALL_STATE(1298)] = 79203,
  [SMALL_STATE(1299)] = 79245,
  [SMALL_STATE(1300)] = 79287,
  [SMALL_STATE(1301)] = 79329,
  [SMALL_STATE(1302)] = 79371,
  [SMALL_STATE(1303)] = 79413,
  [SMALL_STATE(1304)] = 79455,
  [SMALL_STATE(1305)] = 79497,
  [SMALL_STATE(1306)] = 79539,
  [SMALL_STATE(1307)] = 79581,
  [SMALL_STATE(1308)] = 79623,
  [SMALL_STATE(1309)] = 79665,
  [SMALL_STATE(1310)] = 79707,
  [SMALL_STATE(1311)] = 79749,
  [SMALL_STATE(1312)] = 79791,
  [SMALL_STATE(1313)] = 79833,
  [SMALL_STATE(1314)] = 79861,
  [SMALL_STATE(1315)] = 79903,
  [SMALL_STATE(1316)] = 79945,
  [SMALL_STATE(1317)] = 79994,
  [SMALL_STATE(1318)] = 80043,
  [SMALL_STATE(1319)] = 80092,
  [SMALL_STATE(1320)] = 80141,
  [SMALL_STATE(1321)] = 80190,
  [SMALL_STATE(1322)] = 80239,
  [SMALL_STATE(1323)] = 80288,
  [SMALL_STATE(1324)] = 80337,
  [SMALL_STATE(1325)] = 80377,
  [SMALL_STATE(1326)] = 80417,
  [SMALL_STATE(1327)] = 80457,
  [SMALL_STATE(1328)] = 80483,
  [SMALL_STATE(1329)] = 80523,
  [SMALL_STATE(1330)] = 80548,
  [SMALL_STATE(1331)] = 80585,
  [SMALL_STATE(1332)] = 80608,
  [SMALL_STATE(1333)] = 80645,
  [SMALL_STATE(1334)] = 80682,
  [SMALL_STATE(1335)] = 80719,
  [SMALL_STATE(1336)] = 80756,
  [SMALL_STATE(1337)] = 80793,
  [SMALL_STATE(1338)] = 80830,
  [SMALL_STATE(1339)] = 80867,
  [SMALL_STATE(1340)] = 80892,
  [SMALL_STATE(1341)] = 80929,
  [SMALL_STATE(1342)] = 80966,
  [SMALL_STATE(1343)] = 80992,
  [SMALL_STATE(1344)] = 81018,
  [SMALL_STATE(1345)] = 81038,
  [SMALL_STATE(1346)] = 81062,
  [SMALL_STATE(1347)] = 81088,
  [SMALL_STATE(1348)] = 81112,
  [SMALL_STATE(1349)] = 81134,
  [SMALL_STATE(1350)] = 81156,
  [SMALL_STATE(1351)] = 81187,
  [SMALL_STATE(1352)] = 81218,
  [SMALL_STATE(1353)] = 81237,
  [SMALL_STATE(1354)] = 81268,
  [SMALL_STATE(1355)] = 81299,
  [SMALL_STATE(1356)] = 81330,
  [SMALL_STATE(1357)] = 81357,
  [SMALL_STATE(1358)] = 81376,
  [SMALL_STATE(1359)] = 81395,
  [SMALL_STATE(1360)] = 81426,
  [SMALL_STATE(1361)] = 81445,
  [SMALL_STATE(1362)] = 81464,
  [SMALL_STATE(1363)] = 81489,
  [SMALL_STATE(1364)] = 81512,
  [SMALL_STATE(1365)] = 81543,
  [SMALL_STATE(1366)] = 81564,
  [SMALL_STATE(1367)] = 81595,
  [SMALL_STATE(1368)] = 81616,
  [SMALL_STATE(1369)] = 81641,
  [SMALL_STATE(1370)] = 81672,
  [SMALL_STATE(1371)] = 81699,
  [SMALL_STATE(1372)] = 81730,
  [SMALL_STATE(1373)] = 81749,
  [SMALL_STATE(1374)] = 81780,
  [SMALL_STATE(1375)] = 81811,
  [SMALL_STATE(1376)] = 81830,
  [SMALL_STATE(1377)] = 81849,
  [SMALL_STATE(1378)] = 81874,
  [SMALL_STATE(1379)] = 81897,
  [SMALL_STATE(1380)] = 81918,
  [SMALL_STATE(1381)] = 81943,
  [SMALL_STATE(1382)] = 81966,
  [SMALL_STATE(1383)] = 81994,
  [SMALL_STATE(1384)] = 82014,
  [SMALL_STATE(1385)] = 82042,
  [SMALL_STATE(1386)] = 82070,
  [SMALL_STATE(1387)] = 82098,
  [SMALL_STATE(1388)] = 82126,
  [SMALL_STATE(1389)] = 82152,
  [SMALL_STATE(1390)] = 82178,
  [SMALL_STATE(1391)] = 82198,
  [SMALL_STATE(1392)] = 82218,
  [SMALL_STATE(1393)] = 82246,
  [SMALL_STATE(1394)] = 82264,
  [SMALL_STATE(1395)] = 82292,
  [SMALL_STATE(1396)] = 82310,
  [SMALL_STATE(1397)] = 82330,
  [SMALL_STATE(1398)] = 82354,
  [SMALL_STATE(1399)] = 82376,
  [SMALL_STATE(1400)] = 82404,
  [SMALL_STATE(1401)] = 82432,
  [SMALL_STATE(1402)] = 82460,
  [SMALL_STATE(1403)] = 82488,
  [SMALL_STATE(1404)] = 82516,
  [SMALL_STATE(1405)] = 82540,
  [SMALL_STATE(1406)] = 82562,
  [SMALL_STATE(1407)] = 82582,
  [SMALL_STATE(1408)] = 82610,
  [SMALL_STATE(1409)] = 82630,
  [SMALL_STATE(1410)] = 82658,
  [SMALL_STATE(1411)] = 82686,
  [SMALL_STATE(1412)] = 82714,
  [SMALL_STATE(1413)] = 82742,
  [SMALL_STATE(1414)] = 82770,
  [SMALL_STATE(1415)] = 82790,
  [SMALL_STATE(1416)] = 82818,
  [SMALL_STATE(1417)] = 82846,
  [SMALL_STATE(1418)] = 82874,
  [SMALL_STATE(1419)] = 82902,
  [SMALL_STATE(1420)] = 82922,
  [SMALL_STATE(1421)] = 82944,
  [SMALL_STATE(1422)] = 82966,
  [SMALL_STATE(1423)] = 82986,
  [SMALL_STATE(1424)] = 83006,
  [SMALL_STATE(1425)] = 83030,
  [SMALL_STATE(1426)] = 83055,
  [SMALL_STATE(1427)] = 83074,
  [SMALL_STATE(1428)] = 83097,
  [SMALL_STATE(1429)] = 83118,
  [SMALL_STATE(1430)] = 83141,
  [SMALL_STATE(1431)] = 83164,
  [SMALL_STATE(1432)] = 83187,
  [SMALL_STATE(1433)] = 83210,
  [SMALL_STATE(1434)] = 83229,
  [SMALL_STATE(1435)] = 83252,
  [SMALL_STATE(1436)] = 83277,
  [SMALL_STATE(1437)] = 83302,
  [SMALL_STATE(1438)] = 83327,
  [SMALL_STATE(1439)] = 83352,
  [SMALL_STATE(1440)] = 83377,
  [SMALL_STATE(1441)] = 83395,
  [SMALL_STATE(1442)] = 83417,
  [SMALL_STATE(1443)] = 83439,
  [SMALL_STATE(1444)] = 83459,
  [SMALL_STATE(1445)] = 83481,
  [SMALL_STATE(1446)] = 83503,
  [SMALL_STATE(1447)] = 83525,
  [SMALL_STATE(1448)] = 83547,
  [SMALL_STATE(1449)] = 83565,
  [SMALL_STATE(1450)] = 83587,
  [SMALL_STATE(1451)] = 83609,
  [SMALL_STATE(1452)] = 83631,
  [SMALL_STATE(1453)] = 83649,
  [SMALL_STATE(1454)] = 83667,
  [SMALL_STATE(1455)] = 83689,
  [SMALL_STATE(1456)] = 83711,
  [SMALL_STATE(1457)] = 83733,
  [SMALL_STATE(1458)] = 83753,
  [SMALL_STATE(1459)] = 83775,
  [SMALL_STATE(1460)] = 83793,
  [SMALL_STATE(1461)] = 83815,
  [SMALL_STATE(1462)] = 83837,
  [SMALL_STATE(1463)] = 83853,
  [SMALL_STATE(1464)] = 83869,
  [SMALL_STATE(1465)] = 83891,
  [SMALL_STATE(1466)] = 83909,
  [SMALL_STATE(1467)] = 83931,
  [SMALL_STATE(1468)] = 83953,
  [SMALL_STATE(1469)] = 83971,
  [SMALL_STATE(1470)] = 83991,
  [SMALL_STATE(1471)] = 84013,
  [SMALL_STATE(1472)] = 84035,
  [SMALL_STATE(1473)] = 84057,
  [SMALL_STATE(1474)] = 84076,
  [SMALL_STATE(1475)] = 84095,
  [SMALL_STATE(1476)] = 84114,
  [SMALL_STATE(1477)] = 84133,
  [SMALL_STATE(1478)] = 84152,
  [SMALL_STATE(1479)] = 84171,
  [SMALL_STATE(1480)] = 84190,
  [SMALL_STATE(1481)] = 84209,
  [SMALL_STATE(1482)] = 84228,
  [SMALL_STATE(1483)] = 84247,
  [SMALL_STATE(1484)] = 84266,
  [SMALL_STATE(1485)] = 84285,
  [SMALL_STATE(1486)] = 84304,
  [SMALL_STATE(1487)] = 84323,
  [SMALL_STATE(1488)] = 84342,
  [SMALL_STATE(1489)] = 84361,
  [SMALL_STATE(1490)] = 84378,
  [SMALL_STATE(1491)] = 84397,
  [SMALL_STATE(1492)] = 84416,
  [SMALL_STATE(1493)] = 84433,
  [SMALL_STATE(1494)] = 84452,
  [SMALL_STATE(1495)] = 84467,
  [SMALL_STATE(1496)] = 84486,
  [SMALL_STATE(1497)] = 84505,
  [SMALL_STATE(1498)] = 84522,
  [SMALL_STATE(1499)] = 84541,
  [SMALL_STATE(1500)] = 84558,
  [SMALL_STATE(1501)] = 84577,
  [SMALL_STATE(1502)] = 84596,
  [SMALL_STATE(1503)] = 84615,
  [SMALL_STATE(1504)] = 84634,
  [SMALL_STATE(1505)] = 84653,
  [SMALL_STATE(1506)] = 84670,
  [SMALL_STATE(1507)] = 84689,
  [SMALL_STATE(1508)] = 84708,
  [SMALL_STATE(1509)] = 84727,
  [SMALL_STATE(1510)] = 84746,
  [SMALL_STATE(1511)] = 84765,
  [SMALL_STATE(1512)] = 84784,
  [SMALL_STATE(1513)] = 84803,
  [SMALL_STATE(1514)] = 84822,
  [SMALL_STATE(1515)] = 84841,
  [SMALL_STATE(1516)] = 84860,
  [SMALL_STATE(1517)] = 84879,
  [SMALL_STATE(1518)] = 84898,
  [SMALL_STATE(1519)] = 84917,
  [SMALL_STATE(1520)] = 84934,
  [SMALL_STATE(1521)] = 84953,
  [SMALL_STATE(1522)] = 84968,
  [SMALL_STATE(1523)] = 84987,
  [SMALL_STATE(1524)] = 85002,
  [SMALL_STATE(1525)] = 85021,
  [SMALL_STATE(1526)] = 85040,
  [SMALL_STATE(1527)] = 85059,
  [SMALL_STATE(1528)] = 85078,
  [SMALL_STATE(1529)] = 85097,
  [SMALL_STATE(1530)] = 85114,
  [SMALL_STATE(1531)] = 85133,
  [SMALL_STATE(1532)] = 85150,
  [SMALL_STATE(1533)] = 85169,
  [SMALL_STATE(1534)] = 85188,
  [SMALL_STATE(1535)] = 85207,
  [SMALL_STATE(1536)] = 85224,
  [SMALL_STATE(1537)] = 85239,
  [SMALL_STATE(1538)] = 85258,
  [SMALL_STATE(1539)] = 85277,
  [SMALL_STATE(1540)] = 85296,
  [SMALL_STATE(1541)] = 85315,
  [SMALL_STATE(1542)] = 85334,
  [SMALL_STATE(1543)] = 85353,
  [SMALL_STATE(1544)] = 85372,
  [SMALL_STATE(1545)] = 85387,
  [SMALL_STATE(1546)] = 85406,
  [SMALL_STATE(1547)] = 85425,
  [SMALL_STATE(1548)] = 85444,
  [SMALL_STATE(1549)] = 85463,
  [SMALL_STATE(1550)] = 85482,
  [SMALL_STATE(1551)] = 85501,
  [SMALL_STATE(1552)] = 85516,
  [SMALL_STATE(1553)] = 85535,
  [SMALL_STATE(1554)] = 85554,
  [SMALL_STATE(1555)] = 85573,
  [SMALL_STATE(1556)] = 85592,
  [SMALL_STATE(1557)] = 85611,
  [SMALL_STATE(1558)] = 85630,
  [SMALL_STATE(1559)] = 85649,
  [SMALL_STATE(1560)] = 85666,
  [SMALL_STATE(1561)] = 85685,
  [SMALL_STATE(1562)] = 85701,
  [SMALL_STATE(1563)] = 85717,
  [SMALL_STATE(1564)] = 85733,
  [SMALL_STATE(1565)] = 85749,
  [SMALL_STATE(1566)] = 85765,
  [SMALL_STATE(1567)] = 85781,
  [SMALL_STATE(1568)] = 85797,
  [SMALL_STATE(1569)] = 85813,
  [SMALL_STATE(1570)] = 85829,
  [SMALL_STATE(1571)] = 85845,
  [SMALL_STATE(1572)] = 85861,
  [SMALL_STATE(1573)] = 85877,
  [SMALL_STATE(1574)] = 85893,
  [SMALL_STATE(1575)] = 85909,
  [SMALL_STATE(1576)] = 85925,
  [SMALL_STATE(1577)] = 85941,
  [SMALL_STATE(1578)] = 85957,
  [SMALL_STATE(1579)] = 85973,
  [SMALL_STATE(1580)] = 85989,
  [SMALL_STATE(1581)] = 86005,
  [SMALL_STATE(1582)] = 86021,
  [SMALL_STATE(1583)] = 86037,
  [SMALL_STATE(1584)] = 86053,
  [SMALL_STATE(1585)] = 86069,
  [SMALL_STATE(1586)] = 86085,
  [SMALL_STATE(1587)] = 86101,
  [SMALL_STATE(1588)] = 86117,
  [SMALL_STATE(1589)] = 86133,
  [SMALL_STATE(1590)] = 86149,
  [SMALL_STATE(1591)] = 86165,
  [SMALL_STATE(1592)] = 86181,
  [SMALL_STATE(1593)] = 86197,
  [SMALL_STATE(1594)] = 86213,
  [SMALL_STATE(1595)] = 86229,
  [SMALL_STATE(1596)] = 86245,
  [SMALL_STATE(1597)] = 86261,
  [SMALL_STATE(1598)] = 86277,
  [SMALL_STATE(1599)] = 86293,
  [SMALL_STATE(1600)] = 86309,
  [SMALL_STATE(1601)] = 86325,
  [SMALL_STATE(1602)] = 86341,
  [SMALL_STATE(1603)] = 86357,
  [SMALL_STATE(1604)] = 86373,
  [SMALL_STATE(1605)] = 86389,
  [SMALL_STATE(1606)] = 86403,
  [SMALL_STATE(1607)] = 86419,
  [SMALL_STATE(1608)] = 86435,
  [SMALL_STATE(1609)] = 86451,
  [SMALL_STATE(1610)] = 86467,
  [SMALL_STATE(1611)] = 86483,
  [SMALL_STATE(1612)] = 86499,
  [SMALL_STATE(1613)] = 86515,
  [SMALL_STATE(1614)] = 86531,
  [SMALL_STATE(1615)] = 86547,
  [SMALL_STATE(1616)] = 86563,
  [SMALL_STATE(1617)] = 86579,
  [SMALL_STATE(1618)] = 86595,
  [SMALL_STATE(1619)] = 86611,
  [SMALL_STATE(1620)] = 86627,
  [SMALL_STATE(1621)] = 86643,
  [SMALL_STATE(1622)] = 86659,
  [SMALL_STATE(1623)] = 86675,
  [SMALL_STATE(1624)] = 86691,
  [SMALL_STATE(1625)] = 86707,
  [SMALL_STATE(1626)] = 86723,
  [SMALL_STATE(1627)] = 86739,
  [SMALL_STATE(1628)] = 86755,
  [SMALL_STATE(1629)] = 86769,
  [SMALL_STATE(1630)] = 86785,
  [SMALL_STATE(1631)] = 86801,
  [SMALL_STATE(1632)] = 86817,
  [SMALL_STATE(1633)] = 86833,
  [SMALL_STATE(1634)] = 86849,
  [SMALL_STATE(1635)] = 86865,
  [SMALL_STATE(1636)] = 86881,
  [SMALL_STATE(1637)] = 86897,
  [SMALL_STATE(1638)] = 86913,
  [SMALL_STATE(1639)] = 86929,
  [SMALL_STATE(1640)] = 86945,
  [SMALL_STATE(1641)] = 86961,
  [SMALL_STATE(1642)] = 86977,
  [SMALL_STATE(1643)] = 86993,
  [SMALL_STATE(1644)] = 87009,
  [SMALL_STATE(1645)] = 87025,
  [SMALL_STATE(1646)] = 87041,
  [SMALL_STATE(1647)] = 87057,
  [SMALL_STATE(1648)] = 87073,
  [SMALL_STATE(1649)] = 87089,
  [SMALL_STATE(1650)] = 87105,
  [SMALL_STATE(1651)] = 87121,
  [SMALL_STATE(1652)] = 87137,
  [SMALL_STATE(1653)] = 87153,
  [SMALL_STATE(1654)] = 87169,
  [SMALL_STATE(1655)] = 87185,
  [SMALL_STATE(1656)] = 87201,
  [SMALL_STATE(1657)] = 87217,
  [SMALL_STATE(1658)] = 87233,
  [SMALL_STATE(1659)] = 87249,
  [SMALL_STATE(1660)] = 87265,
  [SMALL_STATE(1661)] = 87281,
  [SMALL_STATE(1662)] = 87297,
  [SMALL_STATE(1663)] = 87313,
  [SMALL_STATE(1664)] = 87329,
  [SMALL_STATE(1665)] = 87345,
  [SMALL_STATE(1666)] = 87361,
  [SMALL_STATE(1667)] = 87377,
  [SMALL_STATE(1668)] = 87393,
  [SMALL_STATE(1669)] = 87409,
  [SMALL_STATE(1670)] = 87425,
  [SMALL_STATE(1671)] = 87441,
  [SMALL_STATE(1672)] = 87457,
  [SMALL_STATE(1673)] = 87473,
  [SMALL_STATE(1674)] = 87489,
  [SMALL_STATE(1675)] = 87505,
  [SMALL_STATE(1676)] = 87521,
  [SMALL_STATE(1677)] = 87537,
  [SMALL_STATE(1678)] = 87550,
  [SMALL_STATE(1679)] = 87563,
  [SMALL_STATE(1680)] = 87576,
  [SMALL_STATE(1681)] = 87589,
  [SMALL_STATE(1682)] = 87602,
  [SMALL_STATE(1683)] = 87615,
  [SMALL_STATE(1684)] = 87628,
  [SMALL_STATE(1685)] = 87641,
  [SMALL_STATE(1686)] = 87654,
  [SMALL_STATE(1687)] = 87667,
  [SMALL_STATE(1688)] = 87680,
  [SMALL_STATE(1689)] = 87693,
  [SMALL_STATE(1690)] = 87706,
  [SMALL_STATE(1691)] = 87719,
  [SMALL_STATE(1692)] = 87732,
  [SMALL_STATE(1693)] = 87745,
  [SMALL_STATE(1694)] = 87758,
  [SMALL_STATE(1695)] = 87771,
  [SMALL_STATE(1696)] = 87784,
  [SMALL_STATE(1697)] = 87797,
  [SMALL_STATE(1698)] = 87810,
  [SMALL_STATE(1699)] = 87823,
  [SMALL_STATE(1700)] = 87836,
  [SMALL_STATE(1701)] = 87849,
  [SMALL_STATE(1702)] = 87862,
  [SMALL_STATE(1703)] = 87875,
  [SMALL_STATE(1704)] = 87888,
  [SMALL_STATE(1705)] = 87901,
  [SMALL_STATE(1706)] = 87914,
  [SMALL_STATE(1707)] = 87927,
  [SMALL_STATE(1708)] = 87940,
  [SMALL_STATE(1709)] = 87953,
  [SMALL_STATE(1710)] = 87966,
  [SMALL_STATE(1711)] = 87979,
  [SMALL_STATE(1712)] = 87992,
  [SMALL_STATE(1713)] = 88005,
  [SMALL_STATE(1714)] = 88018,
  [SMALL_STATE(1715)] = 88031,
  [SMALL_STATE(1716)] = 88044,
  [SMALL_STATE(1717)] = 88057,
  [SMALL_STATE(1718)] = 88070,
  [SMALL_STATE(1719)] = 88083,
  [SMALL_STATE(1720)] = 88096,
  [SMALL_STATE(1721)] = 88109,
  [SMALL_STATE(1722)] = 88122,
  [SMALL_STATE(1723)] = 88135,
  [SMALL_STATE(1724)] = 88148,
  [SMALL_STATE(1725)] = 88161,
  [SMALL_STATE(1726)] = 88174,
  [SMALL_STATE(1727)] = 88187,
  [SMALL_STATE(1728)] = 88200,
  [SMALL_STATE(1729)] = 88213,
  [SMALL_STATE(1730)] = 88226,
  [SMALL_STATE(1731)] = 88239,
  [SMALL_STATE(1732)] = 88252,
  [SMALL_STATE(1733)] = 88265,
  [SMALL_STATE(1734)] = 88278,
  [SMALL_STATE(1735)] = 88291,
  [SMALL_STATE(1736)] = 88304,
  [SMALL_STATE(1737)] = 88317,
  [SMALL_STATE(1738)] = 88330,
  [SMALL_STATE(1739)] = 88343,
  [SMALL_STATE(1740)] = 88356,
  [SMALL_STATE(1741)] = 88369,
  [SMALL_STATE(1742)] = 88382,
  [SMALL_STATE(1743)] = 88395,
  [SMALL_STATE(1744)] = 88408,
  [SMALL_STATE(1745)] = 88421,
  [SMALL_STATE(1746)] = 88434,
  [SMALL_STATE(1747)] = 88447,
  [SMALL_STATE(1748)] = 88460,
  [SMALL_STATE(1749)] = 88473,
  [SMALL_STATE(1750)] = 88486,
  [SMALL_STATE(1751)] = 88499,
  [SMALL_STATE(1752)] = 88512,
  [SMALL_STATE(1753)] = 88525,
  [SMALL_STATE(1754)] = 88538,
  [SMALL_STATE(1755)] = 88551,
  [SMALL_STATE(1756)] = 88564,
  [SMALL_STATE(1757)] = 88577,
  [SMALL_STATE(1758)] = 88590,
  [SMALL_STATE(1759)] = 88603,
  [SMALL_STATE(1760)] = 88616,
  [SMALL_STATE(1761)] = 88629,
  [SMALL_STATE(1762)] = 88642,
  [SMALL_STATE(1763)] = 88655,
  [SMALL_STATE(1764)] = 88668,
  [SMALL_STATE(1765)] = 88681,
  [SMALL_STATE(1766)] = 88694,
  [SMALL_STATE(1767)] = 88707,
  [SMALL_STATE(1768)] = 88720,
  [SMALL_STATE(1769)] = 88733,
  [SMALL_STATE(1770)] = 88746,
  [SMALL_STATE(1771)] = 88759,
  [SMALL_STATE(1772)] = 88772,
  [SMALL_STATE(1773)] = 88785,
  [SMALL_STATE(1774)] = 88798,
  [SMALL_STATE(1775)] = 88811,
  [SMALL_STATE(1776)] = 88824,
  [SMALL_STATE(1777)] = 88837,
  [SMALL_STATE(1778)] = 88850,
  [SMALL_STATE(1779)] = 88863,
  [SMALL_STATE(1780)] = 88876,
  [SMALL_STATE(1781)] = 88889,
  [SMALL_STATE(1782)] = 88902,
  [SMALL_STATE(1783)] = 88915,
  [SMALL_STATE(1784)] = 88928,
  [SMALL_STATE(1785)] = 88941,
  [SMALL_STATE(1786)] = 88954,
  [SMALL_STATE(1787)] = 88967,
  [SMALL_STATE(1788)] = 88980,
  [SMALL_STATE(1789)] = 88993,
  [SMALL_STATE(1790)] = 89006,
  [SMALL_STATE(1791)] = 89019,
  [SMALL_STATE(1792)] = 89032,
  [SMALL_STATE(1793)] = 89045,
  [SMALL_STATE(1794)] = 89058,
  [SMALL_STATE(1795)] = 89071,
  [SMALL_STATE(1796)] = 89084,
  [SMALL_STATE(1797)] = 89097,
  [SMALL_STATE(1798)] = 89110,
  [SMALL_STATE(1799)] = 89123,
  [SMALL_STATE(1800)] = 89136,
  [SMALL_STATE(1801)] = 89149,
  [SMALL_STATE(1802)] = 89162,
  [SMALL_STATE(1803)] = 89175,
  [SMALL_STATE(1804)] = 89188,
  [SMALL_STATE(1805)] = 89201,
  [SMALL_STATE(1806)] = 89214,
  [SMALL_STATE(1807)] = 89227,
  [SMALL_STATE(1808)] = 89240,
  [SMALL_STATE(1809)] = 89253,
  [SMALL_STATE(1810)] = 89266,
  [SMALL_STATE(1811)] = 89279,
  [SMALL_STATE(1812)] = 89292,
  [SMALL_STATE(1813)] = 89305,
  [SMALL_STATE(1814)] = 89318,
  [SMALL_STATE(1815)] = 89331,
  [SMALL_STATE(1816)] = 89344,
  [SMALL_STATE(1817)] = 89357,
  [SMALL_STATE(1818)] = 89370,
  [SMALL_STATE(1819)] = 89383,
  [SMALL_STATE(1820)] = 89396,
  [SMALL_STATE(1821)] = 89409,
  [SMALL_STATE(1822)] = 89422,
  [SMALL_STATE(1823)] = 89435,
  [SMALL_STATE(1824)] = 89448,
  [SMALL_STATE(1825)] = 89461,
  [SMALL_STATE(1826)] = 89474,
  [SMALL_STATE(1827)] = 89487,
  [SMALL_STATE(1828)] = 89500,
  [SMALL_STATE(1829)] = 89513,
  [SMALL_STATE(1830)] = 89526,
  [SMALL_STATE(1831)] = 89539,
  [SMALL_STATE(1832)] = 89552,
  [SMALL_STATE(1833)] = 89565,
  [SMALL_STATE(1834)] = 89578,
  [SMALL_STATE(1835)] = 89591,
  [SMALL_STATE(1836)] = 89604,
  [SMALL_STATE(1837)] = 89617,
  [SMALL_STATE(1838)] = 89630,
  [SMALL_STATE(1839)] = 89643,
  [SMALL_STATE(1840)] = 89656,
  [SMALL_STATE(1841)] = 89669,
  [SMALL_STATE(1842)] = 89682,
  [SMALL_STATE(1843)] = 89695,
  [SMALL_STATE(1844)] = 89708,
  [SMALL_STATE(1845)] = 89721,
  [SMALL_STATE(1846)] = 89734,
  [SMALL_STATE(1847)] = 89747,
  [SMALL_STATE(1848)] = 89760,
  [SMALL_STATE(1849)] = 89773,
  [SMALL_STATE(1850)] = 89786,
  [SMALL_STATE(1851)] = 89799,
  [SMALL_STATE(1852)] = 89812,
  [SMALL_STATE(1853)] = 89825,
  [SMALL_STATE(1854)] = 89838,
  [SMALL_STATE(1855)] = 89851,
  [SMALL_STATE(1856)] = 89864,
  [SMALL_STATE(1857)] = 89877,
  [SMALL_STATE(1858)] = 89890,
  [SMALL_STATE(1859)] = 89903,
  [SMALL_STATE(1860)] = 89916,
  [SMALL_STATE(1861)] = 89929,
  [SMALL_STATE(1862)] = 89942,
  [SMALL_STATE(1863)] = 89955,
  [SMALL_STATE(1864)] = 89968,
  [SMALL_STATE(1865)] = 89981,
  [SMALL_STATE(1866)] = 89994,
  [SMALL_STATE(1867)] = 90007,
  [SMALL_STATE(1868)] = 90020,
  [SMALL_STATE(1869)] = 90033,
  [SMALL_STATE(1870)] = 90046,
  [SMALL_STATE(1871)] = 90059,
  [SMALL_STATE(1872)] = 90072,
  [SMALL_STATE(1873)] = 90085,
  [SMALL_STATE(1874)] = 90098,
  [SMALL_STATE(1875)] = 90111,
  [SMALL_STATE(1876)] = 90124,
  [SMALL_STATE(1877)] = 90137,
  [SMALL_STATE(1878)] = 90141,
  [SMALL_STATE(1879)] = 90145,
};

static const TSParseActionEntry ts_parse_actions[] = {
  [0] = {.entry = {.count = 0, .reusable = false}},
  [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(),
  [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814),
  [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664),
  [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0),
  [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852),
  [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101),
  [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524),
  [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598),
  [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491),
  [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748),
  [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498),
  [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750),
  [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431),
  [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822),
  [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579),
  [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754),
  [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575),
  [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609),
  [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546),
  [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853),
  [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577),
  [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315),
  [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302),
  [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859),
  [49] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, .production_id = 58),
  [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595),
  [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600),
  [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709),
  [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622),
  [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623),
  [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624),
  [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624),
  [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625),
  [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626),
  [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627),
  [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628),
  [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629),
  [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629),
  [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630),
  [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630),
  [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631),
  [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632),
  [85] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, .production_id = 58),
  [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713),
  [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553),
  [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582),
  [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670),
  [95] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, .production_id = 60),
  [97] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, .production_id = 60),
  [99] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, .production_id = 71),
  [101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, .production_id = 71),
  [103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, .production_id = 54),
  [105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, .production_id = 54),
  [107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, .production_id = 26),
  [109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, .production_id = 26),
  [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, .production_id = 41),
  [113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, .production_id = 41),
  [115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, .production_id = 35),
  [117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, .production_id = 35),
  [119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, .production_id = 37),
  [121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, .production_id = 37),
  [123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operation, 2),
  [125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operation, 2),
  [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, .production_id = 55),
  [129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, .production_id = 55),
  [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operation, 3),
  [133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operation, 3),
  [135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 4),
  [137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 4),
  [139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 3),
  [141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 3),
  [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649),
  [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582),
  [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635),
  [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730),
  [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732),
  [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733),
  [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733),
  [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736),
  [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738),
  [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739),
  [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740),
  [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741),
  [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741),
  [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742),
  [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742),
  [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744),
  [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745),
  [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670),
  [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561),
  [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589),
  [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655),
  [185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_documentation_config, 1),
  [187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_documentation_config, 1),
  [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615),
  [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587),
  [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678),
  [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689),
  [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690),
  [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693),
  [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693),
  [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698),
  [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699),
  [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701),
  [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702),
  [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703),
  [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703),
  [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704),
  [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704),
  [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705),
  [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706),
  [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680),
  [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566),
  [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588),
  [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665),
  [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576),
  [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592),
  [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727),
  [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640),
  [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638),
  [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637),
  [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637),
  [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636),
  [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769),
  [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724),
  [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749),
  [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752),
  [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752),
  [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753),
  [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753),
  [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755),
  [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757),
  [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688),
  [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550),
  [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586),
  [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667),
  [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633),
  [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597),
  [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695),
  [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557),
  [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580),
  [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668),
  [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772),
  [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773),
  [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774),
  [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774),
  [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775),
  [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776),
  [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777),
  [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778),
  [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779),
  [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779),
  [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780),
  [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780),
  [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619),
  [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763),
  [313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_eval, 1),
  [315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_eval, 1),
  [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__var, 3),
  [319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__var, 3),
  [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parentheses_call, 2, .production_id = 28),
  [323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parentheses_call, 2, .production_id = 28),
  [325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_right_paren, 1),
  [327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_right_paren, 1),
  [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__prefix_exp, 3),
  [331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__prefix_exp, 3),
  [333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1),
  [335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1),
  [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parentheses_call, 3, .production_id = 39),
  [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parentheses_call, 3, .production_id = 39),
  [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__prefix_exp, 1),
  [343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__prefix_exp, 1),
  [345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, .production_id = 16),
  [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, .production_id = 16),
  [349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, .production_id = 3),
  [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, .production_id = 3),
  [353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__var, 4),
  [355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__var, 4),
  [357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 13),
  [359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 13),
  [361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__args, 1, .production_id = 14),
  [363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__args, 1, .production_id = 14),
  [365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__self_call, 3, .production_id = 38),
  [367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__self_call, 3, .production_id = 38),
  [369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__var, 1),
  [371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__var, 1),
  [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_call, 1, .production_id = 11),
  [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_call, 1, .production_id = 11),
  [377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_call, 1, .production_id = 12),
  [379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_call, 1, .production_id = 12),
  [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tableconstructor, 2),
  [383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tableconstructor, 2),
  [385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tableconstructor, 3),
  [387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tableconstructor, 3),
  [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619),
  [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650),
  [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711),
  [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552),
  [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583),
  [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814),
  [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634),
  [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1),
  [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876),
  [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2),
  [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759),
  [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2),
  [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1524),
  [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2),
  [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(491),
  [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(748),
  [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(498),
  [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(750),
  [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1431),
  [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1822),
  [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(579),
  [439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(754),
  [442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1575),
  [445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(609),
  [448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1546),
  [451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1853),
  [454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(577),
  [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1315),
  [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1302),
  [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1859),
  [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 42),
  [468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 42),
  [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 62),
  [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 62),
  [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 63),
  [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 63),
  [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 75),
  [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 75),
  [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1),
  [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1),
  [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list_repeat1, 2),
  [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714),
  [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708),
  [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707),
  [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707),
  [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682),
  [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681),
  [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673),
  [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672),
  [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671),
  [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671),
  [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668),
  [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668),
  [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667),
  [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665),
  [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list_repeat1, 2),
  [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2),
  [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718),
  [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2),
  [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202),
  [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560),
  [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584),
  [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452),
  [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412),
  [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645),
  [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454),
  [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674),
  [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715),
  [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487),
  [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432),
  [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874),
  [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617),
  [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214),
  [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457),
  [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087),
  [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470),
  [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912),
  [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446),
  [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 3),
  [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931),
  [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555),
  [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611),
  [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473),
  [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656),
  [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497),
  [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655),
  [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430),
  [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868),
  [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795),
  [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114),
  [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963),
  [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272),
  [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090),
  [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952),
  [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940),
  [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914),
  [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276),
  [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951),
  [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280),
  [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279),
  [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field, 1, .production_id = 18),
  [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252),
  [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 1),
  [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232),
  [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086),
  [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136),
  [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218),
  [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901),
  [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223),
  [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231),
  [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964),
  [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396),
  [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263),
  [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139),
  [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265),
  [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_field_expression, 3, .production_id = 26),
  [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275),
  [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950),
  [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273),
  [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543),
  [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271),
  [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230),
  [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166),
  [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236),
  [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226),
  [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557),
  [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615),
  [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428),
  [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654),
  [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480),
  [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662),
  [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646),
  [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427),
  [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873),
  [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797),
  [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270),
  [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234),
  [680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_list, 1),
  [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153),
  [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227),
  [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215),
  [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212),
  [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391),
  [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254),
  [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140),
  [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924),
  [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933),
  [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094),
  [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948),
  [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922),
  [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220),
  [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386),
  [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173),
  [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407),
  [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700),
  [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540),
  [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176),
  [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455),
  [722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__chunk, 1),
  [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177),
  [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249),
  [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179),
  [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180),
  [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194),
  [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910),
  [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196),
  [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274),
  [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224),
  [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743),
  [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770),
  [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210),
  [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_field_expression, 5, .production_id = 76),
  [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208),
  [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209),
  [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435),
  [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60),
  [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104),
  [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209),
  [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756),
  [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_numeric, 5, .production_id = 64),
  [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864),
  [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173),
  [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162),
  [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292),
  [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417),
  [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299),
  [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__chunk_repeat1, 2),
  [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__chunk_repeat1, 2), SHIFT_REPEAT(1560),
  [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__chunk_repeat1, 2), SHIFT_REPEAT(412),
  [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__chunk_repeat1, 2), SHIFT_REPEAT(645),
  [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__chunk_repeat1, 2), SHIFT_REPEAT(454),
  [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__chunk_repeat1, 2), SHIFT_REPEAT(674),
  [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__chunk_repeat1, 2), SHIFT_REPEAT(1432),
  [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__chunk_repeat1, 2), SHIFT_REPEAT(1874),
  [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__chunk_repeat1, 2), SHIFT_REPEAT(617),
  [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__chunk_repeat1, 2), SHIFT_REPEAT(754),
  [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__chunk_repeat1, 2), SHIFT_REPEAT(577),
  [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__chunk_repeat1, 2), SHIFT_REPEAT(1302),
  [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__chunk_repeat1, 2), SHIFT_REPEAT(1859),
  [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96),
  [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804),
  [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608),
  [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422),
  [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349),
  [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652),
  [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268),
  [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783),
  [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269),
  [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462),
  [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211),
  [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302),
  [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67),
  [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848),
  [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421),
  [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270),
  [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_numeric, 7, .production_id = 86),
  [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170),
  [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156),
  [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574),
  [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__chunk_repeat1, 2), SHIFT_REPEAT(1557),
  [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__chunk_repeat1, 2), SHIFT_REPEAT(428),
  [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__chunk_repeat1, 2), SHIFT_REPEAT(654),
  [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__chunk_repeat1, 2), SHIFT_REPEAT(480),
  [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__chunk_repeat1, 2), SHIFT_REPEAT(646),
  [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__chunk_repeat1, 2), SHIFT_REPEAT(1427),
  [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__chunk_repeat1, 2), SHIFT_REPEAT(1873),
  [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__chunk_repeat1, 2), SHIFT_REPEAT(797),
  [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__chunk_repeat1, 2), SHIFT_REPEAT(1555),
  [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__chunk_repeat1, 2), SHIFT_REPEAT(473),
  [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__chunk_repeat1, 2), SHIFT_REPEAT(656),
  [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__chunk_repeat1, 2), SHIFT_REPEAT(497),
  [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__chunk_repeat1, 2), SHIFT_REPEAT(655),
  [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__chunk_repeat1, 2), SHIFT_REPEAT(1430),
  [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__chunk_repeat1, 2), SHIFT_REPEAT(1868),
  [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__chunk_repeat1, 2), SHIFT_REPEAT(795),
  [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657),
  [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541),
  [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657),
  [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765),
  [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765),
  [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313),
  [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866),
  [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551),
  [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181),
  [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238),
  [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648),
  [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542),
  [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275),
  [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74),
  [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712),
  [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389),
  [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197),
  [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206),
  [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274),
  [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857),
  [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977),
  [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89),
  [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477),
  [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393),
  [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595),
  [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918),
  [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186),
  [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fieldlist, 3),
  [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fieldlist, 2),
  [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1),
  [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declarator, 1),
  [966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1), REDUCE(sym__prefix_exp, 1),
  [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_emmy_documentation_repeat1, 2),
  [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_emmy_documentation_repeat1, 2),
  [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_emmy_documentation_repeat1, 2), SHIFT_REPEAT(1217),
  [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_emmy_documentation_repeat1, 2), SHIFT_REPEAT(1299),
  [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_emmy_documentation_repeat1, 2), SHIFT_REPEAT(1537),
  [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_emmy_documentation_repeat1, 2), SHIFT_REPEAT(1404),
  [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_emmy_documentation_repeat1, 2), SHIFT_REPEAT(1302),
  [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_emmy_documentation_repeat1, 2), SHIFT_REPEAT(613),
  [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_emmy_documentation_repeat1, 2), SHIFT_REPEAT(1859),
  [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_emmy_documentation_repeat1, 2), SHIFT_REPEAT(1802),
  [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_emmy_documentation_repeat1, 2), SHIFT_REPEAT(1796),
  [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_emmy_documentation_repeat1, 2), SHIFT_REPEAT(1793),
  [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_emmy_documentation_repeat1, 2), SHIFT_REPEAT(1791),
  [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_emmy_documentation_repeat1, 2), SHIFT_REPEAT(1790),
  [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_documentation, 1),
  [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_documentation, 1),
  [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217),
  [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299),
  [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537),
  [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404),
  [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613),
  [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802),
  [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796),
  [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793),
  [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791),
  [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790),
  [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_documentation, 2),
  [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_documentation, 2),
  [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658),
  [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658),
  [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917),
  [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570),
  [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570),
  [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1),
  [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810),
  [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916),
  [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596),
  [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1),
  [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040),
  [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1),
  [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1),
  [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232),
  [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176),
  [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232),
  [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683),
  [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683),
  [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821),
  [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556),
  [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62),
  [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758),
  [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585),
  [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768),
  [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768),
  [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414),
  [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485),
  [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414),
  [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767),
  [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767),
  [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835),
  [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562),
  [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208),
  [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761),
  [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674),
  [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357),
  [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399),
  [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357),
  [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641),
  [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641),
  [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844),
  [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555),
  [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175),
  [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722),
  [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675),
  [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467),
  [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467),
  [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226),
  [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295),
  [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250),
  [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259),
  [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721),
  [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721),
  [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850),
  [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558),
  [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90),
  [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696),
  [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656),
  [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893),
  [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893),
  [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195),
  [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195),
  [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264),
  [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265),
  [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260),
  [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258),
  [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258),
  [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289),
  [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289),
  [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397),
  [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397),
  [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230),
  [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229),
  [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228),
  [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402),
  [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402),
  [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885),
  [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885),
  [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202),
  [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202),
  [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231),
  [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231),
  [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897),
  [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897),
  [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895),
  [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895),
  [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243),
  [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242),
  [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241),
  [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128),
  [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129),
  [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121),
  [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822),
  [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822),
  [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244),
  [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244),
  [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359),
  [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359),
  [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815),
  [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815),
  [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240),
  [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240),
  [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880),
  [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880),
  [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875),
  [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875),
  [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894),
  [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894),
  [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764),
  [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764),
  [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, .production_id = 29),
  [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366),
  [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, .production_id = 29),
  [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687),
  [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145),
  [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145),
  [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320),
  [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320),
  [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, .production_id = 30),
  [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, .production_id = 30),
  [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685),
  [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409),
  [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404),
  [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409),
  [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664),
  [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664),
  [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849),
  [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563),
  [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178),
  [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717),
  [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672),
  [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539),
  [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539),
  [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374),
  [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376),
  [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379),
  [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876),
  [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876),
  [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871),
  [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871),
  [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873),
  [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873),
  [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327),
  [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328),
  [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331),
  [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323),
  [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323),
  [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408),
  [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408),
  [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351),
  [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347),
  [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336),
  [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888),
  [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888),
  [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198),
  [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198),
  [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385),
  [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385),
  [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108),
  [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107),
  [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111),
  [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, .production_id = 40),
  [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, .production_id = 40),
  [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648),
  [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110),
  [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110),
  [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890),
  [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890),
  [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398),
  [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398),
  [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370),
  [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372),
  [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373),
  [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369),
  [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369),
  [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465),
  [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465),
  [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891),
  [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891),
  [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818),
  [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818),
  [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367),
  [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367),
  [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474),
  [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474),
  [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177),
  [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177),
  [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122),
  [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124),
  [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134),
  [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878),
  [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878),
  [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666),
  [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666),
  [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886),
  [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886),
  [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884),
  [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884),
  [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307),
  [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306),
  [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305),
  [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814),
  [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814),
  [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569),
  [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569),
  [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877),
  [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877),
  [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 2, .production_id = 15),
  [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 2, .production_id = 15),
  [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661),
  [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283),
  [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283),
  [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813),
  [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813),
  [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889),
  [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889),
  [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317),
  [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316),
  [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315),
  [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321),
  [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321),
  [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403),
  [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403),
  [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334),
  [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333),
  [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332),
  [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874),
  [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874),
  [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281),
  [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281),
  [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337),
  [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337),
  [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346),
  [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345),
  [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344),
  [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348),
  [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348),
  [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415),
  [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415),
  [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420),
  [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420),
  [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 2, .production_id = 10),
  [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 2, .production_id = 10),
  [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760),
  [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117),
  [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117),
  [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879),
  [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879),
  [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896),
  [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896),
  [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 2, .production_id = 9),
  [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 2, .production_id = 9),
  [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766),
  [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842),
  [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842),
  [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892),
  [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892),
  [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870),
  [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870),
  [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, .production_id = 27),
  [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, .production_id = 27), SHIFT_REPEAT(1366),
  [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, .production_id = 27),
  [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133),
  [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135),
  [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136),
  [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819),
  [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819),
  [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 1, .production_id = 1),
  [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 1, .production_id = 1),
  [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747),
  [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547),
  [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547),
  [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132),
  [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132),
  [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478),
  [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478),
  [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222),
  [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222),
  [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, .production_id = 25),
  [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, .production_id = 25),
  [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710),
  [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, .production_id = 69),
  [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, .production_id = 69),
  [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, .production_id = 72),
  [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, .production_id = 72),
  [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, .production_id = 56),
  [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, .production_id = 56), SHIFT_REPEAT(709),
  [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, .production_id = 56),
  [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200),
  [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, .production_id = 57),
  [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, .production_id = 57),
  [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_documentation_class, 1),
  [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_documentation_class, 1),
  [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424),
  [1627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_emmy_identifier_repeat1, 2), SHIFT_REPEAT(1797),
  [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_emmy_identifier_repeat1, 2),
  [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_emmy_identifier_repeat1, 2),
  [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_documentation_class_repeat1, 2),
  [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_documentation_class_repeat1, 2),
  [1638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_documentation_class_repeat1, 2), SHIFT_REPEAT(1424),
  [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797),
  [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_identifier, 1),
  [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_identifier, 1),
  [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, .production_id = 36),
  [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, .production_id = 36),
  [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, .production_id = 84),
  [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, .production_id = 84),
  [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, .production_id = 53),
  [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, .production_id = 53),
  [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_documentation_class, 2),
  [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_documentation_class, 2),
  [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, .production_id = 70),
  [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, .production_id = 70),
  [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, .production_id = 9),
  [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, .production_id = 9),
  [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, .production_id = 59),
  [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, .production_id = 59),
  [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_identifier, 2),
  [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_identifier, 2),
  [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emmy_type, 2),
  [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390),
  [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emmy_type, 2),
  [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__emmy_type_repeat1, 2),
  [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__emmy_type_repeat1, 2),
  [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__emmy_type_repeat1, 2), SHIFT_REPEAT(1390),
  [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emmy_type, 1),
  [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emmy_type, 1),
  [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_class, 3, .production_id = 8),
  [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_class, 3, .production_id = 8),
  [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_field, 7, .production_id = 88),
  [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_field, 7, .production_id = 88),
  [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7),
  [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7),
  [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_function, 5),
  [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_function, 5),
  [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_type_key_value, 5, .production_id = 68),
  [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_type_key_value, 5, .production_id = 68),
  [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_type_dictionary, 5),
  [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_type_dictionary, 5),
  [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_documentation_class_repeat1, 1),
  [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_documentation_class_repeat1, 1),
  [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_field, 5, .production_id = 67),
  [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_field, 5, .production_id = 67),
  [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_class, 5, .production_id = 34),
  [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_class, 5, .production_id = 34),
  [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 2, .production_id = 6),
  [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 2, .production_id = 6),
  [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_function, 6),
  [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_function, 6),
  [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4),
  [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4),
  [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 8, .production_id = 85),
  [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 8, .production_id = 85),
  [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, .production_id = 31),
  [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, .production_id = 31),
  [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8),
  [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8),
  [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 8, .production_id = 87),
  [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 8, .production_id = 87),
  [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 8, .production_id = 90),
  [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 8, .production_id = 90),
  [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 8, .production_id = 91),
  [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 8, .production_id = 91),
  [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 8, .production_id = 92),
  [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 8, .production_id = 92),
  [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 8, .production_id = 93),
  [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 8, .production_id = 93),
  [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 9, .production_id = 96),
  [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 9, .production_id = 96),
  [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 9, .production_id = 97),
  [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 9, .production_id = 97),
  [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 7, .production_id = 83),
  [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 7, .production_id = 83),
  [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 7, .production_id = 82),
  [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 7, .production_id = 82),
  [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286),
  [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_type, 1, .production_id = 7),
  [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_type, 1, .production_id = 7),
  [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046),
  [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_type, 1),
  [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_type, 1),
  [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047),
  [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613),
  [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_function, 4),
  [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_function, 4),
  [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, .production_id = 33),
  [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, .production_id = 33),
  [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_type_dictionary, 4),
  [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_type_dictionary, 4),
  [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364),
  [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634),
  [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633),
  [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 43),
  [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 43),
  [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6),
  [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6),
  [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5),
  [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5),
  [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 7, .production_id = 73),
  [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 7, .production_id = 73),
  [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 6, .production_id = 65),
  [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 6, .production_id = 65),
  [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639),
  [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 44),
  [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 44),
  [1852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, .production_id = 27), SHIFT_REPEAT(1364),
  [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609),
  [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_function, 3),
  [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_function, 3),
  [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_class, 5, .production_id = 52),
  [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_class, 5, .production_id = 52),
  [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_type_dictionary, 3),
  [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_type_dictionary, 3),
  [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 3, .production_id = 21),
  [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 3, .production_id = 21),
  [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 6, .production_id = 61),
  [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 6, .production_id = 61),
  [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 7, .production_id = 77),
  [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 7, .production_id = 77),
  [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 7, .production_id = 78),
  [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 7, .production_id = 78),
  [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 7, .production_id = 74),
  [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 7, .production_id = 74),
  [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620),
  [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283),
  [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_field, 6, .production_id = 79),
  [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_field, 6, .production_id = 79),
  [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653),
  [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_field, 10, .production_id = 99),
  [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_field, 10, .production_id = 99),
  [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_field, 9, .production_id = 98),
  [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_field, 9, .production_id = 98),
  [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_field, 8, .production_id = 95),
  [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_field, 8, .production_id = 95),
  [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_field, 8, .production_id = 94),
  [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_field, 8, .production_id = 94),
  [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650),
  [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647),
  [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644),
  [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_type_array, 2, .production_id = 24),
  [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_type_array, 2, .production_id = 24),
  [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_class, 7, .production_id = 81),
  [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_class, 7, .production_id = 81),
  [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_field, 7, .production_id = 89),
  [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_field, 7, .production_id = 89),
  [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_documentation_tag, 1),
  [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_documentation_tag, 1),
  [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, .production_id = 56), SHIFT_REPEAT(635),
  [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1),
  [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1),
  [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2),
  [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2),
  [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__documentation_brief_container, 3),
  [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__documentation_brief_container, 3),
  [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__documentation_brief_container, 2),
  [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__documentation_brief_container, 2),
  [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__documentation_config_container, 2),
  [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__documentation_config_container, 2),
  [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__documentation_tag_container, 2),
  [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__documentation_tag_container, 2),
  [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_type, 2, .production_id = 22),
  [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_type, 2, .production_id = 22),
  [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_type, 2, .production_id = 23),
  [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_type, 2, .production_id = 23),
  [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_documentation_command, 5, .production_id = 48),
  [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_documentation_command, 5, .production_id = 48),
  [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355),
  [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691),
  [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684),
  [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692),
  [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351),
  [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734),
  [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697),
  [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731),
  [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679),
  [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618),
  [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735),
  [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716),
  [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725),
  [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, .production_id = 27), SHIFT_REPEAT(1355),
  [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726),
  [2007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, .production_id = 27), SHIFT_REPEAT(1351),
  [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677),
  [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728),
  [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676),
  [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568),
  [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_return, 2, .production_id = 8),
  [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_return, 2, .production_id = 8),
  [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989),
  [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669),
  [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, .production_id = 56), SHIFT_REPEAT(727),
  [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, .production_id = 56), SHIFT_REPEAT(678),
  [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__chunk_repeat1, 1),
  [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__chunk_repeat1, 1),
  [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_parameter, 5, .production_id = 67),
  [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_parameter, 5, .production_id = 67),
  [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_usage, 2),
  [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_usage, 2),
  [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_emmy_documentation_repeat1, 1),
  [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_emmy_documentation_repeat1, 1),
  [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_todo, 2),
  [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_todo, 2),
  [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_return, 4, .production_id = 34),
  [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_return, 4, .production_id = 34),
  [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_varargs, 2),
  [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_varargs, 2),
  [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_parameter, 7, .production_id = 88),
  [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_parameter, 7, .production_id = 88),
  [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_see, 2),
  [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_see, 2),
  [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_return_description, 1),
  [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_return_description, 1),
  [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_note, 2),
  [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_note, 2),
  [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emmy_eval_container, 2),
  [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emmy_eval_container, 2),
  [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emmy_typedecl, 2),
  [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_typedecl, 2),
  [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441),
  [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346),
  [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292),
  [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514),
  [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561),
  [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450),
  [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339),
  [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289),
  [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501),
  [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455),
  [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816),
  [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290),
  [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486),
  [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577),
  [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658),
  [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518),
  [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_left_bracket, 1),
  [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_left_bracket, 1),
  [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571),
  [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631),
  [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723),
  [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565),
  [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587),
  [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651),
  [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632),
  [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675),
  [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663),
  [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719),
  [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641),
  [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647),
  [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729),
  [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564),
  [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590),
  [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617),
  [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608),
  [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560),
  [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581),
  [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661),
  [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584),
  [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559),
  [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585),
  [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662),
  [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488),
  [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749),
  [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558),
  [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875),
  [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556),
  [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870),
  [2180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list_repeat1, 2), SHIFT_REPEAT(718),
  [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503),
  [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699),
  [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687),
  [2189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_emmy_identifier_repeat1, 2), SHIFT_REPEAT(1687),
  [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772),
  [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3),
  [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3),
  [2198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_emmy_identifier_repeat1, 2), SHIFT_REPEAT(1772),
  [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676),
  [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596),
  [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797),
  [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795),
  [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390),
  [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617),
  [2213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__emmy_type_repeat1, 2), SHIFT_REPEAT(1390),
  [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393),
  [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579),
  [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395),
  [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614),
  [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629),
  [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816),
  [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358),
  [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282),
  [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bar, 1),
  [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bar, 1),
  [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610),
  [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686),
  [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426),
  [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433),
  [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621),
  [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941),
  [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422),
  [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375),
  [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361),
  [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391),
  [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904),
  [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__chunk, 1),
  [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654),
  [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588),
  [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_name, 2),
  [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568),
  [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fieldlist, 1),
  [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271),
  [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715),
  [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443),
  [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950),
  [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471),
  [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652),
  [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_name, 1),
  [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209),
  [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453),
  [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 1),
  [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 1),
  [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396),
  [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304),
  [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487),
  [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206),
  [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234),
  [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449),
  [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__last_statement, 1),
  [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__last_statement, 1),
  [2308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(1643),
  [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2),
  [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094),
  [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442),
  [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300),
  [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481),
  [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898),
  [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567),
  [2325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fieldlist_repeat1, 2), SHIFT_REPEAT(571),
  [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fieldlist_repeat1, 2),
  [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139),
  [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482),
  [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948),
  [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436),
  [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__chunk, 2),
  [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__chunk, 2),
  [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643),
  [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642),
  [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__identifier_list, 1),
  [2348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_name_repeat1, 2), SHIFT_REPEAT(1654),
  [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_name_repeat1, 2),
  [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2),
  [2355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(715),
  [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2),
  [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249),
  [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502),
  [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiline_emmy_string, 2),
  [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637),
  [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493),
  [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438),
  [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408),
  [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479),
  [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974),
  [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483),
  [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991),
  [2382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731),
  [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048),
  [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 2),
  [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551),
  [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564),
  [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local, 1),
  [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local, 1),
  [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 4),
  [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 4),
  [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476),
  [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970),
  [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_list, 2),
  [2406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_emmy_function_repeat1, 2), SHIFT_REPEAT(1530),
  [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_emmy_function_repeat1, 2),
  [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiline_emmy_string, 1),
  [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504),
  [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277),
  [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_type_dictionary_value, 5, .production_id = 80),
  [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376),
  [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437),
  [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360),
  [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiline_emmy_string_repeat1, 2),
  [2427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__multiline_emmy_string_repeat1, 2), SHIFT_REPEAT(1637),
  [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530),
  [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348),
  [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507),
  [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246),
  [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624),
  [2440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__documentation_brief_container_repeat1, 2), SHIFT_REPEAT(1581),
  [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__documentation_brief_container_repeat1, 2),
  [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484),
  [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958),
  [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__identifier_list, 2),
  [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477),
  [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907),
  [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832),
  [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474),
  [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237),
  [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939),
  [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439),
  [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436),
  [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349),
  [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542),
  [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2),
  [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293),
  [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_function_parameter, 1, .production_id = 1),
  [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957),
  [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field, 1, .production_id = 20),
  [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425),
  [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960),
  [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field, 1, .production_id = 19),
  [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563),
  [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381),
  [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378),
  [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_function_parameter, 3, .production_id = 51),
  [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_emmy_type_dictionary_repeat1, 2), SHIFT_REPEAT(1464),
  [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_emmy_type_dictionary_repeat1, 2),
  [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527),
  [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205),
  [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510),
  [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 1),
  [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495),
  [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279),
  [2512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_documentation_command_repeat1, 2, .production_id = 49), SHIFT_REPEAT(1731),
  [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_documentation_command_repeat1, 2, .production_id = 49),
  [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680),
  [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610),
  [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435),
  [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405),
  [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581),
  [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041),
  [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723),
  [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398),
  [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_name_repeat1, 2, .production_id = 45),
  [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042),
  [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538),
  [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204),
  [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573),
  [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572),
  [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569),
  [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567),
  [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_type_dictionary_value, 3, .production_id = 50),
  [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566),
  [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721),
  [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414),
  [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776),
  [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294),
  [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, .production_id = 2),
  [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754),
  [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268),
  [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308),
  [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993),
  [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175),
  [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825),
  [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988),
  [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831),
  [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310),
  [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307),
  [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827),
  [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306),
  [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657),
  [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238),
  [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807),
  [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199),
  [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_documentation_command_repeat1, 2, .production_id = 47),
  [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_documentation_command_repeat1, 2, .production_id = 47),
  [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62),
  [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339),
  [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800),
  [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288),
  [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816),
  [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383),
  [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295),
  [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346),
  [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178),
  [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777),
  [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607),
  [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352),
  [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 3, .production_id = 17),
  [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810),
  [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903),
  [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208),
  [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691),
  [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285),
  [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiline_emmy_string_repeat1, 1),
  [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiline_emmy_string_repeat1, 1),
  [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, .production_id = 5),
  [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756),
  [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779),
  [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507),
  [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90),
  [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727),
  [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955),
  [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716),
  [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98),
  [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714),
  [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272),
  [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_documentation_brief, 1),
  [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_documentation_brief, 1),
  [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712),
  [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463),
  [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__documentation_brief_container_repeat1, 2),
  [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707),
  [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906),
  [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709),
  [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863),
  [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867),
  [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878),
  [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705),
  [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191),
  [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701),
  [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189),
  [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697),
  [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204),
  [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778),
  [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66),
  [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731),
  [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693),
  [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400),
  [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684),
  [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493),
  [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689),
  [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387),
  [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248),
  [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384),
  [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390),
  [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312),
  [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_description, 1),
  [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925),
  [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923),
  [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494),
  [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394),
  [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emmy_visibility, 1),
  [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344),
  [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_generic, 3, .production_id = 32),
  [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395),
  [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205),
  [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282),
  [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278),
  [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401),
  [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183),
  [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253),
  [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_description, 1),
  [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203),
  [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188),
  [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525),
  [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594),
  [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190),
  [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858),
  [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402),
  [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411),
  [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194),
  [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273),
  [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944),
  [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258),
  [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834),
  [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88),
  [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926),
  [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462),
  [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928),
  [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271),
  [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387),
  [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100),
  [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954),
  [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919),
  [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597),
  [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915),
  [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419),
  [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737),
  [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4),
  [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913),
  [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461),
  [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78),
  [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949),
  [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401),
  [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267),
  [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250),
  [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591),
  [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213),
  [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277),
  [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972),
  [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278),
  [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973),
  [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244),
  [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243),
  [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975),
  [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242),
  [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240),
  [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203),
  [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225),
  [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222),
  [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546),
  [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899),
  [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314),
  [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554),
  [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965),
  [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424),
  [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211),
  [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207),
  [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, .production_id = 2),
  [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909),
  [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 3, .production_id = 5),
  [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261),
  [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262),
  [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 3),
  [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694),
  [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434),
  [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_description, 1),
  [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416),
  [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265),
  [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169),
  [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990),
  [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266),
  [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388),
  [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392),
  [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379),
  [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545),
  [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908),
  [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167),
  [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287),
  [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605),
  [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65),
  [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508),
  [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199),
  [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238),
  [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235),
  [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651),
  [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233),
  [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198),
  [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431),
  [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197),
  [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195),
  [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193),
  [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245),
  [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216),
  [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192),
  [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219),
  [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191),
  [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178),
  [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264),
  [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881),
  [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176),
  [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405),
  [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298),
  [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174),
  [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269),
  [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396),
  [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303),
  [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193),
  [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196),
  [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406),
  [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095),
  [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 4, .production_id = 17),
  [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256),
  [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093),
  [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_name, 3, .production_id = 46),
  [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877),
  [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_name, 4, .production_id = 66),
  [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966),
  [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901),
  [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671),
  [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294),
  [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386),
  [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545),
  [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392),
  [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394),
  [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961),
  [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309),
  [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399),
  [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400),
  [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947),
  [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311),
  [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3),
  [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544),
  [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110),
  [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407),
  [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382),
  [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410),
  [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260),
  [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412),
  [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418),
  [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967),
  [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419),
  [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612),
  [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417),
  [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416),
  [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415),
  [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413),
  [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411),
  [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409),
  [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403),
  [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259),
  [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819),
  [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643),
  [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257),
  [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255),
  [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659),
  [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281),
  [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251),
  [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247),
  [3067] = {.entry = {.count = 1, .reusable = true}},  ACCEPT_INPUT(),
  [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241),
  [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_right_bracket, 1),
  [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228),
  [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385),
  [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879),
  [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548),
  [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226),
  [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549),
  [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570),
  [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962),
  [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550),
  [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553),
  [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552),
  [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, .production_id = 4),
  [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, .production_id = 3),
  [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3, .production_id = 16),
};

#ifdef __cplusplus
extern "C" {
#endif
void *tree_sitter_lua_external_scanner_create(void);
void tree_sitter_lua_external_scanner_destroy(void *);
bool tree_sitter_lua_external_scanner_scan(void *, TSLexer *, const bool *);
unsigned tree_sitter_lua_external_scanner_serialize(void *, char *);
void tree_sitter_lua_external_scanner_deserialize(void *, const char *, unsigned);

#ifdef _WIN32
#define extern __declspec(dllexport)
#endif

extern const TSLanguage *tree_sitter_lua(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,
    .external_scanner = {
      &ts_external_scanner_states[0][0],
      ts_external_scanner_symbol_map,
      tree_sitter_lua_external_scanner_create,
      tree_sitter_lua_external_scanner_destroy,
      tree_sitter_lua_external_scanner_scan,
      tree_sitter_lua_external_scanner_serialize,
      tree_sitter_lua_external_scanner_deserialize,
    },
    .primary_state_ids = ts_primary_state_ids,
  };
  return &language;
}
#ifdef __cplusplus
}
#endif
